/* PadelHit Website - Custom Styles */
/* Source file for Tailwind CSS build pipeline */

@tailwind base;
@tailwind components;
@tailwind utilities;

/* ================================================
   SELF-HOSTED FONT (Plus Jakarta Sans, variable 200-800)
   No third-party requests — GDPR-safe (no fonts.googleapis.com).
   ================================================ */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url(/assets/fonts/plus-jakarta-sans-cyrillic-ext.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url(/assets/fonts/plus-jakarta-sans-vietnamese.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url(/assets/fonts/plus-jakarta-sans-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url(/assets/fonts/plus-jakarta-sans-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ================================================
   ROOT & BASE
   ================================================ */
:root {
    --primary: #16493a;
    --primary-light: #2d6a4f;
    --primary-dark: #0f3328;
    --primary-50: #f0faf4;
    --primary-100: #d4f0e4;
    --primary-200: #a9e1c9;
    --primary-300: #7dcfad;
    --primary-400: #52bd92;
    --primary-500: #22a36e;
    --primary-600: #1a8057;
    --primary-700: #135d41;
    --primary-800: #0f3d2c;
    --primary-900: #09261e;
    --primary-rgb: 22, 73, 58;
    --accent: #f45734;
    --accent-light: #f68a6b;
    --accent-50: #fff6f4;
    --accent-100: #ffe3dc;
    --accent-rgb: 244, 87, 52;
    --background: #f4f7f5;
    --surface: #ffffff;
    --text: #0f172a;
    --text-secondary: #6b7280;
    --shadow-card: 0 1px 2px rgba(22, 73, 58, 0.04), 0 8px 24px -12px rgba(22, 73, 58, 0.16);
    --shadow-card-hover: 0 2px 4px rgba(22, 73, 58, 0.05), 0 16px 40px -12px rgba(22, 73, 58, 0.24);
    --shadow-accent: 0 8px 20px -6px rgba(244, 87, 52, 0.45);
    --shadow-primary: 0 8px 20px -6px rgba(22, 73, 58, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--surface);
    color: var(--text);
}

::selection {
    background: #16493a33;
    color: #16493a;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f0faf4;
}

::-webkit-scrollbar-thumb {
    background: #a9e1c9;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #52bd92;
}

/* ================================================
   SPLASH SCREEN (matches Ionic app splash)
   ================================================ */
#app-splash {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #16493A 0%, #0f352b 100%);
    opacity: 1;
    transition: opacity 0.4s ease;
    -webkit-tap-highlight-color: transparent;
}

#app-splash.app-splash--hide {
    opacity: 0;
    pointer-events: none;
}

.splash-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.splash-logo-card {
    width: min(42vw, 144px);
    height: min(42vw, 144px);
    background: #ffffff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    animation: splash-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.splash-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.splash-slogan {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes splash-in {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.splash-loader {
    margin-top: 14px;
    width: 120px;
    height: 4px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
}

.splash-loader span {
    display: block;
    width: 45%;
    height: 100%;
    border-radius: 999px;
    background: #F45734;
    animation: splash-slide 1.2s ease-in-out infinite;
}

@keyframes splash-slide {
    0% {
        transform: translateX(-110%);
    }
    100% {
        transform: translateX(280%);
    }
}

/* ================================================
   PRELOADER (legacy - kept for compatibility)
   ================================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.preloader-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid var(--primary-100);
    border-top-color: #16493a;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ================================================
   NAVIGATION
   ================================================ */
.nav-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--primary-100);
}

.lang-pill {
    display: block;
}

@media (max-width: 1024px) {
    .nav-desktop-links {
        display: none;
    }

    .nav-right .lang-pill {
        display: none;
    }
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    width: 200px;
    height: 200px;
    border-radius: 16px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 24px;
}

.nav-desktop-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

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

.nav-link.active,
.nav-link[aria-current="page"] {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after,
.nav-link[aria-current="page"]::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.lang-pill {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.lang-btn:hover {
    background: var(--primary-100);
    border-color: var(--primary-300);
}

.lang-flag {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    object-fit: cover;
}

.lang-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.lang-chevron {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 200;
    min-width: 150px;
    max-height: 200px;
    background: var(--surface);
    border: 1px solid var(--primary-100);
    border-radius: 10px;
    box-shadow: var(--shadow-card-hover);
    padding: 6px;
    overflow-y: auto;
    animation: slideDown 0.15s ease;
}

.lang-dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
    font-family: inherit;
    text-align: left;
}

.lang-dropdown button:hover {
    background: var(--primary-50);
}

.lang-dropdown button img {
    width: 20px;
    height: 14px;
    border-radius: 3px;
}

.lang-dropdown button span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
    flex: 1;
}

.lang-dropdown button svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

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

.nav-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--surface);
    border: 1.5px solid var(--primary-100);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    box-shadow: var(--shadow-card);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mobile-toggle:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-card-hover);
    background: var(--primary-50);
}

.nav-mobile-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.nav-mobile-toggle .nav-toggle-bar {
    width: 20px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.nav-mobile-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-mobile-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-mobile-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.nav-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--surface);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -32px 0 64px rgba(22, 73, 58, 0.12);
}

.nav-mobile-menu.open {
    transform: translateX(0);
}

.nav-mobile-close {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--primary-100);
    background: var(--surface);
}

.nav-mobile-close .nav-logo-img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
}

.nav-mobile-close .nav-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-close-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-50);
    border: 1.5px solid var(--primary-100);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.nav-close-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: rotate(90deg);
}

.nav-close-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.nav-close-btn svg {
    width: 22px;
    height: 22px;
}

.nav-mobile-links {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-mobile-links .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    background: transparent;
}

.nav-mobile-links .nav-link:hover,
.nav-mobile-links .nav-link.active {
    background: var(--primary-50);
    color: var(--primary);
    font-weight: 600;
}

.nav-mobile-links .nav-link.active::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 0 4px 4px 0;
    margin-right: -4px;
}

.nav-mobile-lang {
    padding: 16px 24px 24px;
    border-top: 1px solid var(--primary-100);
    margin-top: auto;
}

.nav-mobile-lang .lang-pill {
    width: 100%;
}

.nav-mobile-lang .lang-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.nav-mobile-lang .lang-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 12px 0 0;
    max-height: none;
    animation: none;
}

.nav-mobile-lang .lang-dropdown.hidden {
    display: none;
}

.nav-mobile-lang .lang-dropdown button {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-mobile-lang .lang-dropdown button:hover {
    background: var(--primary-50);
}

.nav-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(15, 23, 42, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(2px);
}

.nav-mobile-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

/* ===== FAQ Page ===== */
.faq-hero-section {
    padding: 80px 0 40px;
}

.faq-hero-section .section-title {
    font-size: 2.25rem;
}

.faq-search-wrap {
    max-width: 560px;
    margin: 2rem auto
}

.faq-search {
    position: relative;
    display: flex;
    align-items: center;
    border: 1.5px solid var(--primary-100);
    border-radius: 12px;
    padding: 0 14px;
    background: var(--surface);
    transition: border-color 0.2s;
}

.faq-search:focus-within {
    border-color: var(--primary-200);
}

.faq-search-icon {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    margin-right: 8px;
    flex-shrink: 0;
}

.faq-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.9375rem;
    padding: 12px 0;
    color: var(--text);
    font-family: inherit;
    width: 100%;
}

.faq-search-input::placeholder {
    color: var(--text-secondary);
}

.faq-content {
    max-width: 720px;
    margin: 0 auto;
}

.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-section {
    margin-bottom: 24px;
}

.faq-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 10px 14px;
    background: var(--primary-50);
    border-radius: 12px;
}

.faq-section-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.faq-section-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-section-count {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.faq-accordion {
    background: var(--surface);
    border: 1.5px solid var(--primary-100);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--primary-50);
}

.faq-chevron {
    width: 16px;
    height: 16px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-accordion.open .faq-answer {
    max-height: 500px;
    padding: 0 20px 16px;
}

.faq-answer-content {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Contact Page ===== */
.contact-hero-section {
    padding: 80px 0 40px;
}

.contact-hero-section .section-title {
    font-size: 2.25rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.contact-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 28px;
    border: 1.5px solid var(--primary-100);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-card-content {
    flex: 1;
}

.contact-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.contact-address-wrap {
    word-break: break-all;
}

.contact-address {
    font-size: 0.95rem;
    color: var(--text);
    text-decoration: none;
    display: block;
    word-break: break-all;
    line-height: 1.5;
}

.contact-address a {
    color: inherit;
}

.contact-address:hover {
    color: var(--primary);
}

.lang-dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
    font-family: inherit;
    text-align: left;
}

.lang-dropdown button:hover {
    background: var(--primary-50);
}

.lang-dropdown button img {
    width: 20px;
    height: 14px;
    border-radius: 3px;
}

.lang-dropdown button span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
    flex: 1;
}

.lang-dropdown button svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--surface) 35%, var(--accent-50) 100%);
    padding: 80px 24px 100px;
    min-height: 680px;
}

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

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.06;
}

.hero-blob-2 {
    width: 250px;
    height: 250px;
    background: var(--accent);
    bottom: -50px;
    left: 30%;
    opacity: 0.04;
}

.hero-blob-3 {
    display: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--surface);
    border: 1.5px solid var(--primary-100);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
}

.hero-badge-icon {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--text);
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 32px;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.cta-btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 73, 58, 0.35);
}

.store-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--surface);
    border: 1.5px solid var(--primary-100);
    border-radius: 10px;
    font-size: 0.775rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: var(--shadow-card);
}

.store-pill-ios {
    color: var(--primary);
}

.store-pill-android {
    color: var(--primary);
}

.store-pill:hover {
    transform: translateY(-1px);
    border-color: var(--primary-200);
}

.store-pill-icon {
    width: 16px;
    height: 16px;
}

.store-pill-text {
    display: flex;
    flex-direction: column;
}

.store-pill-label {
    font-size: 0.675rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.store-pill-name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-app-card {
    background: var(--surface);
    border-radius: 24px;
    padding: 36px 40px;
    box-shadow: var(--shadow-card-hover);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 260px;
    text-align: center;
}

.hero-app-logo {
    width: 56px;
    height: 56px;
}

.hero-app-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-app-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-app-stats {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.hero-app-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-app-stat-val {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-app-stat-lab {
    font-size: 0.65rem;
    opacity: 0.8;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }
}

/* ================================================
   HERO STATS BAR
   ================================================ */
.hero-stats-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--primary-100);
    padding: 24px 0;
    margin-top: -1px;
}

.hero-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 140px;
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-icon svg {
    width: 20px;
    height: 20px;
}

.hero-stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--primary-100);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-stats-inner {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat {
        width: 100%;
        justify-content: center;
    }

    .hero-stat-divider {
        width: 60%;
        height: 1px;
        margin: 8px 0;
    }
}

/* ================================================
   SECTIONS
   ================================================ */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -1px;
}

/* ================================================
   FEATURES
   ================================================ */
.features-section {
    padding: 100px 0;
    background: var(--surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 32px;
    border: 1.5px solid var(--primary-100);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-200);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-section {
    padding: 80px 0;
    background: var(--surface);
}

.how-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}

.how-step {
    text-align: center;
    flex: 1;
    min-width: 180px;
    position: relative;
    padding-top: 36px;
}

.how-step-num {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 800;
}

.how-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.how-step p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .how-grid {
        gap: 32px;
    }
}

/* ================================================
   COMMUNITY / SOCIAL PROOF
   ================================================ */
.community-section {
    padding: 100px 0;
    background: var(--primary);
}

.community-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.community-text {
    color: white;
}

.community-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.community-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 28px;
}

.community-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.community-cta:hover {
    background: rgba(255, 255, 255, 0.25);
}

.community-cta-icon {
    width: 18px;
    height: 18px;
}

.community-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
    flex: 1;
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ================================================
   ACCOUNT DELETION
   ================================================ */
.account-section {
    padding: 60px 0;
    background: var(--surface);
}

.account-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--primary-50);
    border: 1.5px solid var(--primary-200);
    border-radius: 20px;
    padding: 32px 40px;
}

.account-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    flex-shrink: 0;
}

.account-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
    background: var(--text);
    color: white;
    padding: 64px 0 32px;
    margin-top: 2rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-company {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.footer-address {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.footer-contact-link {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-link:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.footer-social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.footer-nav-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    padding: 4px 0;
}

.footer-nav-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

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

    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
}

/* ================================================
   HERO TRUST BADGES
   ================================================ */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.hero-trust-icon {
    width: 16px;
    height: 16px;
    color: #eab308;
}

.hero-trust-muted {
    color: #9ca3af;
    font-weight: 400;
}

/* ================================================
   MOBILE LANGUAGE MODAL
   ================================================ */
.mobile-lang-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mobile-lang-modal.hidden {
    display: none;
}

.mobile-lang-panel {
    background: var(--surface);
    border-radius: 20px;
    padding: 28px;
    width: 100%;
    max-width: 360px;
}

.mobile-lang-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.mobile-lang-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s;
    font-family: inherit;
    text-align: left;
    width: 100%;
}

.mobile-lang-btn:hover {
    background: var(--primary-50);
}

.mobile-lang-btn img {
    width: 24px;
    height: 17px;
    border-radius: 4px;
}

.mobile-lang-btn span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    flex: 1;
}

.mobile-lang-btn svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.mobile-lang-close {
    width: 100%;
    padding: 12px;
    background: #f3f4f6;
    border: none;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.mobile-lang-close:hover {
    background: #e5e7eb;
}

/* ================================================
   LOADING OVERLAY
   ================================================ */
.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-overlay.hidden {
    display: none;
}

.loading-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.loading-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-100);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loading-card span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ================================================
   PRIVACY PAGE
   ================================================ */
.privacy-page {
    padding-top: 40px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.6;
}

.privacy-company {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--surface);
    border: 1.5px solid var(--primary-100);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 32px;
}

.privacy-company-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.privacy-company-icon svg {
    width: 24px;
    height: 24px;
}

.privacy-company-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.privacy-company-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.privacy-company-address {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.privacy-company-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.privacy-company-meta strong {
    color: var(--text);
}

.privacy-sections {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.privacy-section {
    background: var(--surface);
    border: 1.5px solid var(--primary-100);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.2s;
}

.privacy-section:hover {
    border-color: var(--primary-200);
}

.privacy-section-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    flex-shrink: 0;
}

.privacy-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.privacy-section-body {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================================
   TERMS PAGE
   ================================================ */
.terms-page {
    padding-top: 40px;
}

.terms-header {
    text-align: center;
    margin-bottom: 40px;
}

.terms-header p {
    color: var(--text-secondary);
    margin-top: 12px;
}

.terms-sections {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.terms-section {
    background: var(--surface);
    border: 1.5px solid var(--primary-100);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.2s;
}

.terms-section:hover {
    border-color: var(--primary-200);
}

.terms-section-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    flex-shrink: 0;
}

.terms-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.terms-section-body {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================================
   FAQ
   ================================================ */
.faq-page {
    padding-top: 40px;
}

.faq-page-section {
    padding: 80px 0;
    background: var(--surface);
}

.faq-search-wrap {
    max-width: 560px;
    margin: 2rem auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: var(--surface);
    border: 1.5px solid var(--primary-100);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s;
}

.faq-item:hover {
    border-color: var(--primary-200);
    transform: translateY(-2px);
}

.faq-item h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================================
   BACK LINK
   ================================================ */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 20px;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--primary);
}

.back-link svg {
    width: 16px;
    height: 16px;
}

/* ================================================
   RESPONSIVE ADDITIONS
   ================================================ */
@media (max-width: 1024px) {
    .privacy-company-meta {
        gap: 12px;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-grid {
        gap: 32px;
    }

    .community-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .community-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 24px 80px;
        min-height: auto;
    }

    .hero-content {
        max-width: 560px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

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

    .hero-store-badges {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .nav-desktop-links {
        display: none;
    }

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

    .faq-teaser-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-teaser-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .privacy-section {
        flex-direction: column;
        gap: 8px;
        padding: 20px;
    }

    .privacy-section-num {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .privacy-company {
        flex-direction: column;
        padding: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal {
        flex-direction: column;
        gap: 4px;
    }

    .account-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-store-badges {
        flex-direction: column;
        align-items: center;
    }

    .nav-link {
        display: none;
    }

    .section-title {
        letter-spacing: -0.5px;
    }
}

.faq-teaser-section {
    padding: 60px 0;
}

.faq-teaser-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--surface);
    border-radius: 20px;
    padding: 32px 40px;
    border: 1.5px solid var(--primary-100);
    box-shadow: var(--shadow-card);
}

.faq-teaser-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-teaser-icon {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.faq-teaser-text {
    flex: 1;
}

.faq-teaser-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.faq-teaser-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.faq-teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.faq-search {
    position: relative;
    display: flex;
    align-items: center;
    border: 1.5px solid var(--primary-100);
    border-radius: 12px;
    padding: 0 14px;
    background: var(--surface);
    transition: border-color 0.2s;
}

.faq-search:focus-within {
    border-color: var(--primary-200);
}

.faq-search-icon {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    margin-right: 8px;
}

.faq-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.9375rem;
    padding: 12px 0;
    color: var(--text);
    font-family: inherit;
    width: 100%;
}

.faq-search-input::placeholder {
    color: var(--text-secondary);
}

.faq-section {
    margin-bottom: 24px;
}

.faq-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 10px 14px;
    background: var(--primary-50);
    border-radius: 12px;
}

.faq-section-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.faq-section-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-section-count {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.faq-accordion {
    background: var(--surface);
    border: 1.5px solid var(--primary-100);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--primary-50);
}

.faq-chevron {
    width: 16px;
    height: 16px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-accordion.open .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 20px 16px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================================
   MODERN IMPROVEMENTS
   ================================================ */

/* Active Navigation Highlighting */
.nav-link.active,
.nav-link[aria-current="page"] {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after,
.nav-link[aria-current="page"]::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.nav-mobile-links .nav-link.active,
.nav-mobile-links .nav-link[aria-current="page"] {
    color: var(--primary);
    font-weight: 600;
    background: var(--primary-50);
}

/* Privacy & Terms Page - Fix title visibility on gradient bg */
.privacy-page,
.terms-page {
    padding-top: 40px;
}

.privacy-page .back-link,
.terms-page .back-link {
    margin-bottom: 24px;
}

.privacy-header,
.terms-header {
    text-align: center;
    margin-bottom: 48px;
}

.privacy-header .section-title,
.terms-header .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text);
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.privacy-header p,
.terms-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.6;
}

.privacy-company {
    background: var(--surface);
    border: 1.5px solid var(--primary-100);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-card);
}

.privacy-company-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.privacy-company-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.privacy-company-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.privacy-company-address {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.privacy-company-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.privacy-company-meta strong {
    color: var(--text);
}

.privacy-sections,
.terms-sections {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.privacy-section,
.terms-section {
    background: var(--surface);
    border: 1.5px solid var(--primary-100);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.privacy-section:hover,
.terms-section:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-card-hover);
}

.privacy-section-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    flex-shrink: 0;
}

.privacy-section-title,
.terms-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.privacy-section-body,
.terms-section p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* FAQ Page Header */
.faq-page-header,
.contact-page-header {
    text-align: center;
    margin-bottom: 24px;
}

.faq-page-header .section-label,
.contact-page-header .section-label,
.privacy-header .section-label,
.terms-header .section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.faq-page-header .section-title,
.contact-page-header .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.faq-page-subtitle,
.contact-page-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Search */
.faq-search-wrap {
    max-width: 640px;
    margin: 2rem auto;
}

.faq-search {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-100);
    border-radius: 16px;
    padding: 0 20px;
    background: var(--surface);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-card);
}

.faq-search:focus-within {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-card-hover), 0 0 0 4px var(--primary-50);
    outline: none;
}

.faq-search:focus-visible {
    outline: none;
}

.faq-search-icon {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    margin-right: 12px;
    flex-shrink: 0;
}

.faq-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    padding: 16px 0;
    color: var(--text);
    font-family: inherit;
    width: 100%;
}

.faq-search-input:focus,
.faq-search-input:focus-visible {
    outline: none;
    box-shadow: none;
}

.faq-search-input::placeholder {
    color: var(--text-secondary);
}

/* FAQ Accordion */
.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-section {
    margin-bottom: 8px;
}

.faq-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border-radius: 12px;
    border: 1px solid var(--primary-200);
}

.faq-section-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-section-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-section-count {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    background: var(--surface);
    padding: 2px 10px;
    border-radius: 20px;
}

.faq-accordion {
    background: var(--surface);
    border: 1.5px solid var(--primary-100);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-accordion:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-card);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    transition: background 0.2s;
    gap: 16px;
}

.faq-question:hover {
    background: var(--primary-50);
}

.faq-question:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.faq-accordion.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

.faq-accordion.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer-content {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
    animation: fadeIn 0.3s ease;
}

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

/* Contact Page Styles */
.contact-page {
    padding-top: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.contact-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 32px;
    border: 1.5px solid var(--primary-100);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.contact-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon.email {
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    color: var(--primary);
}

.contact-card-icon.web {
    background: linear-gradient(135deg, var(--accent-50), var(--accent-100));
    color: var(--accent);
}

.contact-card-icon.office {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #16a34a;
}

.contact-card-icon svg {
    width: 26px;
    height: 26px;
}

.contact-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}

.contact-card-content {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-card-content a {
    color: inherit;
    transition: color 0.2s;
}

.contact-card-content a:hover {
    color: var(--primary);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 40px auto 0;
}

.contact-action-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--surface);
    border: 1.5px solid var(--primary-100);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-card);
}

.contact-action-btn:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.contact-action-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-action-icon.email {
    background: var(--primary-50);
    color: var(--primary);
}

.contact-action-icon.web {
    background: var(--accent-50);
    color: var(--accent);
}

.contact-action-icon svg {
    width: 22px;
    height: 22px;
}

.contact-action-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.contact-action-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.contact-action-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.contact-action-arrow {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: transform 0.2s;
}

.contact-action-btn:hover .contact-action-arrow {
    transform: translateX(4px);
}

.contact-help-topics {
    margin-top: 40px;
    padding: 32px;
    background: var(--surface);
    border-radius: 24px;
    border: 1.5px solid var(--primary-100);
    box-shadow: var(--shadow-card);
}

.contact-help-topics .eyebrow-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.help-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--primary-50);
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid transparent;
}

.help-item:hover {
    background: var(--surface);
    border-color: var(--primary-200);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.help-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Modern FAQ Page Restyle */
.faq-hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--primary-50) 0%, var(--surface) 100%);
}

.faq-hero-section .section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.faq-hero-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.faq-hero-section .section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.faq-search-wrap {
    max-width: 640px;
    margin: 2rem auto;
}

.faq-search {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-100);
    border-radius: 16px;
    padding: 0 20px;
    background: var(--surface);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-card);
}

.faq-search:focus-within {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-card-hover), 0 0 0 4px var(--primary-50);
    outline: none;
}

.faq-search:focus-visible {
    outline: none;
}

.faq-search-icon {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    margin-right: 12px;
    flex-shrink: 0;
}

.faq-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    padding: 16px 0;
    color: var(--text);
    font-family: inherit;
    width: 100%;
}

.faq-search-input:focus,
.faq-search-input:focus-visible {
    outline: none;
    box-shadow: none;
}

.faq-search-input::placeholder {
    color: var(--text-secondary);
}

.faq-content {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-section {
    margin-bottom: 8px;
}

.faq-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border-radius: 12px;
    border: 1px solid var(--primary-200);
}

.faq-section-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-section-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-section-count {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    background: var(--surface);
    padding: 2px 10px;
    border-radius: 20px;
}

.faq-accordion {
    background: var(--surface);
    border: 1.5px solid var(--primary-100);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-accordion:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-card);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    transition: background 0.2s;
    gap: 16px;
}

.faq-question:hover {
    background: var(--primary-50);
}

.faq-question:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.faq-accordion.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

.faq-accordion.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer-content {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
    animation: fadeIn 0.3s ease;
}

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

/* Empty state for FAQ search */
.faq-empty-state {
    text-align: center;
    padding: 60px 24px;
    color: var(--text-secondary);
}

.faq-empty-state svg {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    opacity: 0.4;
}

.faq-empty-state h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.faq-empty-state p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Modern Contact Page */
.contact-hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--primary-50) 0%, var(--surface) 100%);
}

.contact-hero-section .section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.contact-hero-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.contact-hero-section .section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.contact-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 32px;
    border: 1.5px solid var(--primary-100);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.contact-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon.email {
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    color: var(--primary);
}

.contact-card-icon.phone {
    background: linear-gradient(135deg, var(--accent-50), var(--accent-100));
    color: var(--accent);
}

.contact-card-icon.office {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #16a34a;
}

.contact-card-icon svg {
    width: 26px;
    height: 26px;
}

.contact-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}

.contact-card-content {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-card-content a {
    color: inherit;
    transition: color 0.2s;
}

.contact-card-content a:hover {
    color: var(--primary);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 40px auto 0;
}

.contact-action-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--surface);
    border: 1.5px solid var(--primary-100);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-card);
}

.contact-action-btn:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.contact-action-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-action-icon.email {
    background: var(--primary-50);
    color: var(--primary);
}

.contact-action-icon.web {
    background: var(--accent-50);
    color: var(--accent);
}

.contact-action-icon svg {
    width: 22px;
    height: 22px;
}

.contact-action-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.contact-action-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.contact-action-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.contact-action-arrow {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: transform 0.2s;
}

.contact-action-btn:hover .contact-action-arrow {
    transform: translateX(4px);
}

.contact-note {
    text-align: center;
    padding: 24px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* FAQ Teaser Icon Fix */
.faq-teaser-icon {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

/* Enhanced shadows and depth */
.shadow-card {
    box-shadow: var(--shadow-card);
}

.shadow-card-hover {
    box-shadow: var(--shadow-card-hover);
}

.shadow-accent-soft {
    box-shadow: var(--shadow-accent);
}

.shadow-primary-soft {
    box-shadow: var(--shadow-primary);
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Modern button enhancements */
.btn-primary {
    background: var(--primary);
    color: white;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px rgba(22, 73, 58, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    border: 2px solid var(--primary);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.25s;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Feature cards enhancement */
.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-50) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card .feature-icon-wrap {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.1);
    box-shadow: var(--shadow-primary);
}

/* Community stats animation */
.stat-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

/* Mobile nav enhancement */
.nav-mobile-menu {
    box-shadow: -24px 0 64px rgba(22, 73, 58, 0.12);
}

/* Splash screen polish */
#app-splash {
    background: linear-gradient(160deg, #16493A 0%, #0f352b 100%);
}

.splash-logo-card {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Contact Help Topics - Modern Restyle */
.contact-help-topics {
    margin-top: 40px;
    padding: 32px;
    background: var(--surface);
    border-radius: 24px;
    border: 1.5px solid var(--primary-100);
    box-shadow: var(--shadow-card);
}

.contact-help-topics .eyebrow-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.help-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--primary-50);
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid transparent;
}

.help-item:hover {
    background: var(--surface);
    border-color: var(--primary-200);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.help-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.lang-dropdown.hidden {
    display: none !important;
}