/* ===== CSS VARIABLES - CYAN ELEGANT THEME ===== */
:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #4ecdc4;
    --color-accent-light: #7ee8e2;
    --color-accent-dark: #2db3aa;
    --color-accent-soft: #e8faf9;
    --color-gold: #c9a959;
    --color-text: #1a1a2e;
    --color-text-light: #5a5a7a;
    --color-white: #ffffff;
    --color-off-white: #f8fafa;
    --color-cream: #f0f7f7;
    --color-border: #d8e8e8;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 2px rgba(78, 205, 196, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(78, 205, 196, 0.08), 0 2px 4px -2px rgba(78, 205, 196, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(78, 205, 196, 0.1), 0 4px 6px -4px rgba(78, 205, 196, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(78, 205, 196, 0.1), 0 8px 10px -6px rgba(78, 205, 196, 0.05);
    --shadow-2xl: 0 25px 50px -12px rgba(78, 205, 196, 0.15);

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(78, 205, 196, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    border-radius: 3px;
    animation: loading 1s ease-in-out infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== NAVIGATION - CENTERED LOGO ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.nav-logo img {
    height: 120px;
    width: auto;
    transition: all var(--transition-base);
}

.nav.scrolled .nav-logo img {
    height: 80px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links-left {
    justify-content: flex-end;
}

.nav-links-right {
    justify-content: flex-start;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 0.75rem 0.5rem;
    letter-spacing: 0.02em;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--color-accent);
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 100px;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 99;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile .nav-link {
    padding: 1rem;
    text-align: center;
    border-radius: 12px;
    background: var(--color-off-white);
}

.nav-mobile .nav-link:hover {
    background: var(--color-accent-soft);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-ghost {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-ghost:hover {
    background: var(--color-accent-soft);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-full {
    width: 100%;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(78, 205, 196, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-white) 0%, var(--color-cream) 50%, var(--color-white) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(78, 205, 196, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(78, 205, 196, 0.03) 2px, transparent 2px);
    background-size: 60px 60px;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-accent-dark);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.hero-role {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.3;
}

.hero-role em {
    font-style: normal;
    color: var(--color-accent);
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.hero-description strong {
    color: var(--color-primary);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: var(--color-accent-soft);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-frame {
    position: relative;
    width: 380px;
    height: 480px;
}

.hero-image-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.25) 0%, transparent 70%);
    filter: blur(50px);
    animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px 200px 120px 120px;
    box-shadow:
        0 30px 60px -20px rgba(78, 205, 196, 0.3),
        0 0 0 1px rgba(78, 205, 196, 0.1);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--color-accent-soft) 0%, var(--color-cream) 100%);
}

.hero-image-ring {
    position: absolute;
    inset: -15px;
    border: 2px dashed var(--color-accent);
    border-radius: 215px 215px 135px 135px;
    opacity: 0.3;
    animation: spin 40s linear infinite;
    z-index: 1;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating Stats */
.hero-floating-stats {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-stat {
    position: absolute;
    background: var(--color-white);
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 3;
    animation: float-stat 6s ease-in-out infinite;
}

.floating-stat-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.floating-stat-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: -3s;
}

@keyframes float-stat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.floating-stat-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
    white-space: nowrap;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-light);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.5; height: 25px; }
}

/* ===== ANIMATIONS ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SECTIONS ===== */
.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-accent-soft);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.title-gradient {
    color: var(--color-accent);
}

/* ===== BIO SECTION ===== */
.bio {
    padding: 6rem 2rem;
    background: var(--color-white);
}

.bio-container {
    max-width: 1000px;
    margin: 0 auto;
}

.bio-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.bio-text {
    padding-right: 1rem;
}

.bio-text .section-tag {
    margin-bottom: 1rem;
}

.bio-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.bio-lead {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.bio-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.bio-text p:last-child {
    margin-bottom: 0;
}

/* Bio Credentials */
.bio-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bio-credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-off-white);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.bio-credential:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.bio-credential-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-soft);
    border-radius: 12px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.bio-credential-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.bio-credential-title {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-primary);
}

.bio-credential-sub {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

/* ===== SPECIALIZATION ===== */
.specialization {
    padding: 6rem 2rem;
    background: var(--color-cream);
}

.specialization-container {
    max-width: 1000px;
    margin: 0 auto;
}

.specialization-header {
    text-align: center;
    margin-bottom: 3rem;
}

.specialization-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.5rem;
}

.spec-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent);
}

.spec-card-main {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border: none;
    color: var(--color-white);
}

.spec-card-main:hover {
    transform: translateY(-5px);
}

.spec-card-main .spec-card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.spec-card-main h3 {
    color: var(--color-white);
}

.spec-card-main p {
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.spec-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

.spec-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-soft);
    border-radius: 16px;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
}

.spec-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.spec-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===== QUOTE ===== */
.quote-section {
    padding: 5rem 2rem;
    background: var(--color-white);
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-content {
    text-align: center;
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--color-accent);
    opacity: 0.15;
    line-height: 1;
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
}

.quote-content blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    color: var(--color-primary);
    line-height: 1.5;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.quote-author-name {
    font-weight: 600;
    color: var(--color-primary);
}

.quote-author-role {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ===== CONSULTATION ===== */
.consultation {
    padding: 6rem 2rem;
    background: var(--color-off-white);
}

.consultation-container {
    max-width: 1000px;
    margin: 0 auto;
}

.consultation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.consultation-description {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.consultation-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.feature-check {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-soft);
    border-radius: 50%;
    color: var(--color-accent);
    flex-shrink: 0;
}

.feature-item span {
    color: var(--color-text);
    font-weight: 500;
}

/* Pricing Card */
.pricing-card {
    padding: 2.5rem;
    background: var(--color-white);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 2px solid var(--color-accent);
}

.pricing-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.pricing-amount {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.currency {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.pricing-period {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.pricing-note {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.pricing-card .btn {
    margin-bottom: 1.5rem;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.pricing-guarantee svg {
    color: var(--color-accent);
}

/* ===== MYWAY ===== */
.myway {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    text-align: center;
}

.myway-container {
    max-width: 700px;
    margin: 0 auto;
}

.myway-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.myway-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.myway-title span {
    display: block;
    font-size: 1.1em;
}

.myway-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.myway-info {
    margin-bottom: 2rem;
}

.myway-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== CONTACT ===== */
.contact {
    padding: 6rem 2rem;
    background: var(--color-white);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-description {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--color-off-white);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-soft);
    border-radius: 16px;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
}

.contact-card:hover .contact-card-icon {
    background: var(--color-accent);
    color: var(--color-white);
}

.contact-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-card-value {
    font-weight: 500;
    color: var(--color-primary);
}

/* ===== FOOTER ===== */
.footer {
    padding: 4rem 2rem 5rem;
    background: var(--color-primary);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.footer-column a {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    padding: 0.375rem 0;
    transition: all var(--transition-base);
}

.footer-column a:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 10000;
    max-width: 380px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(150%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    padding: 1.5rem;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-header h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

.cookie-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: var(--color-text-light);
}

.cookie-text {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
}

.cookie-btn-reject {
    background: #f1f5f9;
    color: var(--color-text);
}

.cookie-btn-accept {
    background: var(--color-accent);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: var(--color-accent-dark);
}

.cookie-icon {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 9999;
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all var(--transition-base);
}

.cookie-icon.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* ===== STICKY BOTTOM BAR ===== */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    padding: 1rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 30px rgba(78, 205, 196, 0.3);
}

.bottom-bar.visible {
    transform: translateY(0);
}

.bottom-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.bottom-bar-text {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.bottom-bar-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

.bottom-bar-subtitle {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.8);
}

.bottom-bar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--color-white);
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 100px;
    transition: all var(--transition-base);
}

.bottom-bar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-container {
        gap: 2rem;
    }

    .nav-logo img {
        height: 100px;
    }

    .nav.scrolled .nav-logo img {
        height: 70px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-image-frame {
        width: 320px;
        height: 400px;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .floating-stat-1 {
        right: 0;
    }

    .floating-stat-2 {
        left: 0;
    }

    .bio-content,
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bio-text {
        padding-right: 0;
    }

    .specialization-grid {
        grid-template-columns: 1fr;
    }

    .spec-card-main {
        grid-row: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0.75rem 1.5rem;
    }

    .nav-container {
        justify-content: flex-start;
    }

    .nav-links-left,
    .nav-links-right {
        display: none;
    }

    .nav-logo img {
        height: 80px;
    }

    .nav.scrolled .nav-logo img {
        height: 60px;
    }

    .nav-toggle {
        display: flex;
    }

    .contact-grid-2 {
        grid-template-columns: 1fr;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero {
        padding-top: 100px;
    }

    .hero-image-frame {
        width: 260px;
        height: 330px;
    }

    .hero-floating-stats {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .bottom-bar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .bottom-bar-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
