/* ============================================================
   EvoCat — Dark Luxury Stylesheet
   Theme: near-black · warm white · indigo brand
   ============================================================ */

/* ── Variables ── */
:root {
    /* Backgrounds */
    --bg-base:     #000000;
    --bg-surface:  #0A0A0D;
    --bg-card:     #111116;
    --bg-elevated: #18181F;

    /* Borders */
    --border:        rgba(255, 255, 255, 0.07);
    --border-strong: rgba(255, 255, 255, 0.13);

    /* Text */
    --text-primary:   #F0EDE7;
    --text-secondary: #888898;
    --text-muted:     #48475A;

    /* Accent */
    --brand:    #5C70CB;
    --brand-dim: rgba(92, 112, 203, 0.10);

    /* Cat accents */
    --iron: #8B9BB0;
    --buff: #D4845A;
    --sage: #6BA880;
    --zen:  #7B9EC8;

    /* Layout */
    --max-w:     1080px;
    --section-v: 7rem;
    --section-sm: 4.5rem;

    /* Type */
    --font: ui-rounded, 'SF Pro Rounded', -apple-system, BlinkMacSystemFont,
            'Segoe UI', Roboto, sans-serif;

    /* Radius */
    --r:    14px;
    --r-sm: 8px;
    --r-lg: 22px;

    /* Motion */
    --ease: 0.22s ease;
}

/* ── Reset ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 19px;
    line-height: 1.65;
    font-weight: 400;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }

/* ── Container ── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ── Typography ── */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.8rem, 6.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.02em; }

p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.72;
}

/* ── Section header ── */
.section-header {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 4rem;
}

.section-header h2  { margin-bottom: 0.75rem; }
.section-header p   { font-size: 1rem; }

.section-eyebrow {
    display: inline-block;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.9rem;
}

/* ── Scroll animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in--delay { transition-delay: 0.18s; }
.fade-in.visible { opacity: 1; transform: none; }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: none; }


/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    background-color: rgba(12, 12, 15, 0.80);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo { border-radius: 7px; }

.nav-brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 auto;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--ease);
}

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

.nav-cta {
    display: inline-block;
    background-color: var(--text-primary);
    color: var(--bg-base);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--ease), transform var(--ease);
    flex-shrink: 0;
    letter-spacing: -0.01em;
}

.nav-cta:hover {
    background-color: var(--brand);
    transform: translateY(-1px);
}

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

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.28s ease;
}

.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
    display: inline-block;
    padding: 0.85rem 1.9rem;
    border-radius: 100px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: background-color var(--ease), transform var(--ease), box-shadow var(--ease);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-base);
}

.btn-primary:hover {
    background-color: var(--brand);
    color: var(--bg-base);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(92, 112, 203, 0.28);
}

.btn-full  { width: 100%; text-align: center; display: block; }
.btn-large { padding: 1.05rem 2.4rem; font-size: 1rem; }


/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
    padding-top: 130px;
    padding-bottom: var(--section-v);
    position: relative;
    overflow: hidden;
}

/* Ambient glow — top right */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 155, 176, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-label {
    display: inline-block;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-headline {
    margin-bottom: 1.1rem;
    line-height: 1.06;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-weight: 400;
}

.hero-micro {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-secondary-link {
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color var(--ease);
    white-space: nowrap;
}

.hero-secondary-link:hover { color: var(--text-primary); }

/* ── Hero visual ── */
.hero-visual {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone-wrap {
    position: relative;
    display: inline-block;
}

/* Phone image: height-driven so the hand/phone proportions are never squished */
.hero-phone-img {
    height: 400px;
    width: auto;
    display: block;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.7))
            drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
}

.hero-phone-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 50px;
    background: radial-gradient(ellipse, rgba(139, 155, 176, 0.18), transparent);
    filter: blur(24px);
    z-index: -1;
}


/* ═══════════════════════════════════════════
   PROBLEM STATEMENT
═══════════════════════════════════════════ */
.problem-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    background-color: var(--bg-surface);
}

.problem-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.problem-stat {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.problem-body {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}


/* ═══════════════════════════════════════════
   IRONCAT SECTION — DOMINANT
═══════════════════════════════════════════ */
.ironcat-section {
    padding: var(--section-v) 0;
    background-color: var(--bg-base);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

/* Full-section background glow — iron/steel atmosphere */
.ironcat-glow-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 25% 55%, rgba(139, 155, 176, 0.09) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(100, 115, 140, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.ironcat-inner {
    display: flex;
    align-items: center;
    gap: 6rem;
    position: relative;
    z-index: 1;
}

/* ── Cat visual ── */
.ironcat-visual {
    flex: 0 0 auto;
}

.ironcat-img-wrap {
    position: relative;
    display: inline-block;
}

/* Drive size by height — width follows the image's natural aspect ratio */
.ironcat-img {
    height: 400px;
    width: auto;
    display: block;
    filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.75))
            drop-shadow(0 0 40px rgba(139, 155, 176, 0.12));
}

/* Glow halo under/around the cat */
.ironcat-img-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 80px;
    background: radial-gradient(ellipse, rgba(139, 155, 176, 0.30), transparent);
    filter: blur(30px);
    z-index: -1;
}

/* ── Content ── */
.ironcat-content { flex: 1; }

.ironcat-eyebrow {
    display: inline-block;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--iron);
    border: 1px solid rgba(139, 155, 176, 0.25);
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1.4rem;
}

.ironcat-headline {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin-bottom: 2rem;
    line-height: 1.1;
}

/* Rules list — styled as hard statements, not prose */
.ironcat-rules {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.25rem;
    border-top: 1px solid var(--border);
}

.ironcat-rules li {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.015em;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    line-height: 1.4;
}

.ironcat-rules li::before {
    content: '—  ';
    color: var(--iron);
    font-weight: 400;
}

.ironcat-closer {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.55;
}


/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-section {
    padding: var(--section-v) 0;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.step-card {
    background-color: var(--bg-card);
    padding: 2.5rem 2rem;
    transition: background-color var(--ease);
}

.step-card:hover { background-color: var(--bg-elevated); }

.step-number {
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-variant-numeric: tabular-nums;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

.step-card p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-secondary);
}


/* ═══════════════════════════════════════════
   CHOOSE YOUR CAT
═══════════════════════════════════════════ */
.cats-section {
    padding: var(--section-v) 0;
}

.cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.cat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 0 1.5rem 1.75rem;
    transition: border-color var(--ease), transform var(--ease), background-color var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* ── Cat illustration image ── */
.cat-card-img {
    height: 190px;
    margin: 0 -1.5rem 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: var(--r) var(--r) 0 0;
    overflow: hidden;
    position: relative;
}

.cat-card-img img {
    height: 170px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.45));
    position: relative;
    z-index: 1;
}

/* Tinted bg per cat */
.cat-card--iron .cat-card-img { background: radial-gradient(ellipse 90% 80% at 50% 100%, rgba(139,155,176,0.14) 0%, transparent 70%); }
.cat-card--buff .cat-card-img { background: radial-gradient(ellipse 90% 80% at 50% 100%, rgba(212,132, 90,0.13) 0%, transparent 70%); }
.cat-card--sage .cat-card-img { background: radial-gradient(ellipse 90% 80% at 50% 100%, rgba(107,168,128,0.13) 0%, transparent 70%); }
.cat-card--zen  .cat-card-img { background: radial-gradient(ellipse 90% 80% at 50% 100%, rgba(123,158,200,0.13) 0%, transparent 70%); }

.cat-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    background-color: var(--bg-elevated);
}

/* IronCat — featured */
.cat-card--featured {
    border-color: rgba(139, 155, 176, 0.28);
    background-color: var(--bg-elevated);
}

.cat-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--iron), transparent 70%);
}

.cat-card-header {
    margin-bottom: 1.1rem;
}

.cat-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.cat-badge {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background-color: rgba(139, 155, 176, 0.10);
    color: var(--iron);
    padding: 0.22rem 0.55rem;
    border-radius: 100px;
}

.cat-name {
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
}

.cat-style-label {
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.cat-card--iron .cat-style-label { color: var(--iron); }
.cat-card--buff .cat-style-label { color: var(--buff); }
.cat-card--sage .cat-style-label { color: var(--sage); }
.cat-card--zen  .cat-style-label { color: var(--zen);  }

.cat-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.4rem;
    flex: 1;
}

.cat-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.trait {
    font-size: 0.86rem;
    font-weight: 500;
    padding: 0.22rem 0.55rem;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border: 1px solid var(--border);
}


/* ═══════════════════════════════════════════
   SCHEDULES
═══════════════════════════════════════════ */
.schedules-section {
    padding: var(--section-v) 0;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.schedules-inner {
    max-width: 600px;
    margin: 0 auto;
}

.schedules-content .section-eyebrow { display: block; }

.schedules-content h2 { margin: 0.8rem 0 1.4rem; }

.schedules-content > p {
    font-size: 1rem;
    margin-bottom: 1.1rem;
    line-height: 1.72;
}

/* Highlighted pull quote */
.schedules-pull {
    font-size: 1.05rem !important;
    color: var(--text-primary) !important;
    font-weight: 500;
    border-left: 2px solid var(--brand);
    padding-left: 1.25rem;
    margin: 2rem 0 !important;
    line-height: 1.6 !important;
}

.schedules-detail {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.schedule-point {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}

.schedule-icon {
    color: var(--brand);
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.4;
}

.schedule-point strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
}

.schedule-point span {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* ═══════════════════════════════════════════
   CONTROL
═══════════════════════════════════════════ */
.control-section {
    padding: var(--section-v) 0;
}

.control-section .section-header { margin-bottom: 3rem; }

.control-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.control-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 2.25rem 2rem;
    transition: border-color var(--ease);
}

.control-card:hover { border-color: var(--border-strong); }

.control-card--weighted {
    background-color: var(--bg-elevated);
    border-color: rgba(255, 255, 255, 0.09);
}

.control-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}

.control-card p {
    font-size: 0.9rem;
    line-height: 1.65;
}


/* ═══════════════════════════════════════════
   PRIVACY
═══════════════════════════════════════════ */
.privacy-section {
    padding: 3.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background-color: var(--bg-surface);
}

.privacy-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    max-width: 620px;
    margin: 0 auto;
}

.privacy-icon {
    flex-shrink: 0;
    color: var(--brand);
    opacity: 0.7;
    margin-top: 2px;
}

.privacy-text { flex: 1; }

.privacy-statement {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.72;
}


/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-section {
    padding: var(--section-v) 0;
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 660px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background-color: var(--border);
}

.faq-item { background-color: var(--bg-card); }

.faq-item summary {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background-color var(--ease);
    letter-spacing: -0.01em;
    line-height: 1.45;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-muted);
    flex-shrink: 0;
    line-height: 1;
}

.faq-item[open] summary::after  { content: '−'; }
.faq-item summary:hover         { background-color: var(--bg-elevated); }

.faq-item[open] summary {
    border-bottom: 1px solid var(--border);
    background-color: var(--bg-elevated);
}

.faq-body { padding: 1.25rem 1.5rem; }

.faq-body p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.72;
}


/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.final-cta-section {
    padding: var(--section-v) 0;
    background-color: var(--bg-base);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

/* Ambient glow */
.final-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 560px;
    height: 320px;
    background: radial-gradient(ellipse, rgba(139, 155, 176, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.final-cta-inner {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.final-cta-cat {
    width: 68px;
    height: 68px;
    object-fit: contain;
    margin: 0 auto 1.75rem;
    opacity: 0.75;
}

.final-cta-headline {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.final-cta-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    line-height: 1.6;
}


/* ═══════════════════════════════════════════
   BLOG / RESOURCES SECTION
═══════════════════════════════════════════ */
.blog-section {
    padding: var(--section-v) 0;
    border-top: 1px solid var(--border);
}

.blog-section .section-label {
    text-align: center;
    margin-bottom: 0.5rem;
}

.blog-section .section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

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

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color var(--ease), transform var(--ease);
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-3px);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.blog-card-category {
    color: var(--brand);
    font-weight: 600;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
}

.blog-card-excerpt {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.blog-card-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand);
    letter-spacing: 0.04em;
    margin-top: 0.25rem;
}


/* ═══════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════ */
.trust-strip {
    border-top: 1px solid var(--border);
    background-color: var(--bg-surface);
    text-align: center;
    padding: 1.1rem 2rem;
}

.trust-strip p {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin: 0;
    letter-spacing: 0.035em;
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
    padding: 3rem 0;
    background-color: var(--bg-surface);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.footer-logo { border-radius: 6px; opacity: 0.7; }

.footer-brand-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: -0.02em;
}

.footer-links,
.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 1.4rem;
}

.footer-links a,
.footer-social a {
    font-size: 0.92rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--ease);
    padding: 0.3rem 0;
}

.footer-links a:hover,
.footer-social a:hover { color: var(--text-secondary); }

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}


/* ═══════════════════════════════════════════
   RESPONSIVE — 1024px
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .cats-grid  { grid-template-columns: repeat(2, 1fr); }
    .blog-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 900px (tablet)
═══════════════════════════════════════════ */
@media (max-width: 900px) {
    :root { --section-v: 5.5rem; }

    .container { padding: 0 2rem; }

    /* Hero stacks */
    .hero-inner {
        flex-direction: column-reverse;
        gap: 3.5rem;
        text-align: center;
    }

    .hero-content { max-width: 100%; }
    .hero-sub     { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-phone-img { height: 300px; }

    /* IronCat stacks */
    .ironcat-inner {
        flex-direction: column;
        gap: 3.5rem;
        text-align: center;
    }

    .ironcat-img { height: 280px; }

    .ironcat-rules li { text-align: left; }

    /* Nav collapse */
    .nav-links { display: none; margin: 0; }
    .mobile-menu-toggle { display: flex; }
    .nav-cta { display: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — 768px (mobile)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
    :root { --section-v: 4.5rem; }

    .privacy-inner { align-items: center; }

    /* Mobile nav dropdown */
    .nav-links {
        position: absolute;
        top: 58px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--bg-base);
        border-bottom: 1px solid var(--border);
        padding: 0.5rem 0;
        gap: 0;
        text-align: center;
    }

    .nav-links.active { display: flex; }

    .nav-links a {
        display: block;
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    /* Layout */
    .cats-grid    { grid-template-columns: 1fr; }
    .blog-grid    { grid-template-columns: 1fr; }
    .control-cards { grid-template-columns: 1fr; }

    .privacy-inner {
        flex-direction: column;
        text-align: center;
    }

    .schedules-pull { text-align: left; }
}


/* ═══════════════════════════════════════════
   RESPONSIVE — 560px (small mobile)
═══════════════════════════════════════════ */
@media (max-width: 560px) {
    .container { padding: 0 1.25rem; }

    .hero { padding-top: 90px; }
    .hero-phone-img { height: 240px; }

    .ironcat-img { height: 220px; }

    .step-card  { padding: 2rem 1.5rem; }
    .cat-card   { padding: 0 1.25rem 1.5rem; }
    .faq-item summary { padding: 1rem 1.1rem; }
    .faq-body         { padding: 1rem 1.1rem; }

    .nav-container { padding: 0 1.25rem; }
}
