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

:root {
    /* ── Brand ── */
    --primary: #2e9e4f;
    --primary-l: #38c260;
    --primary-d: #1f7037;
    --primary-dark: #071a0c;
    --primary-glow: rgba(46, 158, 79, 0.22);
    --accent: #d4a850;
    --accent-glow: rgba(212, 168, 80, 0.18);
    /* ── Global base (Hero / subtle sections) ── */
    --bg: #ffffff;
    --text: #0a1f10;
    --muted: #4a7a5a;
    --border: rgba(46, 158, 79, 0.2);
    --divider: rgba(46, 158, 79, 0.12);
    /* ── Section surfaces ── */
    --s-hero: linear-gradient(180deg, #f4fcf7 0%, #ffffff 100%);
    /* Halka green tint for hero */
    --s-feat: #ffffff;
    /* solid white */
    --s-how: #071a0c;
    /* deep forest dark */
    --s-testi: #fdf9f0;
    /* warm cream */
    --s-cta: #2e9e4f;
    /* solid brand green */
    --s-footer: #071a0c;
    /* deep forest dark */
    /* ── Radius ── */
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ─── Noise Texture Overlay ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 180px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ─── Ambient Blobs ─── */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
    animation: drift 14s ease-in-out infinite alternate;
}

.blob-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: -220px;
    left: -180px;
    animation-delay: 0s;
}

.blob-2 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    bottom: -60px;
    right: -140px;
    animation-delay: -7s;
}

@keyframes drift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, 30px) scale(1.08);
    }
}

/* ─── Layout ─── */
.container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(46, 158, 79, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

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

.logo img {
    height: 40px;
    width: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.logo-name {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.025em;
    color: var(--text);
}

.nav-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--primary-l);
    border: 1px solid rgba(56, 194, 96, 0.3);
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(46, 158, 79, 0.1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 9px 22px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 22px var(--primary-glow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--primary-glow);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: var(--s-hero);
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-d);
    border: 1px solid rgba(46, 158, 79, 0.25);
    background: rgba(46, 158, 79, 0.07);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-l);
    box-shadow: 0 0 8px var(--primary-l);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px var(--primary-l);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 18px var(--primary-l);
    }
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.09;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-l) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.08rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 42px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 28px var(--primary-glow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px var(--primary-glow);
}

.btn-ghost {
    color: var(--primary-d);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1.5px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.btn-ghost:hover {
    background: var(--primary);
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid var(--divider);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-num {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, var(--primary-d) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
}

/* ─── HERO CARD (right) ─── */
.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 36px rgba(46, 158, 79, 0.25);
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(212, 168, 80, 0.07) 100%);
    border-radius: inherit;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-title {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.card-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.card-rating {
    margin-left: auto;
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
}

.card-image {
    width: 100%;
    height: 186px;
    border-radius: var(--radius-md);
    margin-bottom: 18px;
    background: linear-gradient(135deg, #1f7037 0%, #166330 50%, #0f4a24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    letter-spacing: 0.1em;
}

.card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.tag {
    font-size: 0.73rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

.price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
}

.pickup-badge {
    font-size: 0.73rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 14px;
    border-radius: 50px;
}

/* Floating cards */
.float-card {
    position: absolute;
    background: #1f7037;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 8px 32px rgba(46, 158, 79, 0.3);
    animation: float 6s ease-in-out infinite;
}

.float-card-1 {
    top: -22px;
    right: 20px;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 60px;
    left: -30px;
    animation-delay: -3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-label {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    font-size: 0.73rem;
}

/* ─── SECTIONS ─── */
section {
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text);
}

.section-sub {
    text-align: center;
    color: var(--muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 60px;
}

/* ─── FEATURES ─── */
.features {
    padding: 110px 0;
    background: var(--s-feat);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 60px;
}

.feat-card {
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(46, 158, 79, 0.18);
}

.feat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: inherit;
}

.feat-card:hover {
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 14px 44px rgba(46, 158, 79, 0.3);
}

.feat-card:hover::after {
    opacity: 1;
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    z-index: 1;
}

.feat-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.feat-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ─── HOW IT WORKS ─── */
.how {
    padding: 110px 0;
    background: var(--s-how);
}

/* Override section title/sub text for dark how section */
.how .section-eyebrow {
    color: var(--primary-l);
}

.how .section-title {
    color: #f0faf4;
}

.how .section-sub {
    color: rgba(240, 250, 244, 0.65);
}

.how-wrap {
    background: rgba(46, 158, 79, 0.1);
    border: 1px solid rgba(46, 158, 79, 0.25);
    border-radius: var(--radius-lg);
    padding: 64px;
    position: relative;
    overflow: hidden;
}

.how-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 168, 80, 0.07) 0%, transparent 60%);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
    margin-top: 52px;
}

.how-line {
    position: absolute;
    top: 40px;
    left: calc(12.5% + 26px);
    right: calc(12.5% + 26px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.22;
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    margin: 0 auto 18px;
    box-shadow: 0 0 24px var(--primary-glow);
    position: relative;
    z-index: 1;
}

.step-title {
    font-weight: 700;
    font-size: 0.98rem;
    margin-bottom: 8px;
    color: #fff;
}

.step-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    padding: 110px 0;
    background: var(--s-testi);
}

/* Override section title/sub text for cream section */
.testimonials .section-eyebrow {
    color: var(--primary-d);
}

.testimonials .section-title {
    color: #1a3020;
}

.testimonials .section-sub {
    color: #5a7a60;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testi-card {
    background: #ffffff;
    border: 1px solid rgba(212, 168, 80, 0.18);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.testi-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 80, 0.15);
}

.testi-stars {
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testi-text {
    color: #4a5e50;
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.av-1 {
    background: linear-gradient(135deg, #2e9e4f, #1f7037);
}

.av-2 {
    background: linear-gradient(135deg, #d4a850, #b8892e);
}

.av-3 {
    background: linear-gradient(135deg, #38c260, #2e9e4f);
}

.testi-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a3020;
}

.testi-role {
    font-size: 0.78rem;
    color: #6a8a70;
}

/* ─── CTA ─── */
.cta-section {
    padding: 80px 0 130px;
}

.cta-wrap {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(46, 158, 79, 0.28);
}

.cta-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    color: #fff;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.email-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.email-input {
    flex: 1;
    min-width: 260px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    padding: 15px 24px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.email-input:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.22);
}

.cta-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

/* ─── FOOTER ─── */
footer {
    background: var(--s-footer);
    border-top: 1px solid rgba(46, 158, 79, 0.2);
    padding: 42px 0 36px;
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-left img {
    height: 32px;
    width: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-copy {
    color: rgba(212, 240, 224, 0.5);
    font-size: 0.83rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(212, 240, 224, 0.5);
    font-size: 0.83rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-l);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(46, 158, 79, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(212, 240, 224, 0.5);
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-btn:hover {
    border-color: var(--primary-l);
    color: var(--primary-l);
    background: rgba(46, 158, 79, 0.15);
}

/* ─── Divider (hidden — sections handle their own bg separation) ─── */
.section-divider {
    display: none;
}

/* ─── Scroll Reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s cubic-bezier(.22, 1, .36, 1), transform 0.65s cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── POLICY PAGES ─── */
.page-content {
    padding: 120px 0 80px;
    min-height: 60vh;
}

.page-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text);
    text-align: center;
}

.content-body {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(46, 158, 79, 0.05);
}

.policy-body {
    max-width: 800px;
    margin: 0 auto;
}

.policy-body .notice {
    background: rgba(212, 168, 80, 0.1);
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    border-radius: 4px 8px 8px 4px;
    margin-bottom: 32px;
    font-size: 0.95rem;
    color: #5a4623;
}

.policy-body h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--divider);
}

.policy-body p {
    margin-bottom: 16px;
    line-height: 1.75;
}

.policy-body ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.policy-body li {
    margin-bottom: 10px;
    line-height: 1.7;
    position: relative;
}

.policy-body li::marker {
    color: var(--primary);
}

.policy-body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    transition: color 0.2s;
}

.policy-body a:hover {
    color: var(--primary-d);
}

.table-wrap table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--border);
}

.table-wrap th,
.table-wrap td {
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
}

.table-wrap th {
    background: rgba(46, 158, 79, 0.05);
    font-weight: 700;
    color: var(--text);
}

.table-wrap tr:last-child td {
    border-bottom: none;
}

.table-wrap {
    overflow-x: auto;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        display: none;
    }

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

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

    .how-line {
        display: none;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .how-wrap {
        padding: 40px 30px;
    }

    .content-body {
        padding: 30px 24px;
    }
}

@media (max-width: 600px) {
    .nav-badge {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cta-wrap {
        padding: 50px 24px;
    }

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

    .page-content {
        padding: 100px 0 60px;
    }

    .content-body {
        padding: 24px 18px;
        font-size: 0.98rem;
    }

    .policy-body .notice {
        padding: 12px 14px;
        font-size: 0.88rem;
    }

    .policy-body h2 {
        font-size: 1.3rem;
        margin: 30px 0 12px;
    }

    .policy-body ul {
        padding-left: 20px;
    }
}