/* =========================================================
   DeletingOnlyFans.com — Stylesheet
   Theme: Light blue (water) + white + red close accent
   ========================================================= */

:root {
    --blue-50:  #f0f8ff;
    --blue-100: #e1f1fb;
    --blue-200: #c4e4f6;
    --blue-300: #93cfee;
    --blue-400: #5fb6e3;
    --blue-500: #2f9bd6;
    --blue-600: #1a7fb8;
    --blue-700: #135f8a;
    --blue-800: #0d4361;

    --red-500: #e63946;
    --red-600: #c92a37;

    --ink-900: #0b2237;
    --ink-700: #2c4a63;
    --ink-500: #5b7388;
    --ink-300: #94a8ba;

    --white: #ffffff;
    --soft:  #f7fbfd;

    --shadow-sm: 0 2px 8px rgba(19, 95, 138, 0.08);
    --shadow-md: 0 8px 24px rgba(19, 95, 138, 0.12);
    --shadow-lg: 0 18px 50px rgba(19, 95, 138, 0.18);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --maxw: 1180px;

    --grad-water: linear-gradient(180deg, #f0f8ff 0%, #d8edfb 50%, #b9def5 100%);
    --grad-hero:  radial-gradient(1200px 600px at 80% -10%, #cfe9fa 0%, transparent 60%),
                  radial-gradient(900px 500px at -10% 30%, #e9f4fc 0%, transparent 55%),
                  linear-gradient(180deg, #ffffff 0%, #eaf5fc 100%);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

/* Keyboard accessibility — visible focus ring without affecting mouse users */
:focus-visible {
    outline: 3px solid var(--blue-500);
    outline-offset: 2px;
    border-radius: 4px;
}
.btn:focus-visible { outline-offset: 3px; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

a {
    color: var(--blue-600);
    text-decoration: none;
    transition: color .2s ease;
}
a:hover { color: var(--blue-700); }

h1, h2, h3, h4 {
    font-family: 'Manrope', 'Inter', sans-serif;
    color: var(--ink-900);
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin: 0 0 .6em;
}

h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); font-weight: 700; }

p { margin: 0 0 1em; color: var(--ink-700); }

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

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.78);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid rgba(19,95,138,0.07);
    box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
    transition: box-shadow .2s ease, background .2s ease;
}
.site-header::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(47,155,214,0.25), transparent);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}

/* ========================================================
   BRAND LOGO
   Blue rounded-square icon with white X + red notification dot,
   beside bold "DeletingOnlyFans" wordmark and small tagline.
   ======================================================== */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ink-900);
    text-decoration: none;
    letter-spacing: -0.005em;
}
.brand:hover { color: var(--ink-900); }

/* Icon mark: blue rounded square with white X + red notification dot */
.logo {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round'><path d='M7 7 L17 17 M17 7 L7 17'/></svg>") center / 58% 58% no-repeat,
        linear-gradient(135deg, #7cc4ec 0%, #4ea1d3 100%);
    box-shadow: 0 4px 12px rgba(26,127,184,0.20), inset 0 1px 0 rgba(255,255,255,0.28);
    flex: 0 0 auto;
}
.logo .dot {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--red-500);
    border: 2px solid #ffffff;
    box-shadow: 0 1px 3px rgba(230,57,70,0.45);
}

.brand-text {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1;
}

/* Wordmark "DeletingOnlyFans" — single bold dark text */
.wm {
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
}
.wm-1, .wm-2 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--ink-900);
    letter-spacing: -0.025em;
    line-height: 1;
}

/* Tagline */
.brand-text small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--blue-600);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 0;
    opacity: 0.92;
    white-space: nowrap;
}

/* Footer (dark background) — invert colors */
.footer-grid .brand .wm-1,
.footer-grid .brand .wm-2 { color: #ffffff; }
.footer-grid .brand-text small { color: #93b0c8; opacity: 1; }

@media (max-width: 540px) {
    .brand { gap: 11px; }
    .logo { width: 36px; height: 36px; border-radius: 10px; }
    .logo .dot { width: 11px; height: 11px; top: -2px; right: -2px; border-width: 1.5px; }
    .brand-text { gap: 3px; }
    .wm-1, .wm-2 { font-size: 1.1rem; }
    .brand-text small { font-size: 0.56rem; letter-spacing: 0.12em; }
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
    margin: 0; padding: 0;
}
.nav-links a {
    color: var(--ink-700);
    font-weight: 500;
    font-size: 0.95rem;
}
.nav-links a:hover { color: var(--blue-600); }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 42px; height: 42px;
    border-radius: 10px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--ink-900);
    margin: 5px auto;
    transition: .25s ease;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    color: #fff;
    box-shadow: 0 8px 22px rgba(26,127,184,0.35);
}
.btn-primary:hover { color: #fff; box-shadow: 0 12px 28px rgba(26,127,184,0.45); }

.btn-danger {
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
    color: #fff;
    box-shadow: 0 8px 22px rgba(230,57,70,0.35);
}
.btn-danger:hover { color: #fff; box-shadow: 0 12px 28px rgba(230,57,70,0.45); }

.btn-outline {
    background: #fff;
    color: var(--blue-700);
    border-color: var(--blue-300);
}
.btn-outline:hover { background: var(--blue-50); color: var(--blue-700); }

.btn-lg { padding: 16px 28px; font-size: 1.02rem; }

.btn .ic { width: 18px; height: 18px; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: var(--grad-hero);
    overflow: hidden;
    padding: 80px 0 90px;
}

.hero::before {
    /* subtle water waves */
    content: "";
    position: absolute;
    inset: auto 0 -1px 0;
    height: 120px;
    background:
      radial-gradient(800px 80px at 20% 100%, rgba(47,155,214,0.18), transparent 60%),
      radial-gradient(800px 80px at 80% 100%, rgba(47,155,214,0.14), transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--blue-700);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: .02em;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26,127,184,0.12);
    margin-bottom: 18px;
}
.eyebrow .pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--red-500);
    box-shadow: 0 0 0 0 rgba(230,57,70,0.6);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(230,57,70,0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(230,57,70,0); }
    100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
}

.hero h1 span.accent { color: var(--blue-600); }
.hero h1 span.danger { color: var(--red-500); }

.hero p.lead {
    font-size: 1.12rem;
    color: var(--ink-700);
    max-width: 560px;
    margin-bottom: 28px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 30px;
    align-items: center;
    color: var(--ink-500);
    font-size: 0.9rem;
}
.trust-row .item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.trust-row .check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--blue-500);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800;
}

/* Hero card / visual */
.hero-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 26px;
    border: 1px solid rgba(26,127,184,0.08);
}
.hero-card::after {
    content: "";
    position: absolute;
    inset: -22px -22px auto auto;
    width: 120px; height: 120px;
    background: radial-gradient(closest-side, rgba(47,155,214,0.35), transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.account-card {
    border: 1px solid var(--blue-100);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(180deg,#fff,#f7fbfd);
    margin-bottom: 14px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.account-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.account-card .ava {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg,#f8c8d1,#f48fb1);
    flex-shrink: 0;
}
.account-card .meta { flex: 1; }
.account-card .meta strong { display: block; }
.account-card .meta span { color: var(--ink-500); font-size: .85rem; }
.account-card.deleted {
    background: #fff5f6;
    border-color: #f4c5c9;
    color: #8a2330;
}
.account-card.deleted .meta strong { text-decoration: line-through; }
.account-card .badge-status {
    background: var(--red-500);
    color:#fff; font-weight: 700; font-size: .72rem;
    padding: 4px 10px; border-radius: 999px;
}

.progress-step {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--blue-50);
    color: var(--ink-700);
    margin-bottom: 8px;
    font-size: .92rem;
}
.progress-step .dot {
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--blue-300);
    flex-shrink: 0;
    position: relative;
}
.progress-step.done .dot {
    background: var(--blue-600);
}
.progress-step.done .dot::after {
    content:""; position:absolute; left:5px; top:2px;
    width:4px; height:8px; border:solid #fff; border-width:0 2px 2px 0;
    transform: rotate(45deg);
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}
.section-head .eyebrow { margin-bottom: 14px; }
.section-head p { color: var(--ink-500); font-size: 1.05rem; }

.section-soft { background: var(--soft); }
.section-water { background: var(--grad-water); }

/* ---------- Cards grid ---------- */
.grid {
    display: grid;
    gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: #fff;
    border: 1px solid rgba(26,127,184,0.10);
    border-radius: var(--radius-md);
    padding: 26px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(26,127,184,0.22);
}
.card .ic-circle {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--blue-50);
    color: var(--blue-600);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; color: var(--ink-500); font-size: 0.96rem; }

/* ---------- Steps ---------- */
.steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.step {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px 22px 24px;
    border: 1px solid rgba(26,127,184,0.10);
    position: relative;
    counter-increment: step;
    transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step::before {
    content: "0" counter(step);
    position: absolute;
    top: -18px; left: 22px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    color: #fff;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .82rem;
    box-shadow: 0 6px 14px rgba(26,127,184,0.35);
    letter-spacing: .04em;
}
.step h3 { margin-top: 6px; font-size: 1.1rem; }
.step p  { font-size: 0.92rem; color: var(--ink-500); margin: 0; }

/* ---------- Service highlight ---------- */
.service-highlight {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px;
    position: relative;
    overflow: hidden;
}
.service-highlight::before {
    content:""; position: absolute; inset: 0;
    background:
      radial-gradient(500px 220px at 90% -10%, rgba(255,255,255,0.18), transparent 60%),
      radial-gradient(420px 200px at -10% 110%, rgba(255,255,255,0.12), transparent 60%);
}
.service-highlight > * { position: relative; }
.service-highlight h2 { color: #fff; }
.service-highlight p  { color: rgba(255,255,255,0.88); }
.service-highlight .pill {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,0.25);
}
.service-highlight .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 28px;
    margin: 22px 0 30px;
    list-style: none;
    padding: 0;
}
.service-highlight .features li {
    display: flex; align-items: flex-start; gap: 10px;
    color: rgba(255,255,255,0.94);
    font-size: .98rem;
}
.service-highlight .features li::before {
    content: "✓";
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800;
    margin-top: 2px;
}

/* ---------- FAQ ---------- */
.faq-item {
    background: #fff;
    border: 1px solid rgba(26,127,184,0.12);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-weight: 600;
    color: var(--ink-900);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--blue-600);
    transition: transform .25s ease;
    line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
    padding: 0 24px 22px;
    color: var(--ink-700);
}

/* ---------- CTA strip ---------- */
.cta-strip {
    background: linear-gradient(135deg, #ffffff 0%, #e9f4fc 100%);
    border-top: 1px solid rgba(26,127,184,0.10);
    border-bottom: 1px solid rgba(26,127,184,0.10);
    padding: 60px 0;
}
.cta-strip .row {
    display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
    justify-content: space-between;
}
.cta-strip h2 { margin: 0 0 6px; }
.cta-strip p  { margin: 0; color: var(--ink-500); }

/* ---------- Footer ---------- */
.site-footer {
    background: #07203a;
    color: #c8d6e3;
    padding: 70px 0 30px;
}
.site-footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
}
.site-footer a { color: #c8d6e3; }
.site-footer a:hover { color: #fff; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 0.95rem; }
.footer-grid .brand { color: #fff; }
.footer-grid .brand .brand-text small { color: #93b0c8; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 22px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    color: #93b0c8;
    font-size: .88rem;
}

/* ---------- Article / Blog ---------- */
.article {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 24px 30px;
}
.article .meta {
    color: var(--ink-500);
    font-size: 0.92rem;
    margin-bottom: 16px;
    display: flex; gap: 16px; flex-wrap: wrap;
}
.article h1 { margin-bottom: 14px; }
.article h2 { margin-top: 36px; }
.article h3 { margin-top: 28px; }
.article ul, .article ol { padding-left: 1.2em; color: var(--ink-700); }
.article li { margin-bottom: 6px; }
.article blockquote {
    border-left: 4px solid var(--blue-400);
    padding: 12px 18px;
    background: var(--blue-50);
    border-radius: 6px;
    color: var(--ink-700);
    margin: 18px 0;
    font-style: italic;
}

.tag {
    display: inline-block;
    background: var(--blue-50);
    color: var(--blue-700);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 600;
    margin-right: 6px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.post-card {
    background: #fff;
    border: 1px solid rgba(26,127,184,0.10);
    border-radius: var(--radius-md);
    padding: 26px;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card h3 { font-size: 1.12rem; margin: 10px 0 8px; }
.post-card p  { color: var(--ink-500); font-size: .95rem; flex: 1; }
.post-card .read { margin-top: 12px; font-weight: 600; color: var(--blue-600); }

/* ---------- Trust bar (premium / agency feel) ---------- */
.trust-bar {
    margin-top: 36px;
    padding: 22px 28px;
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(26,127,184,0.12);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    box-shadow: var(--shadow-sm);
}
.trust-bar .label {
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue-700);
    display: flex;
    align-items: center;
    gap: 10px;
}
.trust-bar .label::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
}
.trust-bar .stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
}
.trust-bar .stat {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.trust-bar .stat strong {
    font-family: 'Manrope', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ink-900);
    letter-spacing: -0.02em;
}
.trust-bar .stat span {
    font-size: .76rem;
    color: var(--ink-500);
    margin-top: 3px;
}
@media (max-width: 720px) {
    .trust-bar { padding: 18px 20px; }
    .trust-bar .stats { gap: 18px; }
    .trust-bar .stat strong { font-size: 1.15rem; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
    padding: 18px 24px 0;
    font-size: .88rem;
    color: var(--ink-500);
}
.breadcrumbs a {
    color: var(--blue-600);
    font-weight: 500;
}
.breadcrumbs a:hover { color: var(--blue-700); text-decoration: underline; }
.breadcrumbs span:not(:last-child) { margin: 0 6px; color: var(--ink-300); }
.breadcrumbs span:last-child { color: var(--ink-700); font-weight: 500; }

/* ---------- Author byline / meta ---------- */
.byline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0 8px;
    border-top: 1px solid rgba(26,127,184,0.10);
    border-bottom: 1px solid rgba(26,127,184,0.10);
    margin: 24px 0 32px;
    font-size: .92rem;
    color: var(--ink-500);
}
.byline .avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-300), var(--blue-600));
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-family: 'Manrope';
}
.byline strong { color: var(--ink-900); }

/* ---------- Misc ---------- */
.alert {
    background: #fff5f6;
    color: #8a2330;
    border: 1px solid #f4c5c9;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: .95rem;
}

.divider {
    height: 1px;
    background: rgba(26,127,184,0.12);
    margin: 40px 0;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ─ ≥1600px : ultra-wide (slightly larger max-width + spacing)
   ─ ≤1180px : tighter container padding
   ─ ≤980px  : 2-column grids, hero stacks
   ─ ≤900px  : MOBILE NAV kicks in (avoids cramped tablet header)
   ─ ≤640px  : single-column everything, mobile typography
   ─ ≤380px  : ultra-small phones (iPhone SE etc.)
   ============================================================ */

/* Ultra-wide screens (4K, large desktops) */
@media (min-width: 1600px) {
    :root { --maxw: 1320px; }
    .container { padding: 0 32px; }
    section { padding: 110px 0; }
    .hero { padding: 110px 0 120px; }
    h1 { font-size: clamp(2.6rem, 3.6vw, 4rem); }
}

/* Standard tablet/laptop tweaks */
@media (max-width: 1180px) {
    .container { padding: 0 22px; }
    .service-highlight { padding: 48px; }
}

/* Tablet / small laptop */
@media (max-width: 980px) {
    .hero { padding: 60px 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .grid-3, .grid-4, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .service-highlight { padding: 36px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .service-highlight .features { grid-template-columns: 1fr; }
    .hero-card { max-width: 540px; margin-left: auto; margin-right: auto; }
}

/* MOBILE NAVIGATION — kicks in BEFORE the nav gets cramped */
@media (max-width: 900px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }
    .menu-toggle:focus-visible { outline-offset: 0; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 14px 22px 22px;
        border-bottom: 1px solid rgba(19,95,138,0.12);
        box-shadow: 0 8px 20px rgba(19,95,138,0.10);
        gap: 4px;
        max-height: calc(100vh - 80px);
        max-height: calc(100dvh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 14px 4px;
        font-size: 1.02rem;
        border-bottom: 1px solid rgba(19,95,138,0.06);
        min-height: 44px;
    }
    .nav-links li:last-child a { border-bottom: 0; }

    /* Animated hamburger → X when menu is open */
    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-cta .btn { padding: 10px 16px; font-size: .9rem; }
}

/* Small mobile */
@media (max-width: 640px) {
    section { padding: 56px 0; }
    .grid-3, .grid-4, .grid-2, .blog-grid, .steps { grid-template-columns: 1fr; }
    .nav-cta .btn-outline,
    .nav-cta .btn-primary { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .cta-strip .row { flex-direction: column; align-items: flex-start; }
    .cta-strip .hero-cta { width: 100%; }
    .cta-strip .hero-cta .btn { flex: 1; justify-content: center; }
    .service-highlight { padding: 28px 22px; border-radius: var(--radius-md); }
    .hero { padding: 48px 0 56px; }
    .hero h1 { line-height: 1.15; }
    .hero p.lead { font-size: 1rem; }
    .hero-cta { width: 100%; }
    .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
    .btn-lg { padding: 14px 20px; font-size: 0.96rem; }
    .btn { white-space: normal; text-align: center; }
    .breadcrumbs { padding: 14px 0 0; font-size: .82rem; }
    .article { padding: 36px 0 20px; }
    .section-head { margin-bottom: 36px; }
    .faq-item summary { padding: 16px 18px; font-size: .96rem; }
    .faq-item .answer { padding: 0 18px 18px; }
    .hero-card { padding: 20px; }
    .hero-card::after { display: none; }
    .account-card { padding: 13px; gap: 11px; }
    .account-card .ava { width: 40px; height: 40px; }
    .account-card .meta strong { font-size: .92rem; word-break: break-word; }
    .account-card .meta span { font-size: .78rem; }
    .account-card .badge-status { font-size: .68rem; padding: 3px 8px; }
}

/* Ultra-small phones (iPhone SE 1st gen, old Androids) */
@media (max-width: 380px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 1.85rem; }
    h2 { font-size: 1.5rem; }
    .nav { padding: 12px 0; gap: 12px; }
    .brand small { display: none; }
    .trust-bar { padding: 16px; }
    .trust-bar .stats { gap: 14px 18px; }
    .service-highlight { padding: 22px 18px; }
    .service-highlight h2 { font-size: 1.4rem; }
    .faq-item summary { font-size: .92rem; gap: 10px; }
}

/* Landscape phones — keep hero compact so CTAs stay visible */
@media (max-height: 480px) and (orientation: landscape) {
    .hero { padding: 30px 0 36px; }
    .hero h1 { font-size: 1.8rem; }
    .hero p.lead { font-size: .95rem; margin-bottom: 16px; }
    .trust-bar { margin-top: 18px; padding: 14px 18px; }
}

/* Touch device hover-state fix: disable lift on devices without hover */
@media (hover: none) {
    .card:hover, .post-card:hover, .account-card:hover, .step:hover {
        transform: none;
        box-shadow: none;
    }
    .btn:hover { box-shadow: inherit; }
}

/* Print styles — clean reading version of guides/blog */
@media print {
    .site-header, .site-footer, .cta-strip, .menu-toggle, .nav-cta,
    .hero-card, .hero-cta, .breadcrumbs { display: none !important; }
    body { color: #000; background: #fff; }
    .hero { padding: 20px 0; background: #fff; }
    a { color: #000; text-decoration: underline; }
    .article { max-width: 100%; padding: 0; }
}
