*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--steel: #4E5E66;
--milk: #E6E5DD;
--pearl: #E0D6C7;
--smoke-blue: #3A6E82;
--smoke-blue-light: #4E8FA3;
--accent: #2E7F94;
--accent-glow: rgba(46, 127, 148, 0.25);
--warm-gold: #B8943A;
--white: #FAFAF8;
--dark: #141E24;
--text: #2C3E46;
--light-bg: #F2F1EC;
--gradient-1: linear-gradient(135deg, #3A6E82 0%, #2E7F94 50%, #4E8FA3 100%);
--gradient-warm: linear-gradient(135deg, #B8943A 0%, #CDA84E 100%);
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
font-family: 'Inter', -apple-system, sans-serif;
color: var(--text);
background: var(--white);
line-height: 1.7;
font-weight: 300;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
h1, h2, h3, h4 {
font-family: 'Cormorant Garamond', Georgia, serif;
font-weight: 400;
color: var(--dark);
}
.container {
max-width: 1240px;
margin: 0 auto;
padding: 0 40px;
}
/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--smoke-blue); border-radius: 3px; }
/* NAV */
nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background: rgba(250, 250, 248, 0.88);
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
border-bottom: 1px solid rgba(74, 122, 140, 0.06);
transition: all 0.4s ease;
}
nav.scrolled {
box-shadow: 0 4px 40px rgba(30, 42, 48, 0.08);
background: rgba(250, 250, 248, 0.95);
}
.nav-inner {
max-width: 1240px;
margin: 0 auto;
padding: 0 40px;
display: flex;
align-items: center;
justify-content: space-between;
height: 76px;
}
.logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.4rem;
letter-spacing: 0.28em;
color: var(--dark);
text-transform: uppercase;
font-weight: 500;
text-decoration: none;
position: relative;
}
.logo::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 24px;
height: 2px;
background: var(--gradient-warm);
border-radius: 1px;
}
.logo span {
display: block;
font-family: 'Inter', sans-serif;
font-size: 0.55rem;
letter-spacing: 0.35em;
color: var(--smoke-blue);
text-transform: uppercase;
margin-top: 4px;
font-weight: 400;
}
.nav-right {
display: flex;
align-items: center;
gap: 32px;
}
.nav-links {
display: flex;
gap: 28px;
list-style: none;
}
.nav-links a {
font-size: 0.76rem;
letter-spacing: 0.1em;
color: var(--steel);
text-decoration: none;
text-transform: uppercase;
transition: all 0.3s;
font-weight: 400;
position: relative;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 1.5px;
background: var(--gradient-1);
transition: width 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.lang-switch {
display: flex;
gap: 2px;
background: var(--light-bg);
border-radius: 24px;
padding: 3px;
border: 1px solid rgba(74, 122, 140, 0.08);
}
.lang-btn {
background: none;
border: none;
padding: 6px 14px;
font-size: 0.68rem;
letter-spacing: 0.12em;
color: var(--steel);
cursor: pointer;
border-radius: 20px;
transition: all 0.3s;
font-family: 'Inter', sans-serif;
font-weight: 500;
text-decoration: none;
}
.lang-btn.active {
background: var(--gradient-1);
color: white;
box-shadow: 0 2px 12px var(--accent-glow);
}
.burger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
background: none;
border: none;
padding: 8px;
}
.burger span {
width: 22px;
height: 1.5px;
background: var(--dark);
transition: all 0.3s;
}
/* ===== HERO ===== */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
}
/* Animated gradient background */
.hero-bg {
position: absolute;
inset: 0;
background: linear-gradient(135deg, #f0efea 0%, #dde5e8 25%, #e6e5dd 50%, #e0d6c7 75%, #d5dee2 100%);
background-size: 400% 400%;
animation: gradient-shift 12s ease infinite;
}
@keyframes gradient-shift {
0%, 100% { background-position: 0% 50%; }
25% { background-position: 100% 50%; }
50% { background-position: 100% 0%; }
75% { background-position: 0% 100%; }
}
/* Decorative floating shapes */
.hero-shape {
position: absolute;
border-radius: 50%;
pointer-events: none;
opacity: 0.08;
}
.hero-shape-1 {
width: 600px;
height: 600px;
top: -200px;
right: -100px;
background: var(--smoke-blue);
animation: float-1 20s ease-in-out infinite;
}
.hero-shape-2 {
width: 300px;
height: 300px;
bottom: -50px;
left: -80px;
background: var(--warm-gold);
animation: float-2 15s ease-in-out infinite;
}
.hero-shape-3 {
width: 200px;
height: 200px;
top: 30%;
right: 15%;
background: var(--accent);
animation: float-3 18s ease-in-out infinite;
}
@keyframes float-1 {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(-30px, 40px) scale(1.05); }
66% { transform: translate(20px, -20px) scale(0.95); }
}
@keyframes float-2 {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
50% { transform: translate(40px, -30px) rotate(10deg); }
}
@keyframes float-3 {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(-20px, 30px); }
}
/* Grain overlay */
.hero::after {
content: '';
position: absolute;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 1;
}
.hero-content {
max-width: 1240px;
margin: 0 auto;
padding: 140px 40px 80px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
position: relative;
z-index: 2;
}
.hero-text { max-width: 580px; }
.hero-eyebrow {
font-size: 0.72rem;
letter-spacing: 0.35em;
text-transform: uppercase;
color: var(--smoke-blue);
margin-bottom: 28px;
font-weight: 500;
display: flex;
align-items: center;
gap: 12px;
}
.hero-eyebrow::before {
content: '';
width: 40px;
height: 1.5px;
background: var(--gradient-warm);
flex-shrink: 0;
}
.hero h1 {
font-size: clamp(2.4rem, 4.5vw, 3.8rem);
line-height: 1.12;
margin-bottom: 28px;
font-weight: 300;
color: var(--dark);
}
.hero h1 em {
font-style: italic;
color: var(--accent);
position: relative;
}
.hero h1 em::after {
content: '';
position: absolute;
bottom: 2px;
left: 0;
right: 0;
height: 2px;
background: var(--gradient-warm);
border-radius: 1px;
}
.hero-sub {
font-size: 1.08rem;
color: var(--steel);
margin-bottom: 48px;
line-height: 1.85;
max-width: 480px;
}
.hero-buttons {
display: flex;
gap: 16px;
align-items: stretch;
}
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
flex: 1;
justify-content: center;
text-align: center;
}
/* Hero visual — DNA helix-inspired */
.hero-visual {
display: flex;
justify-content: center;
align-items: center;
}
.hero-graphic {
width: 440px;
height: 440px;
position: relative;
}
/* Pulsing concentric circles */
.pulse-ring {
position: absolute;
border-radius: 50%;
border: 1px solid rgba(74, 122, 140, 0.12);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.pulse-ring:nth-child(1) { width: 100%; height: 100%; animation: pulse 4s ease-in-out infinite; }
.pulse-ring:nth-child(2) { width: 80%; height: 80%; animation: pulse 4s ease-in-out 0.5s infinite; }
.pulse-ring:nth-child(3) { width: 60%; height: 60%; animation: pulse 4s ease-in-out 1s infinite; }
@keyframes pulse {
0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.04); }
}
.circle-center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 200px;
height: 200px;
border-radius: 50%;
background: linear-gradient(135deg, rgba(74, 122, 140, 0.08), rgba(196, 162, 101, 0.08));
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
backdrop-filter: blur(10px);
border: 1px solid rgba(74, 122, 140, 0.12);
}
.circle-text {
font-family: 'Cormorant Garamond', serif;
font-size: 2.6rem;
background: var(--gradient-1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 400;
line-height: 1;
}
.circle-text-small {
font-size: 0.62rem;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--steel);
margin-top: 6px;
}
/* Floating stat badges around circle */
.float-badge {
position: absolute;
padding: 10px 18px;
background: rgba(250, 250, 248, 0.85);
backdrop-filter: blur(12px);
border: 1px solid rgba(74, 122, 140, 0.1);
border-radius: 30px;
font-size: 0.72rem;
color: var(--dark);
font-weight: 500;
letter-spacing: 0.03em;
white-space: nowrap;
box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.float-badge .num {
color: var(--accent);
font-family: 'Cormorant Garamond', serif;
font-size: 1rem;
font-weight: 600;
margin-right: 4px;
}
.float-badge-1 { top: 8%; right: 5%; animation: float-badge 6s ease-in-out infinite; }
.float-badge-2 { bottom: 15%; left: 0; animation: float-badge 6s ease-in-out 1s infinite; }
.float-badge-3 { bottom: 5%; right: 12%; animation: float-badge 6s ease-in-out 2s infinite; }
@keyframes float-badge {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
}
/* Orbiting dots */
.orbit-dot {
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
top: 50%;
left: 50%;
}
.orbit-dot::after {
content: '';
position: absolute;
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--accent);
box-shadow: 0 0 12px var(--accent-glow);
}
.orbit-dot-1 { animation: orbit 12s linear infinite; }
.orbit-dot-2 { animation: orbit 12s linear infinite reverse; animation-delay: -3s; }
.orbit-dot-1::after { transform: translate(200px, 0); }
.orbit-dot-2::after { transform: translate(160px, 0); opacity: 0.5; }
@keyframes orbit {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
/* ===== BUTTONS ===== */
.btn-primary {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 17px 38px;
background: var(--gradient-1);
color: white;
border: none;
font-family: 'Inter', sans-serif;
font-size: 0.78rem;
letter-spacing: 0.12em;
text-transform: uppercase;
cursor: pointer;
transition: all 0.4s ease;
text-decoration: none;
font-weight: 400;
border-radius: 2px;
position: relative;
overflow: hidden;
}
.btn-primary::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
opacity: 0;
transition: opacity 0.3s;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 35px rgba(74, 122, 140, 0.3);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary svg {
width: 16px;
height: 16px;
transition: transform 0.3s;
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 17px 32px;
background: transparent;
color: var(--accent);
border: 1.5px solid var(--accent);
font-family: 'Inter', sans-serif;
font-size: 0.78rem;
letter-spacing: 0.1em;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s;
text-decoration: none;
font-weight: 400;
border-radius: 2px;
}
.btn-secondary:hover {
background: var(--accent);
color: white;
box-shadow: 0 6px 24px var(--accent-glow);
}
.btn-outline {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 32px;
background: transparent;
color: var(--accent);
border: 1.5px solid var(--accent);
font-family: 'Inter', sans-serif;
font-size: 0.78rem;
letter-spacing: 0.1em;
text-transform: uppercase;
cursor: pointer;
transition: all 0.3s;
text-decoration: none;
font-weight: 400;
border-radius: 2px;
}
.btn-outline:hover {
background: var(--accent);
color: white;
box-shadow: 0 6px 24px var(--accent-glow);
}
.btn-text {
display: inline-block;
color: var(--accent);
text-decoration: none;
font-size: 0.85rem;
font-weight: 500;
letter-spacing: 0.02em;
transition: color 0.3s;
margin-right: 16px;
}
.btn-text:hover {
color: var(--smoke-blue);
}
/* Service card action buttons layout */
.service-actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
align-items: center;
margin-top: 24px;
}
.service-actions .btn-text {
border: 1.5px solid rgba(46,127,148,0.3);
padding: 14px 32px;
border-radius: 2px;
margin-right: 0;
font-size: 0.78rem;
letter-spacing: 0.1em;
text-transform: uppercase;
font-weight: 500;
transition: all 0.3s;
}
.service-actions .btn-text:hover {
border-color: var(--accent);
background: rgba(46,127,148,0.06);
color: var(--accent);
}
.service-actions .btn-outline {
margin: 0;
}
.service-actions .btn-tg-link {
display: inline-flex;
align-items: center;
gap: 6px;
color: var(--steel);
text-decoration: none;
font-size: 0.78rem;
font-weight: 400;
letter-spacing: 0.02em;
opacity: 0.7;
transition: all 0.3s;
border: none;
padding: 0;
background: none;
}
.service-actions .btn-tg-link:hover {
opacity: 1;
color: var(--accent);
}
.service-actions .btn-tg-link svg {
width: 14px;
height: 14px;
}
/* ===== SECTIONS ===== */
section { padding: 110px 0; }
.section-eyebrow {
font-size: 0.68rem;
letter-spacing: 0.35em;
text-transform: uppercase;
color: var(--smoke-blue);
margin-bottom: 16px;
font-weight: 500;
display: flex;
align-items: center;
gap: 12px;
}
.section-eyebrow::before {
content: '';
width: 30px;
height: 1.5px;
background: var(--gradient-warm);
}
.section-title {
font-size: clamp(2rem, 3.2vw, 2.8rem);
margin-bottom: 20px;
font-weight: 300;
line-height: 1.2;
}
.section-title em {
font-style: italic;
color: var(--accent);
}
.section-desc {
font-size: 1.02rem;
color: var(--steel);
max-width: 600px;
line-height: 1.85;
}
/* ===== ABOUT ===== */
.about { background: var(--white); position: relative; }
.about::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--smoke-blue), transparent);
opacity: 0.15;
}
.about-grid {
max-width: 900px;
}
.about-badges {
display: flex;
gap: 32px;
margin-top: 36px;
flex-wrap: wrap;
align-items: flex-start;
}
.badge-logo {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
transition: all 0.4s;
cursor: default;
}
.badge-logo:hover {
transform: translateY(-3px);
}
.badge-logo .logo-seal {
height: 55px;
width: auto;
opacity: 0.7;
transition: opacity 0.3s;
object-fit: contain;
}
.badge-logo:hover .logo-seal {
opacity: 1;
}
.badge-logo .badge-label {
font-size: 0.6rem;
color: var(--steel);
text-align: center;
letter-spacing: 0.03em;
max-width: 180px;
line-height: 1.4;
opacity: 0;
height: 0;
}
.about-photo {
position: relative;
border-radius: 14px;
overflow: hidden;
width: 220px;
aspect-ratio: 3/4;
margin: 0 0 12px 36px;
float: right;
}
.about-photo img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
filter: brightness(1.08) contrast(0.95) saturate(0.9);
}
.about-photo::after {
content: '';
position: absolute;
inset: 0;
border-radius: 14px;
border: 1px solid rgba(74, 122, 140, 0.1);
pointer-events: none;
background: linear-gradient(180deg, rgba(250,250,248,0.08) 0%, rgba(250,250,248,0.15) 100%);
}
.about-text-short {
font-size: 1.06rem;
line-height: 1.9;
color: var(--text);
margin-bottom: 24px;
}
.about-text-full {
max-height: 0;
overflow: hidden;
transition: max-height 0.8s ease;
font-size: 0.95rem;
line-height: 1.9;
color: var(--text);
}
.about-text-full.expanded { max-height: 2000px; }
.about-text-full p { margin-bottom: 16px; }
.read-more-btn {
background: none;
border: none;
color: var(--accent);
font-family: 'Inter', sans-serif;
font-size: 0.8rem;
letter-spacing: 0.08em;
cursor: pointer;
padding: 10px 0;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s;
font-weight: 500;
}
.read-more-btn:hover { color: var(--smoke-blue); transform: translateX(4px); }
.read-more-btn svg {
width: 14px;
height: 14px;
transition: transform 0.3s;
}
.read-more-btn.expanded svg { transform: rotate(180deg); }
.about-stats {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 20px;
padding-top: 20px;
}
.stat-card {
padding: 30px;
background: var(--white);
border-radius: 12px;
border: 1px solid rgba(74, 122, 140, 0.08);
transition: all 0.4s;
position: relative;
overflow: hidden;
}
.stat-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 3px;
height: 100%;
background: var(--gradient-1);
border-radius: 0 2px 2px 0;
}
.stat-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 36px rgba(74, 122, 140, 0.08);
border-color: rgba(74, 122, 140, 0.15);
}
.stat-number {
font-family: 'Cormorant Garamond', serif;
font-size: 2.6rem;
background: var(--gradient-1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 400;
line-height: 1;
margin-bottom: 6px;
}
.stat-label {
font-size: 0.75rem;
color: var(--steel);
letter-spacing: 0.04em;
}
/* ===== WAVE DIVIDER ===== */
.wave-divider {
width: 100%;
height: 80px;
position: relative;
overflow: hidden;
}
.wave-divider svg {
position: absolute;
bottom: 0;
width: 100%;
height: 100%;
}
/* ===== SYMPTOMS ===== */
.symptoms {
background: var(--light-bg);
position: relative;
}
.symptoms-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 50px;
}
.symptom-card {
padding: 34px 28px;
background: var(--white);
border-radius: 12px;
border: 1px solid rgba(74, 122, 140, 0.06);
transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
position: relative;
overflow: hidden;
}
.symptom-card::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 3px;
background: var(--gradient-1);
transform: scaleX(0);
transition: transform 0.4s ease;
transform-origin: left;
}
.symptom-card:hover {
transform: translateY(-6px);
box-shadow: 0 16px 48px rgba(30, 42, 48, 0.08);
border-color: rgba(74, 122, 140, 0.15);
}
.symptom-card:hover::after { transform: scaleX(1); }
.symptom-icon {
width: 48px;
height: 48px;
border-radius: 14px;
background: var(--gradient-1);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
transition: transform 0.4s;
}
.symptom-card:hover .symptom-icon { transform: scale(1.08) rotate(-3deg); }
.symptom-icon svg {
width: 22px;
height: 22px;
color: white;
}
.symptom-card h4 {
font-family: 'Inter', sans-serif;
font-size: 0.95rem;
font-weight: 600;
margin-bottom: 10px;
color: var(--dark);
}
.symptom-card p {
font-size: 0.85rem;
color: var(--steel);
line-height: 1.65;
}
.symptoms-cta {
text-align: center;
margin-top: 50px;
}
/* ===== SERVICES ===== */
.services {
background: var(--white);
position: relative;
}
.services-list {
display: flex;
flex-direction: column;
gap: 24px;
margin-top: 50px;
}
.service-card {
background: var(--white);
border-radius: 14px;
overflow: hidden;
border: 1px solid rgba(74, 122, 140, 0.08);
transition: all 0.4s;
}
.service-card:hover {
box-shadow: 0 12px 44px rgba(30, 42, 48, 0.06);
border-color: rgba(74, 122, 140, 0.15);
}
.service-header {
padding: 32px 40px;
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
transition: background 0.3s;
}
.service-header:hover { background: rgba(74, 122, 140, 0.02); }
.service-header-left {
display: flex;
align-items: center;
gap: 20px;
}
.service-number {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
background: var(--gradient-1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 500;
min-width: 40px;
}
.service-header h3 {
font-size: 1.3rem;
font-weight: 400;
}
.service-header-tag {
font-size: 0.68rem;
letter-spacing: 0.12em;
text-transform: uppercase;
background: var(--gradient-1);
color: white;
padding: 5px 14px;
border-radius: 20px;
margin-left: 16px;
font-weight: 500;
}
.service-toggle {
width: 38px;
height: 38px;
border-radius: 50%;
border: 1.5px solid var(--accent);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
flex-shrink: 0;
}
.service-toggle svg {
width: 14px;
height: 14px;
color: var(--accent);
transition: transform 0.3s;
}
.service-card.open .service-toggle {
background: var(--gradient-1);
border-color: transparent;
box-shadow: 0 4px 16px var(--accent-glow);
}
.service-card.open .service-toggle svg {
color: white;
transform: rotate(45deg);
}
.service-body {
max-height: 0;
overflow: hidden;
transition: max-height 0.6s ease;
}
.service-card.open .service-body { max-height: 3000px; }
.service-content { padding: 0 40px 40px 100px; }
.service-desc {
font-size: 0.95rem;
line-height: 1.85;
color: var(--text);
margin-bottom: 28px;
max-width: 720px;
}
.service-columns {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
margin-bottom: 28px;
}
.service-col h5 {
font-family: 'Inter', sans-serif;
font-size: 0.73rem;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 14px;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
}
.service-col h5::before {
content: '';
width: 16px;
height: 1.5px;
background: var(--gradient-warm);
}
.service-col ul { list-style: none; }
.service-col li {
font-size: 0.87rem;
color: var(--text);
padding: 7px 0 7px 20px;
position: relative;
line-height: 1.6;
}
.service-col li::before {
content: '';
position: absolute;
left: 0;
top: 15px;
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--gradient-1);
}
.service-pricing {
display: flex;
gap: 16px;
flex-wrap: wrap;
margin-bottom: 24px;
}
.price-tag {
padding: 16px 28px;
background: var(--light-bg);
border-radius: 10px;
border: 1px solid rgba(74, 122, 140, 0.06);
transition: all 0.3s;
}
.price-tag:hover { border-color: rgba(74, 122, 140, 0.15); }
.price-tag .label {
font-size: 0.66rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--steel);
margin-bottom: 4px;
}
.price-tag .price {
font-family: 'Cormorant Garamond', serif;
font-size: 1.5rem;
color: var(--dark);
}
.price-tag .note {
font-size: 0.72rem;
color: var(--steel);
margin-top: 2px;
}
.service-stages { margin-bottom: 28px; }
.stage {
padding: 20px 0;
border-bottom: 1px solid rgba(74, 122, 140, 0.06);
}
.stage:last-child { border-bottom: none; }
.stage-header {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 10px;
}
.stage-num {
width: 30px;
height: 30px;
border-radius: 50%;
background: var(--gradient-1);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.72rem;
font-weight: 600;
flex-shrink: 0;
box-shadow: 0 4px 12px var(--accent-glow);
}
.stage-title {
font-family: 'Inter', sans-serif;
font-size: 0.92rem;
font-weight: 500;
color: var(--dark);
}
.stage-body {
padding-left: 44px;
font-size: 0.85rem;
color: var(--text);
line-height: 1.7;
}
.stage-body ul { list-style: none; margin-top: 6px; }
.stage-body li {
padding: 3px 0 3px 18px;
position: relative;
}
.stage-body li::before {
content: '';
position: absolute;
left: 0;
top: 11px;
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--gradient-1);
}
/* ===== TELEGRAM BANNER ===== */
.tg-banner {
text-align: center;
padding: 60px 0;
background: var(--light-bg);
position: relative;
}
.tg-banner-inner {
display: inline-flex;
align-items: center;
gap: 16px;
padding: 22px 40px;
background: var(--white);
border-radius: 50px;
border: 1px solid rgba(74, 122, 140, 0.1);
transition: all 0.3s;
box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.tg-banner-inner:hover {
border-color: rgba(74, 122, 140, 0.25);
box-shadow: 0 8px 32px rgba(74, 122, 140, 0.08);
transform: translateY(-2px);
}
.tg-banner-inner svg {
width: 24px;
height: 24px;
color: var(--accent);
}
.tg-banner a {
color: var(--accent);
text-decoration: none;
font-size: 0.85rem;
font-weight: 500;
letter-spacing: 0.04em;
transition: color 0.3s;
}
.tg-banner a:hover { color: var(--smoke-blue); }
/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--white); }
.faq-list { }
.faq-item {
border-bottom: 1px solid rgba(74, 122, 140, 0.1);
}
.faq-question {
display: flex;
align-items: center;
justify-content: space-between;
padding: 28px 0;
cursor: pointer;
gap: 20px;
}
.faq-question h4 {
font-size: 1.15rem;
font-weight: 400;
color: var(--dark);
transition: color 0.3s;
line-height: 1.5;
}
.faq-question:hover h4 { color: var(--smoke-blue); }
.faq-icon {
width: 28px;
height: 28px;
min-width: 28px;
border-radius: 50%;
border: 1px solid rgba(74, 122, 140, 0.2);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.4s;
color: var(--smoke-blue);
}
.faq-icon svg { width: 14px; height: 14px; transition: transform 0.4s; }
.faq-item.open .faq-icon {
background: var(--gradient-1);
border-color: transparent;
color: white;
}
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
padding: 0 0 28px 0;
font-size: 0.92rem;
line-height: 1.9;
color: var(--text);
}
/* ===== CONTACT ===== */
.contact {
background: linear-gradient(170deg, var(--dark) 0%, #2A3E47 60%, #1E3440 100%);
color: white;
position: relative;
overflow: hidden;
}
.contact::before {
content: '';
position: absolute;
top: -200px;
right: -200px;
width: 500px;
height: 500px;
border-radius: 50%;
background: radial-gradient(circle, rgba(74, 122, 140, 0.12), transparent);
pointer-events: none;
}
.contact::after {
content: '';
position: absolute;
bottom: -150px;
left: -150px;
width: 400px;
height: 400px;
border-radius: 50%;
background: radial-gradient(circle, rgba(196, 162, 101, 0.06), transparent);
pointer-events: none;
}
.contact .section-eyebrow { color: rgba(255,255,255,0.4); }
.contact .section-eyebrow::before { background: var(--gradient-warm); }
.contact .section-title { color: white; }
.contact .section-desc { color: rgba(255,255,255,0.55); }
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
margin-top: 50px;
position: relative;
z-index: 2;
}
.contact-channels {
display: flex;
flex-direction: column;
gap: 14px;
}
.contact-link {
display: flex;
align-items: center;
gap: 16px;
padding: 20px 24px;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 12px;
text-decoration: none;
color: white;
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-link:hover {
background: rgba(255,255,255,0.08);
border-color: rgba(74, 122, 140, 0.4);
transform: translateX(6px);
box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.contact-link svg {
width: 22px;
height: 22px;
color: var(--smoke-blue-light);
flex-shrink: 0;
}
.contact-link-text {
font-size: 0.88rem;
font-weight: 500;
}
.contact-link-label {
font-size: 0.68rem;
color: rgba(255,255,255,0.35);
letter-spacing: 0.08em;
text-transform: uppercase;
margin-top: 2px;
}
.contact-right {
display: flex;
flex-direction: column;
justify-content: center;
}
.contact-quote {
font-family: 'Cormorant Garamond', serif;
font-size: 1.7rem;
line-height: 1.5;
color: rgba(255,255,255,0.75);
font-weight: 300;
font-style: italic;
margin-bottom: 24px;
position: relative;
padding-left: 28px;
}
.contact-quote::before {
content: '';
position: absolute;
left: 0;
top: 6px;
bottom: 6px;
width: 2px;
background: var(--gradient-warm);
border-radius: 1px;
}
.contact-quote-author {
font-size: 0.78rem;
color: var(--warm-gold);
letter-spacing: 0.15em;
text-transform: uppercase;
font-weight: 500;
padding-left: 28px;
}
/* ===== FOOTER ===== */
footer {
padding: 0;
background: #161E22;
font-size: 0.72rem;
color: rgba(255,255,255,0.25);
letter-spacing: 0.06em;
}
footer a {
color: rgba(255,255,255,0.45);
text-decoration: none;
transition: color 0.3s;
}
footer a:hover {
color: rgba(255,255,255,0.75);
}
.footer-inner {
max-width: 1240px;
margin: 0 auto;
padding: 48px 40px 32px;
display: grid;
grid-template-columns: 1.2fr 1fr 1fr;
gap: 40px;
}
.footer-col {
display: flex;
flex-direction: column;
gap: 6px;
}
.footer-col h4 {
font-family: 'Inter', sans-serif;
font-size: 0.72rem;
letter-spacing: 0.12em;
text-transform: uppercase;
color: rgba(255,255,255,0.5);
font-weight: 500;
margin-bottom: 8px;
}
.footer-col p {
font-size: 0.82rem;
color: rgba(255,255,255,0.4);
line-height: 1.6;
}
.footer-col a {
font-size: 0.82rem;
display: inline-block;
padding: 2px 0;
}
.footer-logo {
font-family: 'Cormorant Garamond', serif;
font-size: 1.2rem;
color: rgba(255,255,255,0.7);
letter-spacing: 0.15em;
}
.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.06);
text-align: center;
padding: 20px 40px;
}
.footer-bottom p {
font-size: 0.72rem;
color: rgba(255,255,255,0.25);
}
@media (max-width: 600px) {
.footer-inner {
grid-template-columns: 1fr;
gap: 28px;
padding: 36px 24px 24px;
}
.footer-bottom {
padding: 16px 24px;
}
}
/* ===== ANIMATIONS ===== */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
/* MOBILE MENU */
.mobile-menu {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(250, 250, 248, 0.98);
backdrop-filter: blur(20px);
z-index: 999;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
font-family: 'Cormorant Garamond', serif;
font-size: 1.8rem;
color: var(--dark);
text-decoration: none;
transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-close {
position: absolute;
top: 24px;
right: 24px;
background: none;
border: none;
font-size: 1.5rem;
color: var(--dark);
cursor: pointer;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
border: 1px solid rgba(74, 122, 140, 0.1);
transition: all 0.3s;
}
.mobile-close:hover { border-color: var(--accent); color: var(--accent); }
/* RESPONSIVE */
@media (max-width: 900px) {
.container { padding: 0 24px; }
.nav-inner { padding: 0 24px; }
.nav-links { display: none; }
.burger { display: flex; }
.hero-content {
grid-template-columns: 1fr;
gap: 40px;
padding: 120px 24px 60px;
}
.hero-visual { display: none; }
.about-photo { width: 200px; }
.about-grid { gap: 40px; }
.symptoms-grid { grid-template-columns: 1fr 1fr; }
.service-content { padding: 0 24px 32px 24px; }
.service-header { padding: 24px; }
.service-header-left { gap: 14px; }
.service-header h3 { font-size: 1.1rem; }
.service-header-tag { display: none; }
.service-columns { grid-template-columns: 1fr; }
.contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
.hero h1 { font-size: 2rem; }
section { padding: 70px 0; }
.about-stats { grid-template-columns: 1fr; }
.about-photo { width: 160px; margin-left: 20px; }
.service-pricing { flex-direction: column; }
.symptoms-grid { grid-template-columns: 1fr; }
.hero-buttons { flex-direction: column; align-items: flex-start; }
.guides-grid { grid-template-columns: 1fr !important; }
}
/* LEAD MAGNET POPUP */
.lm-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(20, 30, 36, 0.6);
backdrop-filter: blur(8px);
z-index: 2000;
align-items: center;
justify-content: center;
}
.lm-overlay.active { display: flex; }
.lm-popup {
background: var(--white);
border-radius: 16px;
padding: 44px 40px;
max-width: 480px;
width: 90%;
position: relative;
box-shadow: 0 24px 80px rgba(0,0,0,0.2);
text-align: center;
}
.lm-close {
position: absolute;
top: 16px;
right: 16px;
background: none;
border: 1px solid rgba(74,122,140,0.15);
width: 32px;
height: 32px;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.1rem;
color: var(--steel);
transition: all 0.3s;
}
.lm-close:hover { border-color: var(--accent); color: var(--accent); }
.lm-badge {
display: inline-block;
padding: 5px 14px;
background: var(--gradient-warm);
color: white;
border-radius: 20px;
font-size: 0.68rem;
letter-spacing: 0.1em;
text-transform: uppercase;
font-weight: 500;
margin-bottom: 20px;
}
.lm-popup h3 {
font-family: 'Cormorant Garamond', serif;
font-size: 1.6rem;
color: var(--dark);
margin-bottom: 12px;
line-height: 1.3;
}
.lm-popup p {
font-size: 0.9rem;
color: var(--steel);
line-height: 1.7;
margin-bottom: 24px;
}
.lm-form {
display: flex;
gap: 10px;
}
.lm-form input {
flex: 1;
padding: 14px 18px;
border: 1.5px solid rgba(74,122,140,0.15);
border-radius: 4px;
font-family: 'Inter', sans-serif;
font-size: 0.85rem;
color: var(--dark);
outline: none;
transition: border-color 0.3s;
}
.lm-form input:focus { border-color: var(--accent); }
.lm-form button {
padding: 14px 24px;
background: var(--gradient-1);
color: white;
border: none;
font-family: 'Inter', sans-serif;
font-size: 0.78rem;
letter-spacing: 0.08em;
text-transform: uppercase;
cursor: pointer;
border-radius: 4px;
font-weight: 500;
white-space: nowrap;
transition: all 0.3s;
}
.lm-form button:hover {
box-shadow: 0 6px 24px var(--accent-glow);
transform: translateY(-1px);
}
.lm-success { display: none; }
.lm-success h3 { color: var(--accent); margin-bottom: 10px; }
.lm-success p { margin-bottom: 20px; }
.lm-success a {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--accent);
font-weight: 500;
text-decoration: none;
font-size: 0.9rem;
transition: all 0.3s;
}
.lm-success a:hover { transform: translateX(4px); }
@media (max-width: 600px) {
.lm-popup { padding: 32px 24px; }
.lm-form { flex-direction: column; }
}
