/* ============================= */
/* ACG Plain - Shared Styles     */
/* ============================= */

/* ------------------------- */
/* --- VARIABLES & RESET --- */
/* ------------------------- */
:root {
    --gold: #D4AF37;
    --white: #FFF;
    --primary-100: #2B3D4E; --primary-80: #4D6789; --primary-60: #6A8CAF; --primary-40: #9AB3CB; --primary-20: #C8D9E4;
    --secondary-100: #4D4334; --secondary-80: #6E5D47; --secondary-60: #A28761; --secondary-40: #C5A581; --secondary-20: #E0CDB3;
    --text-100: #0D0C0B; --text-80: #12100E; --text-60: #1B1715; --text-40: #383330; --text-20: #5C5754;
    --font-main: 'Geist', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Default Light Theme */
    --bg-color: var(--white);
    --text-color: var(--text-100);
    --header-bg: var(--primary-20);
    --footer-bg: var(--primary-20);
    --q-question-bg: var(--secondary-20);
    --q-answer-bg: var(--primary-20);
    --highlight-bg: var(--primary-20);
    --subscribe-box-bg: var(--primary-60);
    --subscribe-text-color: var(--white);
}

.dark {
    --bg-color: var(--text-100);
    --text-color: var(--secondary-40);
    --header-bg: var(--text-100);
    --footer-bg: #0D0C0B;
    --q-question-bg: var(--secondary-80);
    --q-answer-bg: var(--primary-80);
    --highlight-bg: var(--text-100);
    --subscribe-box-bg: var(--gold);
    --subscribe-text-color: var(--text-100);
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 200;
    padding: 8px 16px;
    background: var(--gold);
    color: var(--text-100);
    font-weight: 600;
    font-size: 14px;
    border-radius: 0 0 8px 8px;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
    opacity: 1;
}

*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, figure, ul { margin: 0; }
ul { list-style: none; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
    line-height: 1.5;
}
img, picture, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }
button { cursor: pointer; background: none; border: none; padding: 0; }

.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* ------------------------- */
/* -------- HEADER --------- */
/* ------------------------- */
.header {
    display: flex;
    width: 100%;
    padding: 0 clamp(20px, 5vw, 60px);
    height: 80px;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-40), transparent);
}

.header.scrolled {
    height: 64px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.dark .header.scrolled { background: rgba(13, 12, 11, 0.92); }

.logo-link { display: flex; align-items: center; gap: 12px; }
.logo-link svg { height: 44px; width: auto; transition: height 0.3s ease; color: var(--text-100); }
.header.scrolled .logo-link svg { height: 36px; }
.dark .logo-link svg { color: var(--secondary-40); }

/* Main Navigation - Editorial Style */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    position: relative;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-20);
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: var(--text-100);
    opacity: 1;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active {
    color: var(--text-100);
}
.nav-link.active::after {
    transform: scaleX(1);
}

.dark .nav-link { color: var(--secondary-40); }
.dark .nav-link:hover { color: var(--white); }
.dark .nav-link.active { color: var(--white); }

/* Nav Divider */
.nav-divider {
    width: 1px;
    height: 20px;
    background: var(--primary-40);
    margin: 0 8px;
}
.dark .nav-divider { background: var(--text-40); }

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-cta {
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-100);
    background: var(--gold);
    border-radius: 100px;
    transition: all 0.3s ease;
}
.header-cta:hover {
    background: #E5C048;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    opacity: 1;
}

.lang-theme-group {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: var(--primary-20);
    border-radius: 8px;
}
.dark .lang-theme-group { background: var(--text-60); }

#lang-select, .theme-toggle-btn {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-20);
    transition: all 0.2s ease;
}
#lang-select:hover, .theme-toggle-btn:hover {
    background: var(--white);
    color: var(--text-100);
}
.dark #lang-select, .dark .theme-toggle-btn { color: var(--secondary-40); }
.dark #lang-select:hover, .dark .theme-toggle-btn:hover {
    background: var(--text-40);
    color: var(--white);
}

/* Mobile Menu Button */
.burger-btn {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    font-size: 24px;
    color: var(--text-100);
}
.dark .burger-btn { color: var(--secondary-40); }

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}
.mobile-menu a {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--text-100);
}
.dark .mobile-menu a { color: var(--secondary-40); }

/* Page wrapper offset for fixed header */
.main-content {
    margin-top: 80px;
}

/* Legacy PNG logo styles */
.header-logo-group { display: flex; align-items: center; gap: 15px; }
.header-logo-group svg { height: 48px; width: auto; color: var(--text-100); }
.dark .header-logo-group svg { color: var(--secondary-40); }
.footer-logo-link svg { height: 48px; width: auto; color: var(--secondary-40); }

.header-logo-group .logo-light,
.header-logo-group .logo-dark { width: 112px; height: auto; }
.footer-logo-link .logo-light,
.footer-logo-link .logo-dark { width: 187px; height: auto; }
.logo-dark { display: none; }
.dark .logo-light { display: none; }
.dark .logo-dark { display: block; }

/* ------------------------- */
/* --------- HERO ---------- */
/* ------------------------- */
.hero-section {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 538px);
    width: 100%;
    padding: 50px;
    align-items: start;
    gap: 40px;
    background-color: var(--bg-color);
}

.hero-text-frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}

.hero-media-frame {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hero-welcome {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.09;
    letter-spacing: -1.6px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 80px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -3.5px;
}

.hero-subtitle {
    max-width: 533px;
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-art {
    width: 100%;
    aspect-ratio: 528 / 641;
    border-radius: 22px;
    background-size: cover;
    background-position: center;
}

.hero-buttons {
    display: flex;
    width: 100%;
    gap: 15px;
}

.hero-button {
    display: flex;
    flex: 1;
    padding: 15px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: var(--gold);
    color: var(--text-100);
    text-align: center;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 900;
    text-decoration: underline;
}

/* ------------------------- */
/* ------ HIGHLIGHTS ------- */
/* ------------------------- */
.highlights-section {
    display: flex;
    width: 100%;
    padding: 40px 80px;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--highlight-bg);
}
.highlight-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    text-align: center;
}
.highlight-block .number {
    font-size: 120px;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -3.6px;
}
.highlight-block .description {
    font-size: 24px;
    line-height: 1.09;
    letter-spacing: -1.2px;
}

/* ------------------------- */
/* --- SERVICES/BENEFITS --- */
/* ------------------------- */
.services-section {
    padding: 114px 150px;
    width: 100%;
    background-color: var(--bg-color);
}
.services-content { max-width: 980px; margin: 0 auto; }
.services-title { font-size: 48px; font-weight: 600; letter-spacing: -1.5px; margin-bottom: 79px; }
.service-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 37px;
    border-bottom: 0.5px solid var(--text-color);
    padding-bottom: 37px;
}
.service-card {
    display: grid;
    padding-top: 20px;
    gap: 15px 30px;
    border-top: 0.5px solid var(--text-color);
    grid-template-columns: 1fr auto;
    align-items: start;
}

.service-card-content {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}
.service-card-title { font-size: 24px; font-weight: 700; }
.service-card-problem { font-size: 20px; }
.service-card-solution { font-size: 18px; letter-spacing: -0.36px; }
.service-card-button { font-size: 16px; font-weight: 900; text-decoration: underline; color: var(--gold); margin-top: auto; }

.service-card-picture {
    grid-column: 2 / 3;
    grid-row: 1 / -1;
    width: 215px;
    height: 215px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    align-self: center;
}

/* ------------------------- */
/* ------ TEAM SECTION ----- */
/* ------------------------- */
.team-section {
    padding: 116px 50px;
    text-align: center;
    background-color: var(--bg-color);
}
.team-title { font-size: 40px; font-weight: 600; margin-bottom: 36px; }
.team-member-card { max-width: 500px; margin: 0 auto; }
.team-member-pic { width: 313px; height: 450px; border-radius: 30px; margin: 0 auto 32px; background-size: cover; background-position: center; }
.team-member-name { font-family: var(--font-serif); font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.team-member-title { font-size: 24px; letter-spacing: -0.5px; margin-bottom: 32px; }
.team-member-cta { padding: 18px 24px; border-radius: 500px; background: var(--gold); color: var(--text-100); font-size: 16px; font-weight: 900; display: inline-block; }

/* ------------------------- */
/* ---- DIVIDER & SUBSCRIBE ---- */
/* ------------------------- */
.divider-subscribe-section {
    display: flex;
    width: 100%;
    min-height: 500px;
    justify-content: flex-end;
    align-items: center;
    padding: 80px 150px;
    background-size: cover;
    background-position: center;
}
.subscribe-box {
    width: 491px;
    padding: 20px;
    border-radius: 20px;
    background: var(--subscribe-box-bg);
    color: var(--subscribe-text-color);
}
.subscribe-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 40px;
    text-align: left;
}
.subscribe-form { position: relative; }
.subscribe-input {
    width: 100%;
    height: 43px;
    padding: 0 130px 0 20px;
    border-radius: 17px;
    border: 1px solid var(--primary-100);
    background: var(--white);
    color: var(--text-color);
    line-height: 43px;
}
.subscribe-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    height: 35px;
    padding: 0 20px;
    border-radius: 12px;
    background: var(--gold);
    color: var(--text-100);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 35px;
}
.dark .subscribe-btn { background: var(--text-100); color: var(--gold); }

/* ------------------------- */
/* ------- Q&A SECTION ----- */
/* ------------------------- */
.qa-section {
    padding: 80px 50px;
    width: 100%;
    background-color: var(--bg-color);
}
.qa-title { text-align: center; font-size: 40px; font-weight: 600; margin-bottom: 60px; }
.qa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 80px;
    max-width: 1100px;
    margin: 0 auto;
}
.qa-pair {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qa-col {
    display: flex;
    flex-direction: column;
}
.qa-col .qa-pair:nth-child(2) { margin-top: 40px; }
.qa-col .qa-pair:nth-child(3) { margin-top: 80px; }
.qa-question, .qa-answer {
    position: relative;
    padding: 15px 30px;
    border-radius: 20px;
    font-family: var(--font-main);
    font-size: 19px;
    font-weight: 600;
    max-width: 450px;
}
.qa-question {
    background-color: var(--q-question-bg);
    color: var(--text-color);
    align-self: flex-start;
}
.qa-answer {
    background-color: var(--q-answer-bg);
    color: var(--text-color);
    align-self: flex-start;
}
.qa-question::after {
    content: "";
    position: absolute;
    left: 30px;
    bottom: -8px;
    width: 0;
    height: 0;
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: var(--q-question-bg) transparent transparent transparent;
}
.qa-answer::after {
    content: "";
    position: absolute;
    right: 30px;
    bottom: -8px;
    width: 0;
    height: 0;
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: var(--q-answer-bg) transparent transparent transparent;
}
.qa-col:nth-child(even) .qa-question { align-self: flex-end; }
.qa-col:nth-child(even) .qa-answer { align-self: flex-end; }

/* ------------------------- */
/* --------- FOOTER -------- */
/* ------------------------- */
.footer {
    width: 100%;
    padding: 68px 152px;
    background-color: var(--footer-bg);
    color: var(--text-color);
    border-top: 2px solid var(--gold);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 60px;
}
.footer-brand .slogan { opacity: 0.7; }
.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { color: var(--secondary-40); }
.footer-links-col a:hover { text-decoration: underline; }
.footer-social-links { display: flex; gap: 15px; }
.footer-social-links a { color: var(--secondary-40); }
.footer-copyright { text-align: center; opacity: 0.7; font-size: 14px; }

/* ----- FORM MODAL ----- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(13, 12, 11, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}
.modal-overlay.open { display: flex; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content {
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(107, 94, 82, 0.1);
    border-radius: 12px;
    cursor: pointer;
    color: var(--text-color);
    transition: all 0.2s ease;
    z-index: 10;
}
.close-modal-btn:hover {
    background: rgba(107, 94, 82, 0.2);
    transform: rotate(90deg);
}
.dark .close-modal-btn {
    background: rgba(255, 255, 255, 0.1);
}
.dark .close-modal-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.form-container {
    width: 540px;
    max-width: calc(100vw - 32px);
    margin: 0 auto;
    padding: 48px;
    border-radius: 24px;
    background: #FAF8F5;
    color: var(--text-100);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.dark .form-container {
    background: #1A1815;
    color: #E0CDB3;
}

.form-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(107, 94, 82, 0.15);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-100);
    margin-bottom: 8px;
}
.dark .form-title {
    color: #E0CDB3;
}

.form-subtitle {
    font-size: 14px;
    color: #6B5E52;
    font-weight: 400;
}
.dark .form-subtitle {
    color: #9A8A76;
}

.form-field {
    margin-bottom: 20px;
}

.form-container label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-100);
    text-transform: uppercase;
}
.dark .form-container label {
    color: #C5A581;
}

.form-container input,
.form-container select {
    width: 100%;
    height: 52px;
    padding: 0 20px;
    border-radius: 12px;
    border: 2px solid rgba(107, 94, 82, 0.15);
    background: #FFFFFF;
    color: var(--text-100);
    font-size: 15px;
    font-family: var(--font-main);
    transition: all 0.2s ease;
}
.form-container input:focus,
.form-container select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}
.dark .form-container input,
.dark .form-container select {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #E0CDB3;
}
.dark .form-container input:focus,
.dark .form-container select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-container input[readonly] {
    background: rgba(107, 94, 82, 0.05);
    cursor: not-allowed;
}
.dark .form-container input[readonly] {
    background: rgba(255, 255, 255, 0.03);
}

.form-submit-btn {
    margin-top: 32px;
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 32px;
    border-radius: 16px;
    background: var(--gold);
    color: var(--text-100);
    border: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}
.form-submit-btn:active {
    transform: translateY(0);
}
.form-submit-btn .btn-arrow {
    transition: transform 0.3s ease;
}
.form-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}
.dark .form-submit-btn {
    background: var(--gold);
    color: var(--text-100);
}
.dark .form-submit-btn:hover {
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

/* ------------------------- */
/* --- FORM FEEDBACK --- */
/* ------------------------- */
.form-feedback {
    display: none;
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-feedback.success {
    display: block;
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.12) 0%, rgba(22, 163, 74, 0.08) 100%);
    color: #15803d;
    border: 2px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.form-feedback.error {
    display: block;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.12) 0%, rgba(220, 38, 38, 0.08) 100%);
    color: #b91c1c;
    border: 2px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.dark .form-feedback.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(74, 222, 128, 0.15) 100%);
    color: #86efac;
    border-color: rgba(74, 222, 128, 0.4);
}

.dark .form-feedback.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(248, 113, 113, 0.15) 100%);
    color: #fca5a5;
    border-color: rgba(248, 113, 113, 0.4);
}

/* ------------------------- */
/* ----- SCROLL REVEAL ----- */
/* ------------------------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.hero-text-frame > * {
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
}
.hero-text-frame > :nth-child(1) { animation-delay: 0.1s; }
.hero-text-frame > :nth-child(2) { animation-delay: 0.25s; }
.hero-text-frame > :nth-child(3) { animation-delay: 0.4s; }
.hero-media-frame {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

/* Button hover */
.hero-button {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-button:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}
.team-member-cta {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-member-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}
.service-card-button {
    transition: color 0.2s ease;
}
.service-card-button:hover {
    opacity: 1;
    color: var(--secondary-60);
}

/* Stagger service cards */
.service-card.reveal.is-visible { transition-delay: var(--delay, 0s); }

/* ------------------------- */
/* --- TABLET BREAKPOINT --- */
/* ------------------------- */
@media (max-width: 1024px) {
    .header { padding: 0 20px; height: 64px; }
    .header.scrolled { height: 56px; }
    .main-nav { display: none; }
    .header-cta { display: none; }
    .burger-btn { display: flex; }
    .main-content { margin-top: 64px; }

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 40px;
        gap: 30px;
    }
     .hero-text-frame, .hero-media-frame {
        width: 100%;
        align-items: center;
     }
    .hero-media-frame { order: -1; }
    .hero-art { width: 80%; max-width: 475px; height: auto; aspect-ratio: 475/574; }
    .hero-welcome, .hero-title, .hero-subtitle { width: 100%; max-width: 600px; }
    .hero-title { font-size: 64px; }
    .hero-subtitle { font-size: 20px; max-width: 100%;}
    .hero-buttons { flex-direction: column; width: 100%; max-width: 400px; }

    .highlights-section { flex-direction: column; padding: 40px; gap: 40px; align-items: center; text-align:center;}
    .highlight-block .number { font-size: 80px; }
    .highlight-block .description { font-size: 22px; }

    .services-section { padding: 90px 40px; }
    .services-title { font-size: 40px; text-align: center; }
    .service-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .service-card-content { grid-column: 1 / -1; }
    .service-card-picture {
        grid-column: 1 / -1;
        grid-row: 3 / 4;
        order: -1;
        max-width: 215px;
        margin: 20px auto;
    }
    .service-card-button { margin: 20px auto 0; }

    .team-section, .divider-subscribe-section, .qa-section, .footer { padding-left: 40px; padding-right: 40px; }
    .divider-subscribe-section { justify-content: center; text-align: center; }

    .qa-grid { grid-template-columns: 1fr; }
    .qa-col:nth-child(even) .qa-question, .qa-col:nth-child(even) .qa-answer { align-self: flex-start; }
    .qa-question, .qa-answer { max-width: 100%; }

    .footer-content { flex-direction: column; align-items: center; text-align: center; }
}

/* ------------------------- */
/* --- MOBILE BREAKPOINT --- */
/* ------------------------- */
@media (max-width: 767px) {
    .header { height: 64px; padding: 0 16px; }
    .header.scrolled { height: 56px; }
    .logo-link svg { height: 36px; }
    .header.scrolled .logo-link svg { height: 32px; }
    .header-logo-group svg { height: 36px; }
    .header-logo-group .logo-dark,
    .header-logo-group .logo-light { width: 84px; }
    .footer-logo-link .logo-light,
    .footer-logo-link .logo-dark { width: 140px; }
    .main-content { margin-top: 64px; }

    .hero-section { padding: 40px 20px; }
    .hero-welcome { letter-spacing: -0.5px; }
    .hero-title { font-size: 40px; letter-spacing: -1.5px; }
    .hero-subtitle { font-size: 16px; letter-spacing: -0.3px; }

    .highlights-section { padding: 40px 20px; }
    .highlight-block .number { font-size: 60px; }
    .highlight-block .description { font-size: 18px; }

    .services-section { padding: 60px 20px; }
    .services-title { font-size: 32px; }
    .service-card-title { font-size: 20px; }
    .service-card-problem { font-size: 16px; }
    .service-card-solution { font-size: 15px; }

    .team-section { padding: 60px 20px; }
    .team-title { font-size: 32px; }
    .team-member-pic { width: 250px; height: 350px; }
    .team-member-name { font-size: 28px; }
    .team-member-title { font-size: 20px; }
    .team-member-cta { width: 100%; }

    .divider-subscribe-section { padding: 60px 20px; min-height: auto; }
    .subscribe-box { width: 100%; padding: 30px; }
    .subscribe-title {
        font-size: 24px;
        text-align: center;
    }
    .subscribe-input { padding: 0 110px 0 16px; font-size: 14px; }

    .qa-section { padding: 60px 20px; }
    .qa-title { font-size: 32px; }
    .qa-question, .qa-answer { font-size: 16px; padding: 12px 20px; }

    .footer { padding: 40px 20px; }
    .footer-content { gap: 30px; }
}

/* -------------------------------- */
/* --- SMALL MOBILE BREAKPOINT --- */
/* -------------------------------- */
@media (max-width: 480px) {
    .hero-section { padding: 28px 16px; gap: 20px; }
    .hero-welcome { font-size: 24px; }
    .hero-title { font-size: 32px; letter-spacing: -1px; }
    .hero-subtitle { font-size: 15px; }
    .hero-art { width: 100%; }
    .hero-button { font-size: 14px; padding: 12px 16px; border-radius: 14px; }

    .highlights-section { padding: 30px 16px; gap: 30px; }
    .highlight-block .number { font-size: 48px; letter-spacing: -1.5px; }
    .highlight-block .description { font-size: 16px; }
    .highlight-block { gap: 16px; }

    .services-section { padding: 40px 16px; }
    .services-title { font-size: 26px; margin-bottom: 40px; }
    .service-card-picture { width: 160px; height: 160px; }

    .divider-subscribe-section { padding: 40px 16px; }
    .subscribe-box { padding: 20px; }
    .subscribe-title { font-size: 20px; margin-bottom: 24px; }
    .subscribe-input { height: 40px; line-height: 40px; padding: 0 100px 0 14px; font-size: 13px; }
    .subscribe-btn { height: 32px; font-size: 12px; padding: 0 14px; }

    .qa-section { padding: 40px 16px; }
    .qa-title { font-size: 26px; margin-bottom: 36px; }
    .qa-question, .qa-answer { font-size: 14px; padding: 10px 16px; border-radius: 14px; }

    .footer { padding: 30px 16px; }
    .footer-content { margin-bottom: 30px; }
    .footer-copyright { font-size: 12px; }

    .form-container { width: 100%; padding: 16px; }
    .form-container input,
    .form-container select { height: 40px; padding: 0 14px; }
}
