/* ============================================
   IRION & SONS - FLORIDA CONSTRUCTION INSURANCE
   Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    /* Colors — Irion & Sons Brand */
    --primary: #2B2B2B;
    --secondary: #000000;
    --accent: #2B2B2B;
    --gold: #F4B84C;
    --gold-light: #FACA7A;
    --gold-hover: #E0A438;
    --success: #16A34A;
    --error: #DC2626;
    --text-dark: #000000;
    --text-secondary: #4A4A4A;
    --border: #E5E5E5;
    --bg-light: #F5F5F5;
    --white: #FFFFFF;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 80px;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;

    /* Z-index layers */
    --z-header: 100;
    --z-mobile-cta: 90;
    --z-dropdown: 80;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 48px;
    font-weight: 800;
}

h2 {
    font-size: 36px;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: scale(1.02);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.btn-secondary-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.btn-text {
    background: transparent;
    color: var(--white);
    padding: 14px 16px;
}

.btn-text:hover {
    color: var(--gold-light);
}

.btn-text-light {
    background: transparent;
    color: rgba(255,255,255,0.9);
    padding: 14px 16px;
}

.btn-text-light:hover {
    color: var(--gold-light);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 17px;
}

.btn-block {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all var(--transition-medium);
}

.header.scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
}

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

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

/* Navigation */
.nav {
    display: none;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
}

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

.dropdown-arrow {
    transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: var(--z-dropdown);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--accent);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-link {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

.phone-link:hover {
    color: var(--accent);
}

.header-cta {
    padding: 10px 24px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--transition-fast);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    background-image: url('blueprint-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-top: 72px;
}

/* Dark overlay for text contrast over blueprint */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 1;
    pointer-events: none;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* Blueprint canvas fills the hero background */

/* Hero Split Layout */
.hero-split {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-max);
    padding: 40px 24px;
    gap: 48px;
}

/* Hero Content — left side */
.hero-content {
    flex: 1;
    text-align: left;
    max-width: 580px;
}

/* Hero Logo — right side */
.hero-logo-side {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-logo-svg {
    width: 180px;
    height: auto;
    display: block;
}

.hero-badge {
    display: inline-block;
    background: none;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0;
    margin-bottom: 24px;
    border: none;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    min-height: 1.2em;
}

.hero-title .cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--gold);
    margin-left: 4px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 0;
}

.trust-bar-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 24px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.trust-stat {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.trust-plus {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.trust-label {
    color: rgba(255,255,255,0.9);
}

.trust-text {
    color: rgba(255,255,255,0.9);
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.2);
    display: none;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.section-problem {
    background: var(--bg-light);
}

.problem-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.problem-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: all var(--transition-medium);
}

.problem-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.problem-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(220, 38, 38, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--error);
}

.problem-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.problem-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   GUIDE SECTION
   ============================================ */
.section-guide {
    background: var(--white);
}

.guide-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.guide-image-wrapper {
    position: relative;
}

.guide-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    object-fit: cover;
}

.guide-content .section-label {
    text-align: left;
    display: block;
}

.guide-content .section-title {
    text-align: left;
}

.guide-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.guide-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.guide-stat {
    text-align: center;
}

.guide-stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.guide-stat-plus {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
}

.guide-stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.guide-stat-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

/* Testimonial */
.testimonial {
    background: var(--bg-light);
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 24px;
    margin-top: 24px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 12px;
}

.testimonial-author {
    font-style: normal;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ============================================
   TRADES SECTION
   ============================================ */
.section-trades {
    background: var(--bg-light);
}

.trade-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.trade-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: all var(--transition-medium);
}

.trade-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: var(--gold);
}

.trade-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
}

.trade-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.trade-list {
    margin-bottom: 24px;
}

.trade-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.trade-list li svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 3px;
}

.trade-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--transition-fast);
}

.trade-link:hover {
    gap: 12px;
}

/* ============================================
   PLAN SECTION
   ============================================ */
.section-plan {
    background: var(--white);
}

.plan-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.plan-step {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    padding-left: 100px;
    transition: all var(--transition-medium);
}

.plan-step:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.plan-step-number {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(43, 43, 43, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent);
}

.plan-step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.plan-step-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.plan-connector {
    display: none;
}

.plan-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   COVERAGES SECTION
   ============================================ */
.section-coverages {
    background: var(--bg-light);
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.coverage-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: all var(--transition-medium);
}

.coverage-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: var(--accent);
}

.coverage-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

.coverage-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.coverage-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.coverage-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--transition-fast);
}

.coverage-card:hover .coverage-link {
    gap: 10px;
}

/* ============================================
   LEAD MAGNET SECTION
   ============================================ */
.section-lead-magnet {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
}

.lead-magnet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.lead-magnet-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.lead-magnet-text {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 24px;
}

.lead-magnet-features {
    display: grid;
    gap: 12px;
}

.lead-magnet-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
}

.lead-magnet-features li svg {
    color: var(--gold-light);
    flex-shrink: 0;
}

.lead-magnet-form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
}

.lead-magnet-form .form-group {
    margin-bottom: 16px;
}

.lead-magnet-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.lead-magnet-form input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.lead-magnet-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(43,43,43,0.1);
}

.lead-magnet-form .btn {
    width: 100%;
}

.form-privacy {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 12px;
}

.checklist-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
}

.checklist-preview svg {
    color: var(--gold);
}

.checklist-preview span {
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.section-final-cta {
    background: var(--primary);
    padding: 100px 0;
}

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta-text {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 32px;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.final-cta-microcopy {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-top: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1A1A1A;
    color: var(--white);
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin: 0 auto 16px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-light);
    transition: color var(--transition-fast);
}

.footer-phone:hover {
    color: var(--gold);
}

.footer-column {
    text-align: center;
}

.footer-heading {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-license {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 12px 16px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: var(--z-mobile-cta);
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.mobile-cta-bar.visible {
    transform: translateY(0);
}

.mobile-cta-bar .btn {
    padding: 14px;
}

/* ============================================
   ANIMATIONS - Fade In
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Fallback: make content visible if JS hasn't loaded after 3s */
@keyframes fade-in-fallback {
    to {
        opacity: 1;
        transform: none;
    }
}

.fade-in {
    animation: fade-in-fallback 0s ease 3s forwards;
}

/* Staggered animation delays for cards */
.problem-cards .fade-in:nth-child(1) { transition-delay: 0.1s; }
.problem-cards .fade-in:nth-child(2) { transition-delay: 0.2s; }
.problem-cards .fade-in:nth-child(3) { transition-delay: 0.3s; }
.problem-cards .fade-in:nth-child(4) { transition-delay: 0.4s; }

.trade-cards .fade-in:nth-child(1) { transition-delay: 0.1s; }
.trade-cards .fade-in:nth-child(2) { transition-delay: 0.2s; }
.trade-cards .fade-in:nth-child(3) { transition-delay: 0.3s; }

.coverage-grid .fade-in:nth-child(1) { transition-delay: 0.05s; }
.coverage-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.coverage-grid .fade-in:nth-child(3) { transition-delay: 0.15s; }
.coverage-grid .fade-in:nth-child(4) { transition-delay: 0.2s; }
.coverage-grid .fade-in:nth-child(5) { transition-delay: 0.25s; }
.coverage-grid .fade-in:nth-child(6) { transition-delay: 0.3s; }

.plan-steps .fade-in:nth-child(1) { transition-delay: 0.1s; }
.plan-steps .fade-in:nth-child(3) { transition-delay: 0.2s; }
.plan-steps .fade-in:nth-child(5) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE - Tablet (768px+)
   ============================================ */
@media (max-width: 767px) {
    .hero-split {
        flex-direction: column-reverse;
        text-align: center;
        gap: 32px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-logo-side {
        justify-content: center;
    }

    .hero-logo-svg {
        width: 120px;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 768px) {
    .hero-ctas {
        justify-content: flex-start;
    }

    .trust-divider {
        display: block;
    }

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

    .guide-grid {
        grid-template-columns: 1fr 1.2fr;
    }

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

    .plan-steps {
        flex-direction: row;
        gap: 0;
        align-items: flex-start;
    }

    .plan-step {
        flex: 1;
        padding: 32px 24px;
        padding-left: 24px;
        text-align: center;
    }

    .plan-step-number {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 20px;
    }

    .plan-connector {
        display: block;
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--accent));
        margin-top: 60px;
        flex-shrink: 0;
    }

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

    .lead-magnet-grid {
        grid-template-columns: 1fr 1fr;
    }

    .final-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-logo {
        margin: 0 0 16px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ============================================
   RESPONSIVE - Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .nav {
        display: block;
    }

    .phone-link {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .mobile-cta-bar {
        display: none;
    }

    .hero-title {
        font-size: 56px;
    }

    .section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 42px;
    }

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

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

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

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
@media (max-width: 1023px) {
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 24px;
        transform: translateX(100%);
        transition: transform var(--transition-medium);
        overflow-y: auto;
        z-index: var(--z-header);
    }

    .nav.open {
        transform: translateX(0);
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-item {
        border-bottom: 1px solid var(--border);
    }

    .nav-link {
        display: flex;
        justify-content: space-between;
        padding: 16px 0;
        font-size: 18px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0 0 16px 24px;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 12px 0;
    }
}

/* Small Mobile (< 375px) */
@media (max-width: 374px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .guide-stat-value {
        font-size: 28px;
    }

    .guide-stat-plus {
        font-size: 28px;
    }
}

/* Add padding for mobile sticky CTA when visible */
body.mobile-cta-visible {
    padding-bottom: 70px;
}

@media (min-width: 1024px) {
    body.mobile-cta-visible {
        padding-bottom: 0;
    }
}
