/* ═══════════════════════════════════════════════════
   DealTranslator — Premium Translation Agency
   Dark Editorial Layout with Warm Gold Accents
   Fonts: Sora (headings) + Work Sans (body)
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Work+Sans:wght@300;400;500;600;700&display=swap');

/* ─── CSS VARIABLES ───────────────────────────────── */
:root {
    --primary: #C8965A;
    --primary-light: #D4A96F;
    --primary-dark: #A87B47;
    --secondary: #1A1D23;
    --accent: #E8C17A;
    --background: #0F1117;
    --background-alt: #151820;
    --surface: #1A1D25;
    --surface-light: #22252E;
    --surface-lighter: #2A2D38;
    --text: #E8E6E1;
    --text-secondary: #A8A5A0;
    --muted: #6B6863;
    --border: rgba(200, 150, 90, 0.15);
    --border-light: rgba(255, 255, 255, 0.06);
    --white: #FDFCFA;
    --error: #E05252;
    --success: #52B788;

    --font-heading: 'Sora', sans-serif;
    --font-body: 'Work Sans', sans-serif;

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 40px rgba(200, 150, 90, 0.1);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --container: 1200px;
    --container-wide: 1400px;
}

/* ─── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--background);
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
}

/* ─── UTILITIES ───────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-secondary); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ─── SECTION SPACING ─────────────────────────────── */
.section {
    padding: 100px 0;
    position: relative;
}
.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }

.section-header {
    max-width: 680px;
    margin: 0 auto 64px;
    text-align: center;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}
.section-header .section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--background);
    box-shadow: 0 4px 20px rgba(200, 150, 90, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 150, 90, 0.35);
    color: var(--background);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--background);
    transform: translateY(-2px);
}
.btn-ghost {
    background: rgba(255,255,255,0.05);
    color: var(--text);
    border: 1px solid var(--border-light);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
    color: var(--primary);
}
.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}
.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ─── HEADER / NAVIGATION ─────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}
.site-header.scrolled {
    background: rgba(15, 17, 23, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
}
.header-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo:hover { color: var(--white); }
.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--background);
    font-weight: 800;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}
.nav-cta {
    margin-left: 16px;
}

/* Mobile menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 1px;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 17, 23, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text);
    font-weight: 500;
}
.mobile-nav a:hover { color: var(--primary); }

/* ─── HERO — DIAGONAL SPLIT ──────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 150, 90, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 150, 90, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: linear-gradient(135deg, rgba(200, 150, 90, 0.03), transparent);
    transform: rotate(-15deg);
    pointer-events: none;
}
.hero-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content { max-width: 600px; }
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(200, 150, 90, 0.1);
    border: 1px solid rgba(200, 150, 90, 0.2);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.hero-label .dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero h1 br + span,
.hero .text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}
.hero-stat .value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}
.hero-stat .label {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-visual-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 480px;
}
.hero-visual-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(200,150,90,0.2), transparent, rgba(200,150,90,0.1));
    z-index: -1;
    padding: 1px;
}
.hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}
.hero-card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.hero-card-dot:nth-child(1) { background: #E05252; }
.hero-card-dot:nth-child(2) { background: #E0C452; }
.hero-card-dot:nth-child(3) { background: #52B788; }
.hero-lang-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: var(--surface-light);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}
.hero-lang-flag {
    font-size: 1.4rem;
}
.hero-lang-text {
    flex: 1;
}
.hero-lang-text .lang-name {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hero-lang-text .lang-content {
    font-size: 0.95rem;
    color: var(--text);
    margin-top: 2px;
}
.hero-lang-arrow {
    color: var(--primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
}
.hero-quality-bar {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}
.hero-quality-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    margin-bottom: 8px;
}
.hero-quality-label span:first-child { color: var(--text-secondary); }
.hero-quality-label span:last-child { color: var(--primary); font-weight: 600; }
.hero-quality-track {
    height: 6px;
    background: var(--surface-light);
    border-radius: 3px;
    overflow: hidden;
}
.hero-quality-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-quality-fill.animate { width: 99.7%; }

/* Floating elements */
.hero-float {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 18px;
    font-size: 0.85rem;
    color: var(--text);
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
    white-space: nowrap;
}
.hero-float-1 { top: -20px; right: -30px; animation-delay: 0s; }
.hero-float-2 { bottom: 40px; left: -40px; animation-delay: 2s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ─── TRUST BAR ───────────────────────────────────── */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--background-alt);
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ─── SERVICES GRID ───────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 150, 90, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}
.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-card .service-price {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}
.service-card .service-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-card .service-link:hover { gap: 10px; }

/* ─── PROCESS ─────────────────────────────────────── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--primary), var(--border));
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.process-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0 auto 20px;
}
.process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.process-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─── LANGUAGES MARQUEE ───────────────────────────── */
.languages-section {
    background: var(--background-alt);
    overflow: hidden;
}
.marquee-track {
    display: flex;
    animation: marquee 40s linear infinite;
    gap: 16px;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.lang-chip {
    padding: 8px 20px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    font-weight: 500;
}

/* ─── TESTIMONIALS ────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
}
.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 4rem;
    color: rgba(200, 150, 90, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial-stars {
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--background);
}
.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}
.testimonial-role {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ─── CASE STUDIES ────────────────────────────────── */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.case-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.case-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.case-image {
    height: 220px;
    background: linear-gradient(135deg, var(--surface-light), var(--surface-lighter));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}
.case-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, var(--surface));
}
.case-body {
    padding: 32px;
}
.case-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 12px;
}
.case-body h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.case-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.case-result {
    padding: 16px;
    background: rgba(200, 150, 90, 0.08);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}
.case-result .result-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 4px;
}
.case-result .result-value {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
}

/* ─── CTA BANNER ──────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--surface), var(--surface-light));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(200,150,90,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.cta-banner h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 16px;
    position: relative;
}
.cta-banner p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.cta-banner .btn { position: relative; }

/* ─── PRICING ─────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
}
.pricing-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
}
.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--background);
    padding: 4px 20px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}
.pricing-subtitle {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 24px;
}
.pricing-amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}
.pricing-amount .currency { font-size: 1.4rem; vertical-align: super; }
.pricing-amount .period { font-size: 0.9rem; color: var(--muted); font-weight: 400; }
.pricing-features {
    margin-bottom: 32px;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.92rem;
    color: var(--text-secondary);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ─── FAQ ─────────────────────────────────────────── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active {
    border-color: var(--border);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    background: var(--surface);
    transition: var(--transition);
    gap: 16px;
}
.faq-question:hover { background: var(--surface-light); }
.faq-question h3 {
    font-size: 1rem;
    font-weight: 500;
    flex: 1;
}
.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(200,150,90,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--primary);
    font-size: 1.2rem;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ─── CONTACT ─────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}
.contact-info-card:last-child { border-bottom: none; }
.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(200,150,90,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.contact-info-value {
    color: var(--text);
    font-weight: 500;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200,150,90,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; appearance: none; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─── ABOUT PAGE ──────────────────────────────────── */
.about-hero {
    padding: 160px 0 80px;
    position: relative;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100%;
    background: radial-gradient(ellipse at 30% 30%, rgba(200,150,90,0.06), transparent 60%);
    pointer-events: none;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.about-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 24px;
}
.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.value-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px;
}
.value-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--primary);
}
.value-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─── PAGE HERO ───────────────────────────────────── */
.page-hero {
    padding: 160px 0 60px;
    position: relative;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(200,150,90,0.06), transparent 60%),
        linear-gradient(180deg, var(--background-alt), var(--background));
    pointer-events: none;
}
.page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
    position: relative;
}
.page-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}
.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 16px;
    position: relative;
}
.page-hero .breadcrumb a { color: var(--text-secondary); }
.page-hero .breadcrumb a:hover { color: var(--primary); }

/* ─── SERVICE DETAIL PAGE ─────────────────────────── */
.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}
.service-detail-content h2 {
    font-size: 1.6rem;
    margin: 40px 0 16px;
}
.service-detail-content h2:first-child { margin-top: 0; }
.service-detail-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.02rem;
}
.service-features-list {
    margin: 24px 0;
}
.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
    font-size: 0.95rem;
}
.service-features-list li:last-child { border-bottom: none; }
.service-features-list li svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.service-sidebar {
    position: sticky;
    top: 100px;
}
.service-price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}
.service-price-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.service-price-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}
.service-price-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 24px;
}
.service-turnaround {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: rgba(200,150,90,0.05);
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.service-turnaround svg { color: var(--primary); flex-shrink: 0; }

/* ─── CUSTOM PACKAGE BUILDER ──────────────────────── */
.builder-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}
.builder-addons {
    display: grid;
    gap: 16px;
}
.addon-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.addon-card:hover { border-color: var(--border); }
.addon-card.selected {
    border-color: var(--primary);
    background: rgba(200,150,90,0.04);
}
.addon-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}
.addon-card.selected .addon-checkbox {
    background: var(--primary);
    border-color: var(--primary);
}
.addon-card.selected .addon-checkbox::after {
    content: '✓';
    color: var(--background);
    font-size: 0.8rem;
    font-weight: 700;
}
.addon-name {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.addon-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.addon-price {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    margin-left: auto;
    flex-shrink: 0;
}
.support-hours {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px;
}
.support-hours label {
    display: block;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}
.support-hours input[type="range"] {
    width: 100%;
    accent-color: var(--primary);
    margin-bottom: 8px;
}
.support-hours-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.builder-summary {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky;
    top: 100px;
}
.builder-summary h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}
.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
}
.summary-line.total {
    border-top: 2px solid var(--border);
    margin-top: 16px;
    padding-top: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}
.summary-line.total .amount {
    color: var(--primary);
    font-family: var(--font-heading);
}

/* ─── CHECKOUT ────────────────────────────────────── */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}
.checkout-summary {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky;
    top: 100px;
}

/* ─── SUCCESS / CANCEL ────────────────────────────── */
.status-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 100px;
}
.status-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
}
.status-icon.success {
    background: rgba(82, 183, 136, 0.15);
    color: var(--success);
}
.status-icon.cancel {
    background: rgba(224, 82, 82, 0.15);
    color: var(--error);
}
.status-page h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}
.status-page p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ─── LEGAL PAGES ─────────────────────────────────── */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 80px;
}
.legal-content h2 {
    font-size: 1.35rem;
    margin: 40px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}
.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.legal-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.98rem;
}
.legal-content strong {
    color: var(--text);
}
.legal-updated {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 40px;
    text-align: center;
}

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border-light);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 16px 0 20px;
    max-width: 300px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    background: var(--surface-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--background);
}
.footer-col h4 {
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: 20px;
}
.footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: var(--transition);
}
.footer-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}
.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: var(--muted);
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a {
    font-size: 0.82rem;
    color: var(--muted);
}
.footer-bottom-links a:hover { color: var(--primary); }

/* ─── COOKIE BANNER ───────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 520px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease;
}
.cookie-banner.show { display: block; }
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-banner h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.cookie-banner p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}
.cookie-actions {
    display: flex;
    gap: 12px;
}

/* ─── REVEAL ANIMATIONS ──────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .hero-content { max-width: 100%; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .process-grid::before { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-content { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
    .builder-layout { grid-template-columns: 1fr; }
    .builder-summary { position: static; }
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-summary { position: static; order: -1; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    .hero { padding: 120px 0 80px; min-height: auto; }
    .hero h1 { font-size: 2.4rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 70px 0; }
    .cta-banner { padding: 40px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}
