/* ==========================================================================
   RequestHit Bot — Stylesheet
   Modern · Editorial · Sade
   ========================================================================== */

:root {
    /* Color system */
    --bg:           #f4f1ea;          /* krem */
    --bg-soft:      #ece8df;
    --ink:          #0f1115;          /* near-black */
    --ink-soft:     #1c1f25;
    --muted:        #6b6f76;
    --line:         #d9d4c8;
    --line-strong:  #b9b3a4;
    --accent:       #e63946;          /* canlı kırmızı */
    --accent-dark:  #c12a36;
    --accent-soft:  #fde4e6;
    --success:      #1f8a4c;
    --white:        #ffffff;

    /* Typography */
    --font-display: 'Anton', 'Bebas Neue', 'Oswald', sans-serif;
    --font-body:    'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono:    'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

    /* Layout */
    --container:    1240px;
    --radius:       14px;
    --radius-lg:    20px;
    --shadow-sm:    0 1px 2px rgba(15,17,21,.04), 0 2px 8px rgba(15,17,21,.04);
    --shadow-md:    0 4px 14px rgba(15,17,21,.06), 0 12px 40px rgba(15,17,21,.08);
    --shadow-lg:    0 30px 60px rgba(15,17,21,.18);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Utilities ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}
.eyebrow--accent { color: var(--accent); }

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 64px);
    line-height: .95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin: 12px 0 0;
}
.section-title em {
    font-style: normal;
    color: var(--accent);
}
.section-lead {
    max-width: 640px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
}
.section-head {
    margin-bottom: 56px;
}
.section {
    padding: 110px 0;
    border-top: 1px solid var(--line);
    position: relative;
}
.section--dark {
    background: var(--ink);
    color: var(--bg);
    border-top: none;
}
.section--dark .section-title em { color: var(--accent); }
.section--dark .section-lead { color: rgba(255,255,255,.65); }
.section--dark .eyebrow { color: rgba(255,255,255,.5); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: all .25s ease;
    border: 1.5px solid transparent;
    white-space: nowrap;
}
.btn--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 24px -8px rgba(230,57,70,.6);
}
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(230,57,70,.7); }
.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--ghost-light {
    background: transparent;
    color: var(--bg);
    border-color: rgba(255,255,255,.4);
}
.btn--ghost-light:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn svg { width: 16px; height: 16px; }

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
    background: var(--ink);
    color: var(--bg);
    font-size: 13px;
    padding: 10px 0;
    font-family: var(--font-mono);
    letter-spacing: .05em;
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar__left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.topbar__pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74,222,128,.7);
    animation: pulse 1.6s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(74,222,128,.7); }
    70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
    100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.topbar__right {
    display: flex; align-items: center; gap: 24px;
}
.topbar__right a:hover { color: var(--accent); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(244,241,234,.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}
.logo {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: -.01em;
    text-transform: uppercase;
    line-height: 1;
}
.logo__mark {
    width: 36px; height: 36px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-size: 22px;
    transform: rotate(-6deg);
    box-shadow: 0 6px 16px -6px rgba(230,57,70,.7);
}
.logo__text small {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .3em;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 400;
    text-transform: uppercase;
}
.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color .2s;
    position: relative;
}
.nav a:hover { color: var(--accent); }
.header__cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 85% 20%, rgba(230,57,70,.10), transparent 70%),
        radial-gradient(ellipse 800px 500px at 10% 90%, rgba(15,17,21,.05), transparent 70%);
    pointer-events: none;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    align-items: center;
    position: relative;
}
.hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(56px, 8vw, 116px);
    line-height: .9;
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin: 18px 0 0;
}
.hero__title .stroke {
    -webkit-text-stroke: 2px var(--ink);
    color: transparent;
}
.hero__title .accent { color: var(--accent); position: relative; display: inline-block; }
.hero__title .accent::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 6px;
    height: 8px;
    background: var(--accent-soft);
    z-index: -1;
}
.hero__sub {
    margin: 26px 0 36px;
    font-size: 19px;
    color: var(--ink-soft);
    max-width: 540px;
    line-height: 1.55;
}
.hero__cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.hero__meta {
    margin-top: 56px;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 28px;
}
.hero__meta-item strong {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}
.hero__meta-item span {
    font-size: 13px;
    color: var(--muted);
    font-family: var(--font-mono);
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Hero visual — slider on the right */
.hero__visual {
    position: relative;
}
.hero-slider {
    position: relative;
    background: var(--ink);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(1.2deg);
    padding: 14px 14px 14px;
}
.hero-slider__frame {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1d24;
}
.hero-slider__track {
    display: flex;
    height: 100%;
    transition: transform .65s cubic-bezier(.65,.05,.36,1);
    will-change: transform;
}
.hero-slider__slide {
    flex: 0 0 100%;
    height: 100%;
    background: #1a1d24;
}
.hero-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* kırpmaz */
    object-position: center;
}
.hero-slider__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 4px 4px;
}
.hero-slider__btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    background: transparent;
    color: #fff;
    display: grid; place-items: center;
    transition: all .25s;
    flex-shrink: 0;
}
.hero-slider__btn:hover { background: var(--accent); border-color: var(--accent); }
.hero-slider__dots {
    display: flex;
    gap: 6px;
    flex: 1;
    justify-content: center;
}
.hero-slider__dot {
    width: 22px; height: 4px;
    background: rgba(255,255,255,.2);
    border-radius: 2px;
    border: none;
    padding: 0;
    transition: all .3s;
    cursor: pointer;
}
.hero-slider__dot.is-active {
    background: var(--accent);
    width: 44px;
}

.hero__sticker {
    position: absolute;
    bottom: -20px; right: -16px;
    background: var(--accent);
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    transform: rotate(-5deg);
    box-shadow: 0 12px 30px -8px rgba(230,57,70,.5);
    z-index: 2;
}

/* ==========================================================================
   STATISTICS
   ========================================================================== */
.stats {
    padding: 90px 0;
    border-top: 1px solid var(--line);
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stats__item {
    padding: 40px 28px;
    border-right: 1px solid var(--line);
    position: relative;
}
.stats__item:last-child { border-right: none; }
.stats__num {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1;
    color: var(--ink);
    letter-spacing: -.02em;
}
.stats__num sup {
    color: var(--accent);
    font-size: .5em;
    margin-left: 4px;
    vertical-align: super;
}
.stats__label {
    margin-top: 14px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ==========================================================================
   PACKAGES
   ========================================================================== */
.packages {
    padding: 110px 0;
    border-top: 1px solid var(--line);
}
.packages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    align-items: stretch;
}
.pkg {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}
.pkg:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.pkg--featured {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
    transform: scale(1.03);
}
.pkg--featured:hover { transform: scale(1.03) translateY(-6px); }
.pkg__badge {
    position: absolute;
    top: 24px; right: 24px;
    background: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.pkg__eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}
.pkg--featured .pkg__eyebrow { color: var(--accent); }
.pkg__name {
    font-family: var(--font-display);
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: -.01em;
    line-height: 1;
    margin-bottom: 28px;
}
.pkg__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}
.pkg__currency {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--muted);
}
.pkg--featured .pkg__currency { color: rgba(255,255,255,.45); }
.pkg__amount {
    font-family: var(--font-display);
    font-size: 86px;
    line-height: 1;
    letter-spacing: -.03em;
}
.pkg__period {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 28px;
    letter-spacing: .08em;
}
.pkg--featured .pkg__period { color: rgba(255,255,255,.5); }
.pkg__features {
    flex: 1;
    margin-bottom: 28px;
    border-top: 1px solid var(--line);
    padding-top: 4px;
}
.pkg--featured .pkg__features { border-color: rgba(255,255,255,.1); }
.pkg__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
}
.pkg--featured .pkg__features li { border-color: rgba(255,255,255,.08); }
.pkg__features li::before {
    content: '';
    flex: 0 0 18px;
    width: 18px; height: 18px;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231f8a4c'%3E%3Cpath d='M16.7 5.3a1 1 0 010 1.4l-7.5 7.5a1 1 0 01-1.4 0L3.3 9.7a1 1 0 011.4-1.4l3.8 3.8 6.8-6.8a1 1 0 011.4 0z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.pkg--featured .pkg__features li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23e63946'%3E%3Cpath d='M16.7 5.3a1 1 0 010 1.4l-7.5 7.5a1 1 0 01-1.4 0L3.3 9.7a1 1 0 011.4-1.4l3.8 3.8 6.8-6.8a1 1 0 011.4 0z'/%3E%3C/svg%3E");
}
.pkg__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 999px;
    border: 1.5px solid var(--ink);
    color: var(--ink);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: all .25s;
}
.pkg__cta:hover { background: var(--ink); color: var(--bg); }
.pkg--featured .pkg__cta {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.pkg--featured .pkg__cta:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

/* ==========================================================================
   FEATURES
   ========================================================================== */
.features {
    padding: 110px 0;
    background: var(--ink);
    color: var(--bg);
}
.features .section-title { color: var(--bg); }
.features .section-lead { color: rgba(255,255,255,.65); }
.features .eyebrow { color: rgba(255,255,255,.5); }

.features__grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.1);
}
.feature {
    padding: 40px 32px;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    position: relative;
    transition: background .3s;
}
.feature:hover { background: rgba(255,255,255,.03); }
.feature:nth-child(3n) { border-right: none; }
.feature:nth-last-child(-n+3) { border-bottom: none; }

.feature__num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .25em;
    color: var(--accent);
    margin-bottom: 18px;
}
.feature__icon {
    width: 48px; height: 48px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    display: grid; place-items: center;
    margin-bottom: 22px;
    color: var(--accent);
}
.feature__icon svg { width: 22px; height: 22px; }
.feature__title {
    font-family: var(--font-display);
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: -.005em;
    margin: 0 0 12px;
}
.feature__text {
    color: rgba(255,255,255,.65);
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
    padding: 80px 0;
    background: var(--accent);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: 'REQUESTHIT · REQUESTHIT · REQUESTHIT · REQUESTHIT · ';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 220px;
    line-height: 1;
    color: rgba(255,255,255,.06);
    pointer-events: none;
    letter-spacing: -.02em;
}
.cta-banner__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
}
.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    text-transform: uppercase;
    line-height: .95;
    margin: 0;
    max-width: 720px;
}
.cta-banner .btn--ghost-light {
    border-color: #fff;
    color: #fff;
}
.cta-banner .btn--ghost-light:hover { background: #fff; color: var(--accent); }

/* ==========================================================================
   CONTENT (SEO)
   ========================================================================== */
.content {
    padding: 110px 0;
    border-top: 1px solid var(--line);
}
.content__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
}
.content__aside { position: sticky; top: 100px; }
.content__aside .eyebrow { display: block; }
.content__aside-title {
    font-family: var(--font-display);
    font-size: 44px;
    text-transform: uppercase;
    line-height: .95;
    margin: 12px 0 18px;
}
.content__aside-text { color: var(--muted); font-size: 15px; }
.content__body h3 {
    font-family: var(--font-display);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: -.005em;
    margin: 48px 0 14px;
    line-height: 1.05;
}
.content__body h3:first-child { margin-top: 0; }
.content__body p {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0 0 18px;
}
.content__body strong { color: var(--ink); }
.content__body ul {
    margin: 0 0 18px;
    padding-left: 0;
}
.content__body ul li {
    position: relative;
    padding: 6px 0 6px 28px;
    color: var(--ink-soft);
    line-height: 1.65;
}
.content__body ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 16px;
    width: 14px; height: 2px;
    background: var(--accent);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 110px 0; border-top: 1px solid var(--line); background: var(--bg-soft); }
.faq__list {
    margin-top: 60px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.faq__item {
    border-bottom: 1px solid var(--line-strong);
}
.faq__q {
    width: 100%;
    text-align: left;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--font-display);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: -.005em;
    color: var(--ink);
    transition: color .2s;
}
.faq__q:hover { color: var(--accent); }
.faq__icon {
    flex: 0 0 36px;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--ink);
    display: grid; place-items: center;
    transition: all .3s;
}
.faq__icon::before, .faq__icon::after {
    content: '';
    position: absolute;
    width: 14px; height: 2px;
    background: var(--ink);
    transition: transform .3s;
}
.faq__icon::after { transform: rotate(90deg); }
.faq__item.is-open .faq__icon { background: var(--accent); border-color: var(--accent); }
.faq__item.is-open .faq__icon::before, .faq__item.is-open .faq__icon::after { background: #fff; }
.faq__item.is-open .faq__icon::after { transform: rotate(0); }
.faq__a {
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease, padding .3s ease;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
}
.faq__item.is-open .faq__a {
    max-height: 600px;
    padding: 0 0 28px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--ink);
    color: var(--bg);
    padding: 90px 0 30px;
}
.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand .logo { color: var(--bg); }
.footer__brand p {
    margin-top: 22px;
    color: rgba(255,255,255,.55);
    font-size: 15px;
    line-height: 1.65;
    max-width: 360px;
}
.footer__col h4 {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: rgba(255,255,255,.45);
    margin: 0 0 22px;
    font-weight: 500;
}
.footer__col ul li { margin-bottom: 14px; }
.footer__col a {
    font-size: 14px;
    color: rgba(255,255,255,.8);
    transition: color .2s;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255,255,255,.45);
    letter-spacing: .05em;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; gap: 60px; }
    .hero__visual { max-width: 480px; margin: 0 auto; }
    .content__grid { grid-template-columns: 1fr; gap: 40px; }
    .content__aside { position: static; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .features__grid { grid-template-columns: 1fr 1fr; }
    .feature:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.1); }
    .feature:nth-child(2n) { border-right: none; }
    .feature:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.1); }
    .feature:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 820px) {
    .section { padding: 80px 0; }
    .nav { display: none; }
    .menu-toggle {
        display: grid; place-items: center;
        width: 42px; height: 42px;
        border: 1.5px solid var(--ink);
        border-radius: 10px;
    }
    .nav.is-mobile-open {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        border-top: 1px solid var(--line);
        box-shadow: var(--shadow-md);
    }
    .header__cta .btn { display: none; }
    .packages__grid { grid-template-columns: 1fr; }
    .pkg--featured { transform: none; }
    .pkg--featured:hover { transform: translateY(-6px); }
    .stats__grid { grid-template-columns: 1fr 1fr; }
    .stats__item:nth-child(2n) { border-right: none; }
    .stats__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .features__grid { grid-template-columns: 1fr; }
    .feature { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.1) !important; }
    .feature:last-child { border-bottom: none !important; }
    .footer__top { grid-template-columns: 1fr; }
    .topbar__right { gap: 14px; }
    .topbar { font-size: 11px; }
    .hero { padding: 60px 0 80px; }
    .cta-banner__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .stats__grid { grid-template-columns: 1fr; }
    .stats__item { border-right: none; border-bottom: 1px solid var(--line); }
    .stats__item:last-child { border-bottom: none; }
    .hero__meta { gap: 28px; }
}
