/* ============================================================
   SIMPLIFY — MAIN STYLESHEET
   Design: Clean white base, bold accent colors, modern type
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
    /* Colors */
    --white:          #FFFFFF;
    --off-white:      #F8F9FA;
    --light-gray:     #F1F3F5;
    --mid-gray:       #DEE2E6;
    --text-muted:     #868E96;
    --text-body:      #343A40;
    --text-dark:      #1A1D23;

    /* Brand */
    --navy:           #0D1B2A;
    --navy-mid:       #1B2E45;
    --blue:           #0066CC;
    --blue-bright:    #0080FF;
    --blue-light:     #E8F2FF;
    --red:            #E63946;
    --red-dark:       #C1121F;
    --gold:           #F4A300;
    --gold-light:     #FFF3CD;

    /* Accent (primary CTA) */
    --accent:         #E63946;
    --accent-hover:   #C1121F;

    /* Typography */
    --font-display:   'Barlow Condensed', sans-serif;
    --font-body:      'Libre Franklin', sans-serif;
    --font-mono:      'Space Mono', monospace;

    /* Spacing */
    --space-xs:       0.25rem;
    --space-sm:       0.5rem;
    --space-md:       1rem;
    --space-lg:       1.5rem;
    --space-xl:       2rem;
    --space-2xl:      3rem;
    --space-3xl:      5rem;
    --space-4xl:      8rem;

    /* Layout */
    --container:      1280px;
    --container-sm:   900px;
    --radius:         4px;
    --radius-md:      8px;
    --radius-lg:      16px;

    /* Shadows */
    --shadow-sm:      0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md:      0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg:      0 8px 32px rgba(0,0,0,0.14);
    --shadow-xl:      0 20px 60px rgba(0,0,0,0.18);

    /* Transitions */
    --transition:     0.2s ease;
    --transition-md:  0.35s ease;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--space-xl);
}
.container--sm { max-width: var(--container-sm); }

.section {
    padding-block: var(--space-4xl);
}
.section--sm { padding-block: var(--space-3xl); }
.section--lg { padding-block: calc(var(--space-4xl) * 1.5); }

.section--white   { background: var(--white); }
.section--light   { background: var(--off-white); }
.section--navy    { background: var(--navy); color: var(--white); }
.section--navy-mid{ background: var(--navy-mid); color: var(--white); }
.section--blue    { background: var(--blue); color: var(--white); }
.section--accent  { background: var(--accent); color: var(--white); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: var(--space-sm);
}
.eyebrow--white { color: rgba(255,255,255,0.65); }
.eyebrow--gold  { color: var(--gold); }
.eyebrow--red   { color: var(--red); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy-mid h1,
.section--navy-mid h2,
.section--navy-mid h3 { color: var(--white); }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
}

.section-header {
    margin-bottom: var(--space-3xl);
}
.section-header--center { text-align: center; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1;
}
.btn--primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn--primary:hover {
    background: var(--navy-mid);
    border-color: var(--navy-mid);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn--accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn--accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(230,57,70,0.35);
}
.btn--blue {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn--blue:hover {
    background: var(--blue-bright);
    border-color: var(--blue-bright);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,102,204,0.35);
}
.btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
}
.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn--ghost {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--mid-gray);
}
.btn--ghost:hover {
    border-color: var(--text-body);
    color: var(--text-body);
}
.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }
.btn--lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
}

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
    background: var(--white);
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.card__body { padding: var(--space-xl); }
.card__title { margin-bottom: var(--space-sm); }
.card__text { color: var(--text-body); margin-bottom: var(--space-lg); }

/* ── GRID ────────────────────────────────────────────────────── */
.grid { display: grid; gap: var(--space-xl); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ── DIVIDER ─────────────────────────────────────────────────── */
.divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border: none;
    margin-block: var(--space-lg);
}
.divider--blue { background: var(--blue); }
.divider--gold { background: var(--gold); }
.divider--center { margin-inline: auto; }

/* ── BADGE ───────────────────────────────────────────────────── */
.badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 2px;
}
.badge--blue   { background: var(--blue-light); color: var(--blue); }
.badge--red    { background: #FFE8EA; color: var(--red); }
.badge--gold   { background: var(--gold-light); color: #7A5200; }
.badge--navy   { background: var(--navy); color: var(--white); }
.badge--dark   { background: var(--text-dark); color: var(--white); }

/* ── PULL QUOTE ──────────────────────────────────────────────── */
.pull-quote {
    border-left: 5px solid var(--accent);
    padding: var(--space-xl) var(--space-2xl);
    background: var(--off-white);
    margin-block: var(--space-2xl);
}
.pull-quote__text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark);
    line-height: 1.2;
}

/* ── STAT BLOCK ──────────────────────────────────────────────── */
.stat-block {
    text-align: center;
    padding: var(--space-xl);
}
.stat-block__number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    display: block;
}
.stat-block__label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* ── FEATURE LIST ────────────────────────────────────────────── */
.feature-list {
    display: grid;
    gap: var(--space-md);
}
.feature-list__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--light-gray);
}
.feature-list__item:last-child { border-bottom: none; }
.feature-list__icon {
    width: 36px;
    height: 36px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.feature-list__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}
.feature-list__desc { font-size: 0.9rem; color: var(--text-body); margin: 0; }

/* ── SPECS TABLE ─────────────────────────────────────────────── */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.specs-table th {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: left;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 2px solid var(--mid-gray);
}
.specs-table td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--light-gray);
    vertical-align: top;
}
.specs-table tr:last-child td { border-bottom: none; }
.specs-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 40%;
}
.specs-table tr:hover td { background: var(--off-white); }

/* ── ACCORDION / FAQ ─────────────────────────────────────────── */
.faq-item {
    border-bottom: 1px solid var(--mid-gray);
}
.faq-item:first-child { border-top: 1px solid var(--mid-gray); }
.faq-question {
    width: 100%;
    text-align: left;
    padding: var(--space-lg) 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    transition: color var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-question__icon {
    width: 24px;
    height: 24px;
    border: 2px solid var(--mid-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all var(--transition);
    color: var(--text-muted);
}
.faq-item.open .faq-question__icon {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-answer {
    display: none;
    padding-bottom: var(--space-lg);
    color: var(--text-body);
    line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── FORM ELEMENTS ───────────────────────────────────────────── */
.form-group { margin-bottom: var(--space-lg); }
.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}
.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--mid-gray);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text-dark);
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}
.form-control:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,102,204,0.12);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23868E96' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }

/* ── ALERT / NOTICE ──────────────────────────────────────────── */
.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius);
    border-left: 4px solid;
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
}
.alert--success { background: #E8F8F0; border-color: #2ECC71; color: #1A6B3C; }
.alert--error   { background: #FFE8EA; border-color: var(--red); color: var(--red-dark); }
.alert--info    { background: var(--blue-light); border-color: var(--blue); color: #003D7A; }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-block: var(--space-lg);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { color: var(--mid-gray); }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
    background: var(--navy);
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-3xl);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,102,204,0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: var(--space-md); }
.page-hero .lead { color: rgba(255,255,255,0.75); max-width: 640px; }
.page-hero .btn-group { margin-top: var(--space-xl); }

/* ── SECTION SPLIT ───────────────────────────────────────────── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__image {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--light-gray);
}
.split__image img { width: 100%; height: 100%; object-fit: cover; }

/* ── IMAGE PLACEHOLDER ───────────────────────────────────────── */
.img-placeholder {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--mid-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
}

/* ── UTILITY ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-white  { color: var(--white) !important; }
.text-blue   { color: var(--blue) !important; }
.text-red    { color: var(--red) !important; }
.text-muted  { color: var(--text-muted) !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-lg { margin-top: var(--space-lg) !important; }
.mb-lg { margin-bottom: var(--space-lg) !important; }
.mt-xl { margin-top: var(--space-xl) !important; }
.mb-xl { margin-bottom: var(--space-xl) !important; }
.mt-2xl { margin-top: var(--space-2xl) !important; }
.mb-2xl { margin-bottom: var(--space-2xl) !important; }
.visually-hidden {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
