/* ============================================================
   AR7 GROUP LIMITED — HOME PAGE (front-page.php)
   ============================================================ */

/* ── HERO SECTION ───────────────────────────────────────── */
.ar7-hero {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    background: var(--ar7-navy-900);
}

/* ── BACKGROUND IMAGE — natural aspect ratio ───────────── */
.ar7-hero__bg {
    position: relative;
    width: 100%;
    z-index: 0;
}

.ar7-hero__bg-img {
    display: block;
    width: 100%;
    height: auto;
}

/* ── GRADIENT OVERLAYS ─────────────────────────────────── */
.ar7-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(
            ellipse 55% 65% at 25% 45%,
            rgba(4, 18, 32, 0.75) 0%,
            rgba(4, 18, 32, 0.45) 40%,
            rgba(4, 18, 32, 0.15) 70%,
            transparent 100%
        );
}

/* Bottom fog — thin strip for seamless merge */
.ar7-hero__overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    z-index: 2;
    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(242, 243, 238, 0.2) 30%,
            rgba(242, 243, 238, 0.6) 65%,
            rgba(242, 243, 238, 0.9) 85%,
            #f2f3ee 100%
        );
    pointer-events: none;
}

/* ── HERO PILL BADGE ───────────────────────────────────── */
.ar7-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    width: fit-content;
}

.ar7-hero__pill-text {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
}

/* ── HERO CONTENT ──────────────────────────────────────── */
.ar7-hero__content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 1280px;
    margin: 0 auto;
    padding: 230px var(--space-8) var(--space-8);
}

/* ── HEADLINE ───────────────────────────────────────────── */
.ar7-hero__h1 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--ar7-white);
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

.ar7-hero__h1-line1 {
    display: block;
    font-size: clamp(48px, 8vw, 82px);
    font-weight: 800;
    color: var(--ar7-white);
    -webkit-text-fill-color: var(--ar7-white);
}

.ar7-hero__h1-line2 {
    display: block;
    font-size: clamp(36px, 6.5vw, 68px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.9);
}

.ar7-hero__h1-line3 {
    display: block;
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--ar7-teal-400);
    -webkit-text-fill-color: var(--ar7-teal-400);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    letter-spacing: -0.01em;
    margin-top: 0.1em;
}

/* ── SUBHEADING ─────────────────────────────────────────── */
.ar7-hero__sub {
    font-size: clamp(14px, 2vw, 17px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    letter-spacing: 0.02em;
    max-width: 520px;
    margin-bottom: var(--space-10);
}

/* ── HERO BUTTON ────────────────────────────────────────── */
.ar7-hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.ar7-hero__btn-p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    color: var(--ar7-white);
    background: linear-gradient(135deg, var(--ar7-teal-500), var(--ar7-teal-400));
    padding: 16px 40px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(14, 165, 160, 0.3);
    white-space: nowrap;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1),
                background 250ms ease;
}

/* Shine sweep */
.ar7-hero__btn-p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 500ms ease;
}
.ar7-hero__btn-p:hover::before { left: 100%; }

.ar7-hero__btn-p:hover {
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(135deg, var(--ar7-teal-400), var(--ar7-teal-300));
    box-shadow:
        0 10px 40px rgba(14, 165, 160, 0.45),
        0 0 20px rgba(14, 165, 160, 0.2),
        0 0 0 1px rgba(14, 165, 160, 0.3);
}
.ar7-hero__btn-p:active {
    transform: translateY(0) scale(1);
    box-shadow: none;
}

/* ── SCROLL INDICATOR ──────────────────────────────────── */
.ar7-hero::after {
    content: '';
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    z-index: 3;
}


/* ============================================================
   ABOUT SECTION — tight to hero fog
   ============================================================ */
.ar7-about {
    background: #f2f3ee;
    padding: clamp(24px, 3vw, 40px) 0 clamp(64px, 8vw, 120px);
    position: relative;
}

/* Subtle dot pattern — visible soft tone */
.ar7-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.035) 7px, transparent 7px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
}

.ar7-about__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    position: relative;
    z-index: 1;
}

/* ── Image placeholder ─────────────────────────────────── */
.ar7-about__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ar7-about__img-wrap {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(4, 18, 32, 0.1);
    border: 1px solid rgba(4, 18, 32, 0.06);
    position: relative;
    background: var(--ar7-gray-200);
    aspect-ratio: 4 / 3;
}

.ar7-about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── About pill badge ──────────────────────────────────── */
.ar7-about__pill {
    display: inline-flex;
    align-items: center;
    background: rgba(13, 115, 119, 0.06);
    border: 1px solid rgba(13, 115, 119, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
}

.ar7-about__pill span {
    font-size: 12px;
    font-weight: 600;
    color: var(--ar7-teal-500);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── Text content ──────────────────────────────────────── */
.ar7-about__text {
    text-align: center;
}

.ar7-about__h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--ar7-teal-500);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: var(--space-3);
}

.ar7-about__tagline {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 700;
    color: var(--ar7-teal-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-6);
}

.ar7-about__desc {
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 400;
    color: var(--ar7-gray-600);
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto var(--space-8);
}

.ar7-about__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    color: var(--ar7-white);
    background: linear-gradient(135deg, var(--ar7-teal-500), var(--ar7-teal-400));
    padding: 16px 40px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(14, 165, 160, 0.3);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1),
                background 250ms ease;
}

/* Shine sweep */
.ar7-about__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 500ms ease;
}
.ar7-about__btn:hover::before { left: 100%; }

.ar7-about__btn:hover {
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(135deg, var(--ar7-teal-400), var(--ar7-teal-300));
    box-shadow:
        0 10px 40px rgba(14, 165, 160, 0.45),
        0 0 20px rgba(14, 165, 160, 0.2),
        0 0 0 1px rgba(14, 165, 160, 0.3);
}

.ar7-about__btn:active {
    transform: translateY(0) scale(1);
    box-shadow: none;
}

/* ── Desktop: 2 columns ────────────────────────────────── */
@media (min-width: 768px) {
    .ar7-about__inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }

    .ar7-about__text {
        text-align: left;
    }

    .ar7-about__desc {
        margin-left: 0;
        margin-right: 0;
    }
}

/* ── About entrance animation ──────────────────────────── */
.ar7-about__visual,
.ar7-about__text {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ar7-about__visual.is-visible,
.ar7-about__text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ar7-about__text {
    transition-delay: 150ms;
}


/* ============================================================
   WHY CHOOSE AR7 — White with dot pattern
   ============================================================ */
.ar7-why {
    background: #ffffff;
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
}

/* Dot pattern background */
.ar7-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(13, 115, 119, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

.ar7-why__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    position: relative;
    z-index: 1;
}

.ar7-why__header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 72px);
}

.ar7-why__pill {
    display: inline-flex;
    align-items: center;
    background: rgba(13, 115, 119, 0.06);
    border: 1px solid rgba(13, 115, 119, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
}
.ar7-why__pill span {
    font-size: 12px;
    font-weight: 600;
    color: #0D7377;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ar7-why__h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #0D7377;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-4);
}

.ar7-why__sub {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--ar7-gray-500);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

.ar7-why__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

.ar7-why__card {
    background: var(--ar7-white);
    border: 1px solid var(--ar7-gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition:
        background 250ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 250ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Shine sweep — travels left to right on hover, stays until mouse leaves */
.ar7-why__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 500ms ease;
    pointer-events: none;
    z-index: 1;
}
.ar7-why__card:hover::before,
.ar7-why__card.is-touched::before,
.ar7-why__card.is-active::before {
    left: 100%;
}

/* Hover state — exact button gradient + lift + triple glow */
.ar7-why__card:hover,
.ar7-why__card.is-touched,
.ar7-why__card.is-active {
    background: linear-gradient(135deg, var(--ar7-teal-500), var(--ar7-teal-400));
    border-color: rgba(14, 165, 160, 0.3);
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 10px 40px rgba(14, 165, 160, 0.45),
        0 0 20px rgba(14, 165, 160, 0.2),
        0 0 0 1px rgba(14, 165, 160, 0.3);
}

/* Icon box */
.ar7-why__card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(13, 115, 119, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    position: relative;
    z-index: 2;
    transition:
        background 250ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ar7-why__card:hover .ar7-why__card-icon,
.ar7-why__card.is-touched .ar7-why__card-icon,
.ar7-why__card.is-active .ar7-why__card-icon {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.ar7-why__card-icon svg,
.ar7-why__card-icon img {
    transition: filter 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ar7-why__card:hover .ar7-why__card-icon svg,
.ar7-why__card.is-touched .ar7-why__card-icon svg,
.ar7-why__card.is-active .ar7-why__card-icon svg {
    filter: brightness(0) invert(1);
}

/* Title */
.ar7-why__card-title {
    font-family: var(--font-display);
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 700;
    color: var(--ar7-navy-900);
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ar7-why__card:hover .ar7-why__card-title,
.ar7-why__card.is-touched .ar7-why__card-title,
.ar7-why__card.is-active .ar7-why__card-title {
    color: #ffffff;
}

/* Body text */
.ar7-why__card-body {
    font-size: 15px;
    color: var(--ar7-gray-500);
    line-height: 1.75;
    position: relative;
    z-index: 2;
    transition: color 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ar7-why__card:hover .ar7-why__card-body,
.ar7-why__card.is-touched .ar7-why__card-body,
.ar7-why__card.is-active .ar7-why__card-body {
    color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
    .ar7-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .ar7-why__grid { grid-template-columns: repeat(4, 1fr); }
}


/* ============================================================
   HOW IT WORKS — 3 horizontal steps with connecting line
   ============================================================ */
.ar7-how {
    background: #f2f3ee;
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
}

/* Subtle dot pattern — visible soft tone */
.ar7-how::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.035) 7px, transparent 7px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
}

.ar7-how__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    position: relative;
    z-index: 1;
}

.ar7-how__header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 72px);
}

.ar7-how__pill {
    display: inline-flex;
    align-items: center;
    background: rgba(13, 115, 119, 0.06);
    border: 1px solid rgba(13, 115, 119, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
}
.ar7-how__pill span {
    font-size: 12px;
    font-weight: 600;
    color: var(--ar7-teal-500);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ar7-how__h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--ar7-teal-500);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-4);
}

.ar7-how__sub {
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--ar7-gray-500);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

.ar7-how__track {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    position: relative;
}

.ar7-how__line { display: none; }

.ar7-how__step {
    text-align: left;
    position: relative;
    padding-left: 64px;
}

.ar7-how__dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ar7-teal-500), var(--ar7-teal-400));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--ar7-white);
    box-shadow: 0 0 0 6px rgba(14, 165, 160, 0.1);
}

.ar7-how__step-title {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    color: var(--ar7-navy-900);
    margin-bottom: var(--space-2);
    letter-spacing: -0.02em;
}

.ar7-how__step-body {
    font-size: 15px;
    color: var(--ar7-gray-500);
    line-height: 1.75;
    max-width: 400px;
}

@media (min-width: 768px) {
    .ar7-how__track {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-8);
        text-align: center;
    }
    .ar7-how__step {
        padding-left: 0;
        padding-top: 72px;
        text-align: center;
    }
    .ar7-how__dot {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }
    .ar7-how__step-body {
        max-width: none;
        margin: 0 auto;
    }
    /* Horizontal connecting line */
    .ar7-how__line {
        display: block;
        position: absolute;
        top: 22px;
        left: calc(16.66% + 22px);
        right: calc(16.66% + 22px);
        height: 2px;
        background: linear-gradient(90deg, var(--ar7-teal-400), var(--ar7-sky-400));
        opacity: 0.2;
        z-index: 0;
    }
}


/* ============================================================
   CTA BAND — Single centred section, teal background
   ============================================================ */
.ar7-ctaband {
    background: #0D7377;
    padding: clamp(48px, 5vw, 64px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow in centre */
.ar7-ctaband::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ── CHANGED: widened from 680px → 900px so title fits on one line ── */
.ar7-ctaband__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    position: relative;
    z-index: 1;
}

.ar7-ctaband__pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}
.ar7-ctaband__pill span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ar7-ctaband__h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--ar7-white);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: var(--space-3);
    white-space: nowrap;
}

/* ── CHANGED: max-width 600px → 640px so description wraps at ~2 lines ── */
.ar7-ctaband__body {
    font-size: clamp(14px, 1.5vw, 16px);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin-bottom: var(--space-4);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.ar7-ctaband__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2) var(--space-6);
}

.ar7-ctaband__list li {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 20px;
}
.ar7-ctaband__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 13px;
}

.ar7-ctaband__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

/* Primary button — teal, same as hero */
.ar7-ctaband__btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    color: var(--ar7-white);
    background: linear-gradient(135deg, var(--ar7-teal-500), var(--ar7-teal-400));
    padding: 16px 44px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(14, 165, 160, 0.3);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1),
                background 250ms ease;
}
.ar7-ctaband__btn--primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 500ms ease;
}
.ar7-ctaband__btn--primary:hover::before { left: 100%; }
.ar7-ctaband__btn--primary:hover {
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(135deg, var(--ar7-teal-400), var(--ar7-teal-300));
    box-shadow:
        0 10px 40px rgba(14, 165, 160, 0.45),
        0 0 20px rgba(14, 165, 160, 0.2),
        0 0 0 1px rgba(14, 165, 160, 0.3);
}
.ar7-ctaband__btn--primary:active {
    transform: translateY(0) scale(1);
    box-shadow: none;
}

/* Secondary button — teal, same as hero (identical) */
.ar7-ctaband__btn--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    color: var(--ar7-white);
    background: linear-gradient(135deg, var(--ar7-teal-500), var(--ar7-teal-400));
    padding: 16px 44px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(14, 165, 160, 0.3);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 250ms cubic-bezier(0.16, 1, 0.3, 1),
                background 250ms ease;
}
.ar7-ctaband__btn--secondary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 500ms ease;
}
.ar7-ctaband__btn--secondary:hover::before { left: 100%; }
.ar7-ctaband__btn--secondary:hover {
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(135deg, var(--ar7-teal-400), var(--ar7-teal-300));
    box-shadow:
        0 10px 40px rgba(14, 165, 160, 0.45),
        0 0 20px rgba(14, 165, 160, 0.2),
        0 0 0 1px rgba(14, 165, 160, 0.3);
}
.ar7-ctaband__btn--secondary:active {
    transform: translateY(0) scale(1);
    box-shadow: none;
}

@media (min-width: 640px) {
    .ar7-ctaband__btns {
        flex-direction: row;
        justify-content: center;
    }
}

/* On smaller screens, allow title to wrap naturally */
@media (max-width: 767px) {
    .ar7-ctaband__h2 {
        white-space: normal;
    }
}

/* Scroll reveal for new sections */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   HERO RESPONSIVE
   ============================================================ */
/* ── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 479px) {
    /* Hero */
    .ar7-hero__content {
        padding: 100px var(--space-5) var(--space-8);
    }
    .ar7-hero__pill { margin-bottom: var(--space-4); }
    .ar7-hero__h1 { margin-bottom: var(--space-4); }
    .ar7-hero__h1-line1 { font-size: clamp(36px, 10vw, 48px); }
    .ar7-hero__h1-line2 { font-size: clamp(28px, 8vw, 38px); }
    .ar7-hero__h1-line3 { font-size: clamp(22px, 7vw, 30px); }
    .ar7-hero__sub {
        font-size: 14px;
        margin-bottom: var(--space-6);
        max-width: 100%;
    }
    .ar7-hero__btn-p {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    .ar7-hero::after { display: none; }

    /* About section */
    .ar7-about__inner {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    .ar7-about__visual { display: none; }

    /* Why cards */
    .ar7-why__grid {
        grid-template-columns: 1fr;
    }

    /* How it works */
    .ar7-how__steps {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .ar7-ctaband__h2 {
        font-size: clamp(22px, 6vw, 28px);
        white-space: normal;
    }
    .ar7-ctaband__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 639px) {
    .ar7-hero__content {
        padding: 110px var(--space-6) var(--space-8);
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .ar7-hero__pill { align-self: center; }
    .ar7-hero__h1 { text-align: center; }
    .ar7-hero__h1-line1 { font-size: clamp(38px, 10vw, 52px); }
    .ar7-hero__h1-line2 { font-size: clamp(30px, 8vw, 42px); }
    .ar7-hero__h1-line3 { font-size: clamp(24px, 7vw, 34px); }
    .ar7-hero__sub { text-align: center; }
    .ar7-hero__btns { justify-content: center; width: 100%; }
    .ar7-hero__btn-p {
        width: auto;
        justify-content: center;
        padding: 12px 32px;
    }
    .ar7-hero::after { display: none; }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .ar7-hero__content {
        max-width: 680px;
        margin: 0;
        padding-left: var(--space-8);
        padding-top: 160px;
    }
}

@media (min-width: 1024px) {
    .ar7-hero__content {
        padding-left: var(--space-8);
        max-width: 1280px;
    }
    .ar7-hero__h1 { max-width: 700px; }
}

/* ============================================================
   ENTRANCE ANIMATIONS
   ============================================================ */
@keyframes ar7-fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes ar7-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.ar7-hero__pill {
    animation: ar7-fadeUp 700ms cubic-bezier(0.16, 1, 0.3, 1) 100ms both;
}

.ar7-hero__h1 {
    animation: ar7-fadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) 200ms both;
}

.ar7-hero__sub {
    animation: ar7-fadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) 400ms both;
}

.ar7-hero__btns {
    animation: ar7-fadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) 600ms both;
}

.ar7-hero__bg-img {
    animation: ar7-fadeIn 1200ms ease 100ms both;
}

@media (prefers-reduced-motion: reduce) {
    .ar7-hero__pill,
    .ar7-hero__h1,
    .ar7-hero__sub,
    .ar7-hero__btns,
    .ar7-hero__bg-img {
        animation: none;
    }
    .ar7-hero__btn-p:hover { transform: none; }
    .ar7-about__visual,
    .ar7-about__text {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* ── MOBILE HERO ─────────────────────────────────────────── */
@media (max-width: 639px) {
    .ar7-hero {
        background: #F2F3EE;
        min-height: unset;
    }

    /* Taller image, cropped to left side */
    .ar7-hero__bg-img {
        object-fit: cover;
        object-position: 25% center;
        height: 560px;
        width: 100%;
    }

    /* Content sits over image with enough room */
    .ar7-hero__content {
        padding: 160px var(--space-5) 60px;
    }

    /* Smaller pill */
    .ar7-hero__pill {
        padding: 5px 14px;
        margin-bottom: var(--space-3);
    }
    .ar7-hero__pill-text {
        font-size: 10px;
        letter-spacing: 0.03em;
    }

    /* Dark overlay — strong left, fades right */
    .ar7-hero__overlay {
        background:
            linear-gradient(
                to right,
                rgba(4, 18, 32, 0.82) 0%,
                rgba(4, 18, 32, 0.55) 50%,
                rgba(4, 18, 32, 0.15) 100%
            ),
            linear-gradient(
                to bottom,
                rgba(4, 18, 32, 0.3) 0%,
                transparent 60%
            );
    }

    /* Bottom fog — starts lower, fades to #F2F3EE */
    .ar7-hero__overlay::after {
        height: 28%;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(242, 243, 238, 0.5) 50%,
            rgba(242, 243, 238, 0.9) 80%,
            #F2F3EE 100%
        );
    }
}