/* ===== Custom Properties ===== */
:root {
    --primary: #8B6F47;
    --primary-dark: #6B5233;
    --primary-light: #B8976A;
    --accent: #C9A96E;
    --accent-light: #E8D5B0;
    --bg: #FFFFFF;
    --bg-alt: #FAF7F2;
    --bg-warm: #F0EAE0;
    --bg-dark: #2C2825;
    --text: #2C2825;
    --text-secondary: #6B6560;
    --text-muted: #9B9590;
    --border: #E8E2D8;
    --shadow-sm: 0 1px 3px rgba(44, 40, 37, 0.06);
    --shadow-md: 0 4px 16px rgba(44, 40, 37, 0.08);
    --shadow-lg: 0 8px 32px rgba(44, 40, 37, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; cursor: pointer; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--text); }
h4 { font-family: var(--font-body); font-weight: 600; line-height: 1.3; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.125rem; }

/* ===== Layout ===== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section {
    padding: 6rem 0;
}
.section--alt {
    background: var(--bg-alt);
}

/* ===== Icons ===== */
.icon { width: 24px; height: 24px; flex-shrink: 0; }
.icon--sm { width: 16px; height: 16px; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    border: 2px solid transparent;
}
.btn--primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn--outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.btn--white {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
}
.btn--white:hover {
    background: var(--bg-alt);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn--full { width: 100%; justify-content: center; }

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}
.navbar--scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.navbar__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.navbar__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
}
.navbar__brand-text { display: flex; flex-direction: column; }
.navbar__name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}
.navbar__tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}
.navbar__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.navbar__link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.navbar__link:hover,
.navbar__link.active {
    color: var(--primary);
}
.navbar__link--cta {
    background: var(--primary);
    color: #fff !important;
    margin-left: 0.5rem;
}
.navbar__link--cta:hover {
    background: var(--primary-dark);
}
/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.lang-switcher__link {
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition);
    letter-spacing: 0.03em;
}
.lang-switcher__link:hover {
    color: var(--primary);
    background: var(--bg-alt);
}
.lang-switcher__link.active {
    background: var(--primary);
    color: #fff;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}
.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(160deg, rgba(250, 247, 242, 0.92) 0%, rgba(240, 234, 224, 0.88) 40%, rgba(229, 217, 200, 0.85) 100%);
}
.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.hero__label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--accent-light);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.7);
}
.hero__title {
    margin-bottom: 1.5rem;
    color: var(--bg-dark);
}
.hero__title em {
    font-style: italic;
    color: var(--primary);
}
.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero__credentials {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero__credentials span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    padding-left: 1rem;
}
.hero__credentials span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* ===== Section Headers ===== */
.section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}
.section__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.section__title {
    margin-bottom: 1rem;
}
.section__subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}
.subsection-title {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}
.subsection-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: all var(--transition);
}
.service-card--has-img {
    padding: 0;
    overflow: hidden;
}
.service-card__img {
    height: 200px;
    overflow: hidden;
}
.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card--has-img:hover .service-card__img img {
    transform: scale(1.05);
}
.service-card__body {
    padding: 2rem 2.5rem 2.5rem;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}
.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    color: var(--primary);
}
.service-card__icon .icon { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.5rem; }
.service-card p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap var(--transition);
}
.card-link:hover { gap: 0.75rem; }

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.feature-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-alt), var(--bg-warm));
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    color: var(--primary);
}
.feature-card h4 { margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* ===== Section Banner ===== */
.section__banner {
    position: relative;
    height: 280px;
    overflow: hidden;
    margin-bottom: -2rem;
}
.section__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section__banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44, 40, 37, 0.3) 0%, rgba(255, 255, 255, 1) 90%);
}

/* ===== Language Badges ===== */
.lang-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.lang-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 2rem;
    font-weight: 500;
}
.lang-badge__flag { font-size: 1.5rem; }
.lang-badge__arrow { color: var(--primary); font-weight: 700; font-size: 1.25rem; }

/* ===== Document Cards ===== */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.doc-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all var(--transition);
}
.doc-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: var(--bg);
}
.doc-card__badge {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
}
.doc-card h4 { margin-bottom: 0.5rem; }
.doc-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== Trust Bar ===== */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.trust-item {
    text-align: center;
    padding: 1.5rem;
}
.trust-item .icon {
    color: var(--primary);
    margin: 0 auto 0.75rem;
}
.trust-item strong { display: block; margin-bottom: 0.25rem; }
.trust-item span { font-size: 0.85rem; color: var(--text-secondary); }

/* ===== CTA Section ===== */
.cta-section {
    background: var(--primary);
    padding: 4rem 0;
}
.cta-section__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ===== Course Levels ===== */
.levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}
.level-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all var(--transition);
}
.level-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.level-card__badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg-alt);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.level-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
}
.level-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}
.level-card ul {
    list-style: none;
}
.level-card li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
}
.level-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* ===== Pricing ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}
.pricing-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    position: relative;
    transition: all var(--transition);
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pricing-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.pricing-card__desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.pricing-card__prices {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    margin-bottom: 1.5rem;
}
.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    gap: 0.5rem;
}
.price-row span:first-child {
    flex-shrink: 0;
}
.price-row strong {
    font-size: 1.1rem;
    color: var(--primary-dark);
    white-space: nowrap;
}
.price-row strong small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
}
.price-row--highlight {
    background: var(--bg-alt);
    margin: 0.5rem -1rem 0;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
}
.price-row--highlight span:first-child {
    font-size: 0.85rem;
}
.price-row__right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    white-space: nowrap;
}
.price-row--highlight em {
    font-size: 0.65rem;
    font-style: normal;
    color: #fff;
    background: var(--accent);
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    font-weight: 600;
}
.pricing-card__features {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}
.pricing-card__features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
}
.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ===== Course Features ===== */
.course-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.course-feature .icon {
    color: var(--primary);
    margin: 0 auto 0.75rem;
    width: 32px;
    height: 32px;
}
.course-feature strong { display: block; margin-bottom: 0.35rem; }
.course-feature span { font-size: 0.9rem; color: var(--text-secondary); }

/* ===== About ===== */
.section--about {
    position: relative;
    overflow: hidden;
}
.about__pattern-bg {
    position: absolute;
    top: 0;
    right: -10%;
    width: 400px;
    height: 400px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}
.about__pattern-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.section--about .container {
    position: relative;
    z-index: 1;
}
.about-content {
    margin-bottom: 4rem;
}
.about-text {
    max-width: 720px;
    margin: 0 auto 3rem;
}
.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
}
.stat { text-align: center; }
.stat__value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}
.stat__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== Bio ===== */
.bio {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
}
.bio__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}
.bio__content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.bio__title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}
.bio__content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}
.bio__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.bio__tags span {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--primary);
}

/* ===== Values ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.value-card .icon {
    color: var(--primary);
    margin: 0 auto 1rem;
    width: 32px;
    height: 32px;
}
.value-card h4 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* ===== Contact Cards ===== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem 1.5rem;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}
.contact-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    transition: transform var(--transition);
}
a.contact-card:hover .contact-card__icon {
    transform: scale(1.1);
}
.contact-card__icon .icon {
    width: 28px;
    height: 28px;
    color: #fff;
}
.contact-card__icon--email { background: var(--primary); }
.contact-card__icon--whatsapp { background: #25D366; }
.contact-card__icon--phone { background: var(--accent); }
.contact-card__icon--location { background: var(--primary-light); }
.contact-card h4 {
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
}
.contact-card span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.contact-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: auto;
}
.contact-quick {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem 2rem;
    text-align: center;
}
.contact-quick .icon {
    color: var(--primary);
    flex-shrink: 0;
}
.contact-quick span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 4rem;
}
.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer__logo .navbar__logo {
    background: var(--primary);
}
.footer__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}
.footer__brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer h4 {
    color: #fff;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}
.footer__links li { margin-bottom: 0.5rem; }
.footer__links a {
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--accent); }
.footer__contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}
.footer__contact .icon { color: var(--accent); }
.footer__bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .features-grid,
    .doc-grid,
    .levels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-bar,
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-cards {
        max-width: 100%;
    }
    .bio {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .bio__avatar { margin: 0 auto; }
    .bio__tags { justify-content: center; }
}

@media (max-width: 768px) {
    .section { padding: 4rem 0; }

    .navbar__toggle { display: flex; order: 2; }
    .lang-switcher { order: 1; margin-left: auto; margin-right: 1rem; flex-shrink: 0; }
    .lang-switcher__link { padding: 0.3rem 0.45rem; font-size: 0.7rem; }
    .navbar__menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0;
    }
    .navbar__menu.open { display: flex; }
    .navbar__link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
    }
    .navbar__link--cta {
        margin: 1rem 0 0.5rem;
        text-align: center;
        border-radius: var(--radius-sm);
        padding: 0.75rem;
    }

    .services-grid,
    .features-grid,
    .doc-grid,
    .levels-grid,
    .values-grid,
    .pricing-grid,
    .course-features {
        grid-template-columns: 1fr;
    }
    .trust-bar,
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-cards {
        grid-template-columns: 1fr;
    }
    .contact-quick {
        flex-direction: column;
        text-align: center;
    }
    .hero__credentials {
        flex-direction: column;
        gap: 0.75rem;
    }
    .lang-badges {
        flex-direction: column;
        align-items: center;
    }
    .hero__content {
        padding: 2.5rem 1.5rem;
    }

    /* Hamburger animation */
    .navbar__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .navbar__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .navbar__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 480px) {
    .section { padding: 3rem 0; }
    .container { padding: 0 1rem; }
    .hero { min-height: auto; padding-top: 72px; padding-bottom: 2rem; }
    .hero__content { padding: 2rem 0.5rem; }
    .service-card,
    .doc-card,
    .level-card,
    .pricing-card,
    .contact-form,
    .bio {
        padding: 1.5rem;
    }
}

/* ===== Legal Pages (Privacy Policy) ===== */
.legal {
    padding: 6rem 0 4rem;
    min-height: 100vh;
    background: var(--bg-light);
}
.legal__container {
    max-width: 760px;
}
.legal__back {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 2rem;
    text-decoration: none;
    font-size: 0.95rem;
}
.legal__back:hover {
    text-decoration: underline;
}
.legal__updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 2.5rem;
}
.legal h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.legal h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}
.legal p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.legal ul {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.legal ul li {
    margin-bottom: 0.4rem;
}
.legal a {
    color: var(--primary);
}
