/* ================================================================
   MED ASIDE — Enterprise Design System
   Medicare Set-Aside Administration & Compliance
   ================================================================ */

/* ---- Custom Properties ---- */
:root {
    /* Brand Palette — Light Blue */
    --navy-900: #14365a;
    --navy-800: #1a4a7a;
    --navy-700: #225d93;
    --navy-600: #2a70ab;
    --navy-500: #3a84be;
    --charcoal: #173f67;
    --slate-900: #123358;

    /* Accent Colors */
    --gold: #c9a84c;
    --gold-light: #dfc06a;
    --gold-dark: #a88a3a;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --teal: #00b4d8;
    --teal-light: #48cae4;
    --teal-dark: #0096b7;
    --teal-glow: rgba(0, 180, 216, 0.1);
    --emerald: #10b981;
    --coral: #f97066;

    /* Text */
    --text-white: #ffffff;
    --text-100: #e2e8f0;
    --text-200: #cbd5e1;
    --text-300: #94a3b8;
    --text-400: #64748b;
    --text-500: #475569;

    /* Surfaces */
    --glass: rgba(255, 255, 255, 0.03);
    --glass-light: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-pad: 7rem 0;
    --section-pad-sm: 5rem 0;
    --container-max: 1240px;
    --container-narrow: 900px;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.25);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.35);
    --shadow-gold: 0 4px 30px rgba(201,168,76,0.15);
    --shadow-teal: 0 4px 30px rgba(0,180,216,0.1);

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast: 0.2s;
    --t-med: 0.4s;
    --t-slow: 0.6s;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--navy-800);
    color: var(--text-200);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

p { margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: color var(--t-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font-body); }

/* ---- Layout ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- Utility Classes ---- */
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-muted { color: var(--text-300); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.gradient-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--teal-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-label--center {
    justify-content: center;
    padding-left: 0;
}

.section-label--center::before { display: none; }

.section-label--center::after {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-300);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all var(--t-med) var(--ease-out);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-med) var(--ease-out);
    z-index: 0;
}

.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--navy-900); }
.btn span, .btn i { position: relative; z-index: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-900);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-primary::before { background: var(--text-white); }
.btn-primary:hover { color: var(--navy-900); border-color: var(--text-white); }

.btn-teal {
    border-color: var(--teal);
    color: var(--teal);
}

.btn-teal::before { background: var(--teal); }
.btn-teal:hover { color: var(--navy-900); }

.btn-sm {
    padding: 10px 22px;
    font-size: 0.72rem;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 0.88rem;
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.25);
    color: var(--text-white);
}

.btn-outline-light::before { background: rgba(255,255,255,0.08); }
.btn-outline-light:hover { color: var(--text-white); border-color: var(--text-white); }

.btn-referral {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-900);
    border-color: var(--gold);
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}

/* ---- Badge / Tag ---- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 100px;
    background: var(--gold-glow);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.2);
}

.badge-teal {
    background: var(--teal-glow);
    color: var(--teal);
    border-color: rgba(0,180,216,0.2);
}

/* ---- Top Bar ---- */
.top-bar {
    background: var(--navy-900);
    padding: 10px 0;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    color: var(--text-400);
}

.top-bar-left a { color: var(--text-400); }
.top-bar-left a:hover { color: var(--gold); }
.top-bar-left i { margin-right: 6px; font-size: 0.72rem; }
.top-bar-left span i { margin-right: 6px; font-size: 0.72rem; }

.top-bar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-right a { color: var(--text-400); font-weight: 500; }
.top-bar-right a:hover { color: var(--gold); }

.portal-btn {
    background: var(--gold-glow);
    padding: 5px 16px;
    border-radius: var(--radius-sm);
    color: var(--gold) !important;
    font-weight: 600;
    border: 1px solid rgba(201,168,76,0.25);
    transition: all var(--t-fast);
}

.portal-btn:hover {
    background: var(--gold);
    color: var(--navy-900) !important;
}

/* ---- Header / Navigation ---- */
header {
    background: rgba(26, 74, 122, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--t-med);
}

header.scrolled {
    background: rgba(26, 74, 122, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: 50px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--text-white);
    letter-spacing: 0.5px;
    line-height: 1.15;
    font-weight: 600;
}

.logo-text small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-top: 2px;
}

/* Main Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
    display: block;
    padding: 1rem 1.15rem;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-200);
    transition: color var(--t-fast);
    position: relative;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    transition: width var(--t-med) var(--ease-out);
}

.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); }

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }

/* Dropdowns */
.nav-links > li > .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: rgba(20, 54, 90, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--t-med) var(--ease-out);
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.nav-links > li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-300);
    border-left: 2px solid transparent;
    transition: all var(--t-fast);
}

.dropdown a:hover {
    color: var(--gold);
    background: rgba(201,168,76,0.04);
    border-left-color: var(--gold);
}

.has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 6px;
    opacity: 0.5;
    vertical-align: middle;
}

.nav-cta { margin-left: 1.5rem; }

.mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--t-fast);
}

.mobile-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(20, 54, 90, 0.92), rgba(26, 74, 122, 0.8)), url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(transparent, var(--navy-800));
    pointer-events: none;
}

/* Floating grid lines decoration */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.hero-content { animation: heroFadeIn 1s var(--ease-out) both; }

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.12;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    position: relative;
    display: inline;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-200);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.85;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--glass-border);
}

.hero-stat h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
}

.hero-stat h3 .counter-gold { color: var(--gold); }
.hero-stat h3 .counter-teal { color: var(--teal); }

.hero-stat p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-400);
    margin: 0;
}

/* Hero Sidebar Cards */
.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    animation: heroCardsIn 1s var(--ease-out) 0.3s both;
}

@keyframes heroCardsIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 1.75rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--t-med) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--gold), var(--teal));
    transition: height var(--t-med) var(--ease-out);
}

.hero-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hero-card:hover::before { height: 100%; }

.hero-card h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.hero-card h4 i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.9rem;
}

.hero-card p {
    font-size: 0.88rem;
    color: var(--text-300);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-card-link {
    font-size: 0.78rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--t-fast);
}

.hero-card:hover .hero-card-link { gap: 14px; }

/* ---- Services Section ---- */
.services-section {
    padding: var(--section-pad);
    background: var(--slate-900);
    position: relative;
}

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

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    transition: all var(--t-med) var(--ease-out);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    transform: scaleX(0);
    transition: transform var(--t-med) var(--ease-out);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,168,76,0.2);
    box-shadow: var(--shadow-xl);
    background: var(--glass-light);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-glow);
    border: 1px solid rgba(201,168,76,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--gold);
    border-radius: var(--radius-md);
    transition: all var(--t-med) var(--ease-out);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--navy-900);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.service-card p {
    color: var(--text-300);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link .arrow {
    transition: transform var(--t-fast);
    display: inline-block;
}

.service-card:hover .service-link .arrow { transform: translateX(6px); }

/* ---- Trust / Stats Band ---- */
.trust-band {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.trust-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 30h60M30 0v60' stroke='rgba(0,0,0,0.06)' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.trust-item h3 {
    font-size: 3rem;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: var(--font-body);
}

.trust-item p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(26, 74, 122, 0.6);
}

/* ---- Why Choose Us ---- */
.why-section {
    padding: var(--section-pad);
    background: var(--navy-800);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.why-list { margin-top: 2rem; }

.why-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.25rem;
    padding: 1.2rem;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--t-fast);
}

.why-item:hover {
    border-color: var(--glass-border);
    background: var(--glass);
}

.why-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

.why-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.why-item p {
    font-size: 0.88rem;
    color: var(--text-300);
    margin: 0;
    line-height: 1.6;
}

/* ---- Process / How It Works ---- */
.process-section {
    padding: var(--section-pad);
    background: var(--slate-900);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    opacity: 0.3;
}

.process-step {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.process-number {
    width: 56px;
    height: 56px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
    margin: 0 auto 1.5rem;
    background: var(--slate-900);
    position: relative;
    z-index: 1;
    transition: all var(--t-med) var(--ease-out);
}

.process-step:hover .process-number {
    background: var(--gold);
    color: var(--navy-900);
    box-shadow: var(--shadow-gold);
}

.process-step h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-300);
    line-height: 1.6;
}

/* ---- Testimonials ---- */
.testimonials-section {
    padding: var(--section-pad);
    background: var(--navy-800);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2.25rem;
    border-radius: var(--radius-md);
    position: relative;
    transition: all var(--t-med) var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-200);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.75;
    position: relative;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-white);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--gold);
    margin-top: 2px;
}

/* ---- Partners / Certifications ---- */
.partners-section {
    padding: 4rem 0;
    background: var(--navy-900);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.partners-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-400);
    margin-bottom: 2rem;
}

.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-400);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity var(--t-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-logo:hover { opacity: 1; }
.partner-logo i { font-size: 1.5rem; }

/* ---- Resources / News ---- */
.resources-section {
    padding: var(--section-pad);
    background: var(--slate-900);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.resource-card {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--t-med) var(--ease-out);
    display: block;
    cursor: pointer;
    background: var(--glass);
}

.resource-card:hover {
    border-color: rgba(201,168,76,0.2);
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.resource-thumb {
    height: 180px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.4;
    position: relative;
    overflow: hidden;
}

.resource-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(26, 74, 122, 0.8));
}

.resource-body { padding: 1.5rem; }

.resource-tag {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 0.5rem;
    display: inline-block;
    font-weight: 600;
}

.resource-body h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.4;
}

.resource-body p {
    font-size: 0.85rem;
    color: var(--text-300);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.resource-link {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ---- CTA Band ---- */
.cta-band {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    text-align: center;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-band h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    position: relative;
}

.cta-band p {
    color: var(--text-300);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ---- FAQ Section ---- */
.faq-section {
    padding: var(--section-pad);
    background: var(--navy-800);
}

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

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--t-fast);
}

.faq-item:hover { border-color: var(--glass-border-hover); }

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--glass);
    border: none;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--t-fast);
}

.faq-question:hover { background: var(--glass-light); }

.faq-question i {
    color: var(--gold);
    transition: transform var(--t-fast);
    font-size: 0.85rem;
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-med) var(--ease-out);
}

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

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-300);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ---- Footer ---- */
footer {
    background: var(--navy-900);
    padding: 5rem 0 2rem;
    border-top: 2px solid var(--gold);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.footer-about p {
    color: var(--text-300);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-400);
    transition: all var(--t-fast);
    font-size: 0.85rem;
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

.footer-col ul li { margin-bottom: 0.65rem; }

.footer-col ul li a {
    color: var(--text-300);
    font-size: 0.88rem;
    transition: all var(--t-fast);
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.footer-col ul li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--t-fast);
    margin-right: 0;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col ul li a:hover::before {
    width: 12px;
    margin-right: 8px;
}

.footer-contact p {
    color: var(--text-300);
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact .icon {
    color: var(--gold);
    font-size: 0.82rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-400);
    font-size: 0.78rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a { color: var(--text-400); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---- Page Header (inner pages) ---- */
.page-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, rgba(20, 54, 90, 0.94), rgba(26, 74, 122, 0.88)), url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, var(--navy-800));
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: var(--text-300);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 0.82rem;
    color: var(--text-400);
    position: relative;
    z-index: 1;
}

.breadcrumb a { color: var(--gold); }

/* ---- Forms ---- */
.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-200);
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all var(--t-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0,0,0,0.4);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-control::placeholder { color: var(--text-400); }

select.form-control {
    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='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-section-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
    margin-top: 2rem;
}

.form-section-title:first-of-type { margin-top: 0; }

/* ---- Contact Page ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    padding: 5rem 0;
}

.contact-sidebar h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-sidebar > p {
    color: var(--text-300);
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--t-fast);
}

.contact-item:hover { border-color: var(--gold); }

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-glow);
    border: 1px solid rgba(201,168,76,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p { color: var(--text-200); font-size: 0.95rem; margin: 0; }
.contact-item a { color: var(--gold); }

.contact-form-box {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.contact-form-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-form-box > p {
    color: var(--text-300);
    margin-bottom: 2rem;
    font-size: 0.92rem;
}

/* Map */
.map-section {
    background: var(--slate-900);
    padding: 0;
}

.map-embed {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(80%) contrast(1.1);
    opacity: 0.75;
}

/* ---- Referral Page ---- */
.referral-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    padding: 5rem 0;
}

.referral-form-box {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.referral-form-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.referral-form-box > p {
    color: var(--text-300);
    margin-bottom: 2rem;
}

.referral-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.referral-info-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    transition: border-color var(--t-fast);
}

.referral-info-card:hover { border-color: var(--glass-border-hover); }

.referral-info-card h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.referral-info-card h4 i { margin-right: 6px; }

.referral-info-card p {
    color: var(--text-300);
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.referral-info-card ul { margin-top: 0.5rem; }

.referral-info-card li {
    color: var(--text-200);
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
    padding-left: 18px;
    position: relative;
}

.referral-info-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.file-upload {
    border: 2px dashed var(--glass-border);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--t-fast);
    background: rgba(0,0,0,0.15);
    border-radius: var(--radius-md);
}

.file-upload:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.02);
}

.file-upload i {
    font-size: 2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.file-upload p {
    color: var(--text-400);
    font-size: 0.85rem;
    margin: 0;
}

/* ---- Portal Page ---- */
.portal-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--slate-900) 100%);
    position: relative;
}

.portal-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/hero.png') center/cover no-repeat;
    opacity: 0.04;
}

.portal-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
}

.portal-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.portal-logo img {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-md);
    margin: 0 auto 1rem;
}

.portal-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.portal-logo p {
    color: var(--text-300);
    font-size: 0.9rem;
}

.portal-tabs {
    display: flex;
    border-bottom: 2px solid var(--glass-border);
    margin-bottom: 0;
}

.portal-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.78rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-400);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--t-fast);
    font-family: var(--font-body);
}

.portal-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.portal-tab:hover { color: var(--gold); }

.portal-box {
    background: rgba(26, 74, 122, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.portal-tab-content { display: none; }
.portal-tab-content.active { display: block; }

.remember-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.remember-row label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-300);
    cursor: pointer;
}

.remember-row label input { accent-color: var(--gold); }
.remember-row a { color: var(--gold); font-size: 0.85rem; }

.portal-help {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-400);
    font-size: 0.85rem;
}

.portal-help a { color: var(--gold); }

.portal-features {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.portal-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 0.85rem;
}

.portal-feature i {
    color: var(--teal);
    font-size: 0.85rem;
    margin-top: 3px;
}

.portal-feature span {
    color: var(--text-300);
    font-size: 0.85rem;
}

/* ---- Service Detail (services page) ---- */
.service-detail {
    padding: 5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.service-detail:nth-child(even) { background: var(--slate-900); }

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid { direction: rtl; }
.service-detail:nth-child(even) .service-detail-grid > * { direction: ltr; }

.service-detail h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-detail p {
    color: var(--text-300);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.service-features { margin: 1.5rem 0; }

.service-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: var(--text-200);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--teal);
    margin-top: 4px;
    flex-shrink: 0;
}

.service-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-visual-box {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--glass), rgba(201,168,76,0.03));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.25;
}

/* ---- Scroll Animations ---- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-sidebar { display: none; }
    .hero h1 { font-size: 2.8rem; }

    .services-grid,
    .testimonials-grid,
    .resources-grid { grid-template-columns: 1fr 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }

    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .process-grid::before { display: none; }
}

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

    .top-bar { display: none; }

    .mobile-toggle { display: flex; align-items: center; justify-content: center; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(20, 54, 90, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--glass-border);
        flex-direction: column;
        padding: 1rem 0;
    }

    .main-nav.open { display: flex; }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-links > li > a { padding: 1rem 2rem; }

    .nav-links > li > .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.3);
        min-width: 100%;
        border-radius: 0;
        box-shadow: none;
    }

    .nav-cta { margin: 1rem 2rem; }

    .hero { min-height: auto; padding: 6rem 0 4rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }

    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }

    .services-grid,
    .testimonials-grid,
    .resources-grid { grid-template-columns: 1fr; }

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

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }

    .section-header h2 { font-size: 2rem; }
    .cta-band h2 { font-size: 2rem; }

    .form-row { grid-template-columns: 1fr; }

    .page-header { padding: 8rem 0 3rem; }
    .page-header h1 { font-size: 2.2rem; }

    .contact-grid { grid-template-columns: 1fr; padding: 3rem 0; }
    .referral-layout { grid-template-columns: 1fr; }

    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail:nth-child(even) .service-detail-grid { direction: ltr; }
    .service-visual { display: none; }

    .why-image { display: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.85rem; }
    .hero-stats { gap: 1rem; }
    .hero-stat h3 { font-size: 1.8rem; }
    .btn { padding: 12px 24px; font-size: 0.75rem; }
    .btn-lg { padding: 14px 28px; }
    .trust-item h3 { font-size: 2.2rem; }
}

/* ---- Print ---- */
@media print {
    .top-bar, header, .hero-sidebar, .cta-band, footer { display: none; }
    body { background: white; color: #333; }
    h1, h2, h3, h4 { color: #111; }
    .text-gold { color: #996515; }
}
