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

:root {
    /* Dark Theme Palette */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #161616;
    --bg-card-hover: #1e1e1e;
    --bg-elevated: #222222;

    /* Accent - Turquoise */
    --accent: #00d4aa;
    --accent-light: #33e8c4;
    --accent-dark: #00a888;
    --accent-glow: rgba(0, 212, 170, 0.3);
    --accent-subtle: rgba(0, 212, 170, 0.08);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-tertiary: #666666;
    --text-muted: #444444;

    /* Borders */
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    --border-accent: rgba(0, 212, 170, 0.3);

    /* Functional */
    --success: #00d18c;
    --warning: #ffb400;
    --info: #00aaff;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-accent: 0 4px 30px rgba(0, 212, 170, 0.2);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    background: var(--accent) !important;
    color: #0a0a0a !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 700 !important;
}

.nav-cta:hover {
    background: var(--accent-light) !important;
    box-shadow: var(--shadow-accent) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 212, 170, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(0, 212, 170, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0, 100, 255, 0.04) 0%, transparent 50%);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black, transparent);
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo-wrapper {
    margin-bottom: 40px;
}

.hero-logo {
    height: 80px;
    width: auto;
    opacity: 0.9;
}

/* Large hero logo for subpages */
.hero-logo-large {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 32px;
}

.hero-logo-large .hero-logo {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 60px rgba(0, 212, 170, 0.12));
}

.hero-content-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.text-accent {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 72px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-tertiary);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 60px; }
    50% { opacity: 0.4; height: 40px; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.btn-accent {
    background: var(--accent);
    color: #0a0a0a;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
}

.btn-accent:hover {
    background: var(--accent-light);
    box-shadow: 0 6px 30px rgba(0, 212, 170, 0.45);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    background: var(--accent-subtle);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 48px;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-tertiary);
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--accent-subtle);
    color: var(--accent-light);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    border: 1px solid var(--border-accent);
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

/* ===== SMOOTH Acronym Section ===== */
.smooth-section {
    padding: 140px 0;
    background: var(--bg-secondary);
    position: relative;
}

.smooth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* SMOOTH Vertical List Layout */
.smooth-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.smooth-row {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 28px 32px;
    border-bottom: 1px solid var(--border);
    transition: all 0.4s ease;
    border-radius: var(--radius-sm);
}

.smooth-row:last-child {
    border-bottom: none;
}

.smooth-row:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 40px;
}

.smooth-letter-col {
    display: flex;
    align-items: baseline;
    flex-shrink: 0;
    min-width: 200px;
}

.smooth-char {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    transition: var(--transition);
}

.smooth-row:hover .smooth-char {
    text-shadow: 0 0 40px var(--accent-glow);
}

.smooth-word {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.smooth-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
    flex-shrink: 0;
}

.smooth-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    flex: 1;
}

/* Highlight row (H for Handshake) */
.smooth-row-highlight {
    background: linear-gradient(90deg, var(--accent-subtle), transparent);
    border-color: var(--border-accent);
}

.smooth-row-highlight .smooth-char {
    text-shadow: 0 0 30px var(--accent-glow);
}

/* ===== Services Section ===== */
.services {
    padding: 140px 0;
    background: var(--bg-primary);
}

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

.services-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 24px;
}

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

/* Clickable service cards */
a.service-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

a.service-card-link:hover {
    transform: translateY(-4px);
}

.service-card-cta {
    margin-top: auto;
    padding-top: 16px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}

a.service-card-link:hover .service-card-cta {
    color: var(--accent-light);
    letter-spacing: 0.02em;
}

.service-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: var(--border-accent);
    background: linear-gradient(135deg, var(--accent-subtle), var(--bg-card));
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 14px;
    background: var(--accent);
    color: #0a0a0a;
    font-size: 0.68rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.service-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    color: var(--accent-light);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 0 20px var(--accent-glow);
}

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

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
}

/* ===== Expertise Section ===== */
.expertise {
    padding: 140px 0;
    background: var(--bg-secondary);
    position: relative;
}

.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.expertise-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.expertise-content .section-tag {
    margin-bottom: 20px;
}

.expertise-content h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.expertise-text {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 44px;
}

.expertise-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.expertise-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.expertise-item-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    color: var(--accent-light);
}

.expertise-item-icon svg {
    width: 18px;
    height: 18px;
}

.expertise-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.expertise-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* Expertise Visual Card */
.expertise-visual {
    display: flex;
    justify-content: center;
}

.expertise-card {
    width: 100%;
    max-width: 440px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.expertise-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 209, 140, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(0, 209, 140, 0); }
}

.expertise-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flow-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.flow-item:hover {
    border-color: var(--border-light);
    background: rgba(255, 255, 255, 0.04);
}

.flow-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.flow-icon-in {
    background: rgba(0, 209, 140, 0.12);
    color: var(--success);
}

.flow-icon-out {
    background: rgba(0, 212, 170, 0.12);
    color: var(--accent-light);
}

.flow-icon-process {
    background: rgba(255, 180, 0, 0.12);
    color: var(--warning);
}

.flow-label {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.flow-detail {
    color: var(--text-tertiary);
    font-size: 0.75rem;
    margin-top: 2px;
    font-family: 'Courier New', monospace;
}

.flow-status {
    margin-left: auto;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    flex-shrink: 0;
}

.flow-status.success {
    background: rgba(0, 209, 140, 0.12);
    color: var(--success);
    border: 1px solid rgba(0, 209, 140, 0.2);
}

.flow-status.pending {
    background: rgba(255, 180, 0, 0.12);
    color: var(--warning);
    border: 1px solid rgba(255, 180, 0, 0.2);
}

/* ===== About Section ===== */
.about {
    padding: 140px 0;
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.value-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    transform: translateX(8px);
}

.value-number {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* ===== Contact Section ===== */
.contact {
    padding: 140px 0;
    background: var(--bg-secondary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-tag {
    margin-bottom: 20px;
}

.contact-info h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 44px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-light);
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* Contact Form */
.contact-form-wrapper {
    padding: 44px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-tertiary);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: var(--bg-elevated);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M2 4L6 8L10 4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.form-group select option {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    height: 36px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 1;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.78rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

/* ===== Animations ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for lists & grids */
.smooth-list [data-aos]:nth-child(1) { transition-delay: 0.05s; }
.smooth-list [data-aos]:nth-child(2) { transition-delay: 0.1s; }
.smooth-list [data-aos]:nth-child(3) { transition-delay: 0.15s; }
.smooth-list [data-aos]:nth-child(4) { transition-delay: 0.2s; }
.smooth-list [data-aos]:nth-child(5) { transition-delay: 0.25s; }
.smooth-list [data-aos]:nth-child(6) { transition-delay: 0.3s; }

.services-grid [data-aos]:nth-child(1) { transition-delay: 0.05s; }
.services-grid [data-aos]:nth-child(2) { transition-delay: 0.1s; }
.services-grid [data-aos]:nth-child(3) { transition-delay: 0.15s; }
.services-grid [data-aos]:nth-child(4) { transition-delay: 0.2s; }
.services-grid [data-aos]:nth-child(5) { transition-delay: 0.25s; }
.services-grid [data-aos]:nth-child(6) { transition-delay: 0.3s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .services-grid,
    .services-grid-2,
    .services-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .smooth-letter-col {
        min-width: 160px;
    }

    .expertise-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .expertise-visual {
        order: -1;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        display: block;
        padding: 14px 18px;
        color: var(--text-secondary);
    }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .services-grid,
    .services-grid-2,
    .services-grid-3 {
        grid-template-columns: 1fr;
    }

    .smooth-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px 20px;
    }

    .smooth-row:hover {
        padding-left: 20px;
    }

    .smooth-letter-col {
        min-width: auto;
    }

    .smooth-char {
        font-size: 2.4rem;
    }

    .smooth-word {
        font-size: 1.1rem;
    }

    .smooth-divider {
        display: none;
    }

    .hero-logo-large {
        max-width: 280px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 28px;
    }

    .stat-divider {
        width: 48px;
        height: 1px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-logo {
        height: 60px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

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

    .contact-form-wrapper {
        padding: 28px;
    }

    section {
        padding: 100px 0 !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .smooth-letter-card .letter {
        font-size: 3rem;
    }

    .hero-logo {
        height: 48px;
    }
}

/* ============================================
   LANDING PAGE STYLES
   ============================================ */

.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.landing-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.landing-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 212, 170, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 0% 50%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 100% 50%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
}

.landing-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
}

/* Logo (centered, max size) */
.landing-center {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 40px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 60px;
}

.landing-logo-wrapper {
    width: 100%;
    max-width: 600px;
}

.landing-logo {
    width: 100%;
    height: auto;
    max-height: 45vh;
    object-fit: contain;
    opacity: 0.95;
    filter: drop-shadow(0 0 100px rgba(0, 212, 170, 0.15));
}

.landing-claim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.claim-word {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.claim-dot {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--accent);
    margin: 0 4px;
}

.landing-tagline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ===== Dummy / Coming Soon Page ===== */
.dummy-page {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    padding: 0 32px;
}

.dummy-logo-link {
    display: inline-block;
    margin-bottom: 40px;
}

.dummy-logo {
    height: 100px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.dummy-logo-link:hover .dummy-logo {
    opacity: 1;
}

.dummy-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 20px 0 24px;
    letter-spacing: -0.02em;
}

.dummy-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 44px;
}

.dummy-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .dummy-logo {
        height: 70px;
    }

    .dummy-headline {
        font-size: 1.8rem;
    }

    .dummy-actions {
        flex-direction: column;
    }
}

/* Split Navigation Panels */
.split-nav {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 960px;
    padding: 0 32px;
}

.split-panel {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-card);
}

.split-panel:hover {
    border-color: var(--border-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-accent), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.split-hover-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-subtle), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.split-panel:hover .split-hover-bg {
    opacity: 1;
}

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

.split-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: var(--accent-subtle);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    color: var(--accent-light);
    transition: var(--transition);
}

.split-panel:hover .split-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 0 30px var(--accent-glow);
}

.split-icon svg {
    width: 30px;
    height: 30px;
}

.split-panel h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.split-panel p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.split-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-light);
    transition: var(--transition);
}

.split-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.split-panel:hover .split-cta {
    color: var(--text-primary);
}

.split-panel:hover .split-cta svg {
    transform: translateX(6px);
}

/* Split Divider */
.split-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
}

.split-divider-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}

.split-divider-or {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Bottom Links */
.landing-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 24px;
    flex-shrink: 0;
}

.landing-copyright {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.landing-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.landing-bottom-links a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.landing-bottom-links a:hover {
    color: var(--accent-light);
}

.bottom-divider {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Section Logo (back to top) */
.back-to-top-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.section-logo {
    height: 48px;
    width: auto;
    opacity: 0.5;
    transition: var(--transition);
}

.section-logo:hover {
    opacity: 0.8;
}

/* Landing Page Responsive */
@media (max-width: 768px) {
    .landing-logo {
        max-height: 35vh;
    }

    .landing-center {
        margin-bottom: 32px;
        padding: 0 24px;
    }

    .landing-logo-wrapper {
        max-width: 400px;
    }

    .split-nav {
        flex-direction: column;
        gap: 16px;
        padding: 0 20px;
    }

    .split-divider {
        flex-direction: row;
        padding: 8px 0;
    }

    .split-divider-line {
        width: 40px;
        height: 1px;
    }

    .split-panel {
        padding: 36px 28px;
    }

    .landing-bottom-links {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .landing-logo {
        max-height: 28vh;
    }

    .landing-logo-wrapper {
        max-width: 300px;
    }

    .landing-center {
        padding: 0 20px;
    }

    .split-panel h2 {
        font-size: 1.2rem;
    }
}

/* ============================================
   SUBPAGE STYLES
   ============================================ */

.subpage .hero {
    min-height: 70vh;
    padding-top: 100px;
}

.subpage .hero-content {
    max-width: 700px;
}

.subpage .hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
}

.cta-banner p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-banner .btn {
    position: relative;
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.process-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--accent-subtle);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-light);
}

.process-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.benefit-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-accent);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--accent-light);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-primary);
}

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

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

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Vorteile Section */
.vorteile {
    padding: 140px 0;
    background: var(--bg-secondary);
    position: relative;
}

.vorteile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* Benefit Card Highlight */
.benefit-card.highlight {
    border-color: var(--border-accent);
    background: linear-gradient(135deg, var(--accent-subtle), var(--bg-card));
}

/* Process Section */
.process {
    padding: 140px 0;
    background: var(--bg-primary);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* CTA Actions */
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* Stagger Animations for Subpage Grids */
.benefits-grid [data-aos]:nth-child(1) { transition-delay: 0.05s; }
.benefits-grid [data-aos]:nth-child(2) { transition-delay: 0.1s; }
.benefits-grid [data-aos]:nth-child(3) { transition-delay: 0.15s; }
.benefits-grid [data-aos]:nth-child(4) { transition-delay: 0.2s; }
.benefits-grid [data-aos]:nth-child(5) { transition-delay: 0.25s; }
.benefits-grid [data-aos]:nth-child(6) { transition-delay: 0.3s; }

.process-grid [data-aos]:nth-child(1) { transition-delay: 0.05s; }
.process-grid [data-aos]:nth-child(2) { transition-delay: 0.15s; }
.process-grid [data-aos]:nth-child(3) { transition-delay: 0.25s; }
.process-grid [data-aos]:nth-child(4) { transition-delay: 0.35s; }

/* ===== Legal Page Styles ===== */
.legal-hero {
    min-height: 40vh;
    padding-top: 100px;
    padding-bottom: 60px;
}

.legal-hero .hero-content {
    max-width: 600px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 48px 0 16px;
    letter-spacing: -0.01em;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 0 12px;
}

.legal-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--accent-light);
    text-decoration: none;
    transition: var(--transition);
}

.legal-content a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Legal Table of Contents */
.legal-toc {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 48px;
}

.legal-toc h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px;
}

.legal-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
}

.legal-toc li {
    counter-increment: toc;
    margin-bottom: 8px;
}

.legal-toc li::before {
    content: counter(toc) ".";
    color: var(--accent);
    font-weight: 600;
    margin-right: 8px;
    font-size: 0.85rem;
}

.legal-toc a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-toc a:hover {
    color: var(--accent-light);
}

/* ===== Dual Audience Section (Personalvermittlung) ===== */
.dual-audience {
    padding: 140px 0;
    background: var(--bg-secondary);
    position: relative;
}

.dual-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.dual-audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.audience-card {
    padding: 48px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.audience-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.08);
}

.audience-card:hover::before {
    transform: scaleX(1);
}

.audience-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    color: var(--accent-light);
    transition: all 0.3s ease;
}

.audience-card:hover .audience-icon {
    background: var(--accent);
    color: var(--bg-primary);
}

.audience-icon svg {
    width: 28px;
    height: 28px;
}

.audience-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.audience-card > p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.audience-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.audience-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.audience-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.dual-audience-grid [data-aos]:nth-child(1) { transition-delay: 0.05s; }
.dual-audience-grid [data-aos]:nth-child(2) { transition-delay: 0.15s; }

/* Subpage Responsive */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .dual-audience-grid {
        grid-template-columns: 1fr;
    }
}

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

    .subpage .hero {
        min-height: 60vh;
    }

    .legal-hero {
        min-height: 35vh;
    }

    .legal-content {
        padding: 0;
    }

    .legal-toc {
        padding: 24px;
    }

    .audience-card {
        padding: 36px 28px;
    }
}
