/* ==========================================================================
   SLife Tracker / TrackingMG — Site vitrine
   Design system & layout (2026 refonte)
   ========================================================================== */

:root {
    --navy-950: #080d19;
    --navy-900: #0c1526;
    --navy-800: #12203a;
    --navy-700: #1a2d4f;
    --navy-600: #24406e;

    --gold-700: #8a5c14;
    --gold-600: #b9791c;
    --gold-500: #d69a3a;
    --gold-400: #e8b465;
    --gold-100: #fbead1;

    --red-600: #e0202c;
    --green-600: #1f9d55;

    --ink: #101828;
    --slate-700: #384152;
    --slate-500: #667085;
    --slate-400: #98a2b3;
    --slate-200: #e4e7ec;
    --slate-100: #f0f2f5;

    --bg: #f9f8f6;
    --white: #ffffff;

    --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
    --shadow-md: 0 8px 24px rgba(16, 24, 40, 0.08);
    --shadow-lg: 0 24px 60px -12px rgba(10, 20, 40, 0.35);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --container: 1180px;
    --header-h: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}
a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(232, 180, 101, .75);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    transform: translateY(-140%);
    background: var(--gold-500);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 700;
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

section {
    scroll-margin-top: var(--header-h);
}

h1, h2, h3, h4 {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    line-height: 1.2;
    margin: 0 0 .6em;
    color: var(--navy-950);
}

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

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(214, 154, 58, .18);
}

.section-head {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(28px, 3.4vw, 38px);
}

.section-head p {
    font-size: 17px;
}

.section-head.left {
    margin: 0 0 48px;
    text-align: left;
}

/* Buttons ---------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: var(--white);
    box-shadow: 0 12px 24px -8px rgba(185, 121, 28, .55);
}

.btn-gold:hover {
    box-shadow: 0 16px 30px -8px rgba(185, 121, 28, .65);
}

.btn-ghost {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .25);
    color: var(--white);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .14);
}

.btn-outline {
    background: transparent;
    border-color: var(--slate-200);
    color: var(--navy-950);
}

.btn-outline:hover {
    border-color: var(--gold-500);
    color: var(--gold-600);
}

.btn-block {
    width: 100%;
}

/* Header / nav ------------------------------------------------------------ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.site-header.is-scrolled {
    background: rgba(8, 13, 25, .92);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    height: 68px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    height: 42px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    padding: 8px 2px;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    transform: scaleX(1);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero --------------------------------------------------------------------*/

.hero {
    position: relative;
    padding: calc(var(--header-h) + 76px) 0 100px;
    background: radial-gradient(1100px 620px at 85% -10%, rgba(214, 154, 58, .18), transparent 60%),
        linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at 25% 20%, black, transparent 70%);
    opacity: .5;
    pointer-events: none;
}

.hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(32px, 4.4vw, 52px);
    letter-spacing: -.01em;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    font-size: 18px;
    color: rgba(255, 255, 255, .72);
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0 40px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 32px;
}

.hero-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .78);
    font-weight: 600;
}

.hero-trust i {
    color: var(--gold-400);
    font-size: 17px;
}

.hero-visual {
    position: relative;
}

.hero-visual .glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(214, 154, 58, .35), transparent 65%);
    filter: blur(10px);
    z-index: 0;
}

.device-frame {
    position: relative;
    z-index: 1;
    background: var(--navy-800);
    border-radius: var(--radius-lg);
    padding: 10px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
}

.device-frame .device-bar {
    display: flex;
    gap: 6px;
    padding: 8px 10px;
}

.device-frame .device-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
}

.device-frame img {
    border-radius: 12px;
    width: 100%;
}

.floating-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--ink);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
}

.floating-chip .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green-600);
    box-shadow: 0 0 0 4px rgba(31, 157, 85, .18);
}

.floating-chip.chip-1 {
    top: -18px;
    left: -18px;
}

.floating-chip.chip-2 {
    bottom: -20px;
    right: -12px;
    background: var(--navy-950);
    color: #fff;
}

.floating-chip.chip-2 i {
    color: var(--gold-400);
}

/* Stat bar ------------------------------------------------------------- */

.stat-bar {
    background: var(--navy-900);
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.stat-bar .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 34px 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, .82);
}

.stat-item strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, .58);
}

/* Trust --------------------------------------------------------------- */

.trust-section {
    position: relative;
    background: linear-gradient(rgba(8, 13, 25, .86), rgba(8, 13, 25, .9)), url("../images/fleet.jpg") center / cover fixed;
    color: #fff;
    overflow: hidden;
}

.trust-section .eyebrow,
.trust-copy h2,
.trust-copy p {
    color: #fff;
}

.trust-section .eyebrow {
    color: var(--gold-400);
}

.trust-grid {
    display: block;
}

.trust-copy {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.trust-copy h2 {
    font-size: clamp(28px, 3.6vw, 42px);
}

.trust-copy p {
    color: rgba(255, 255, 255, .78);
    font-size: 16.5px;
    line-height: 1.75;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0 30px;
}

.trust-stats div {
    min-width: 0;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
}

.trust-stats strong,
.trust-stats span {
    display: block;
}

.trust-stats strong {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-stats span {
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.35;
}

.trust-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.trust-section .btn-outline {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .28);
    color: #fff;
}

.trust-section .btn-outline:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .44);
    color: #fff;
}
/* Generic section spacing ------------------------------------------------ */

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--white);
}

/* How it works ------------------------------------------------------------*/

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    counter-reset: step;
}

.step-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 32px 28px 28px;
    box-shadow: var(--shadow-sm);
}

.step-card .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy-950);
    color: var(--gold-400);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin-bottom: 18px;
}

.step-card .step-icon {
    position: absolute;
    top: 28px;
    right: 26px;
    font-size: 26px;
    color: var(--gold-500);
}

.step-card h3 {
    font-size: 19px;
}

.step-card p {
    font-size: 15px;
    margin-bottom: 0;
}

.step-card ul {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}

.step-card ul li {
    display: flex;
    gap: 8px;
    font-size: 13.5px;
    color: var(--slate-500);
}

.step-card ul li i {
    color: var(--green-600);
    margin-top: 2px;
    font-size: 12px;
}

/* Product showcase --------------------------------------------------------*/

.showcase {
    background: var(--navy-950);
    color: #fff;
}

.showcase .section-head h2,
.showcase .section-head p {
    color: #fff;
}

.showcase .section-head p {
    color: rgba(255, 255, 255, .62);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.showcase-card {
    background: var(--navy-800);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.showcase-card figure {
    margin: 0;
}

.showcase-card img {
    width: 100%;
}

.showcase-card figcaption {
    padding: 20px 22px 24px;
}

.showcase-card h3 {
    color: #fff;
    font-size: 17px;
}

.showcase-card p {
    color: rgba(255, 255, 255, .6);
    font-size: 14.5px;
    margin-bottom: 0;
}

/* Features ------------------------------------------------------------ */

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

.feature-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 28px 26px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-card .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold-100), #fff);
    color: var(--gold-600);
    font-size: 22px;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14.5px;
    margin-bottom: 0;
}

.feature-card.is-highlight {
    background: linear-gradient(155deg, var(--navy-950), var(--navy-800));
    border-color: transparent;
    color: #fff;
}

.feature-card.is-highlight h3 {
    color: #fff;
}

.feature-card.is-highlight p {
    color: rgba(255, 255, 255, .65);
}

.feature-card.is-highlight .icon {
    background: rgba(214, 154, 58, .18);
    color: var(--gold-400);
}

/* Offer details ---------------------------------------------------------- */

.offer-details {
    background: var(--bg);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.detail-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
}

.detail-card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--navy-950);
    color: var(--gold-400);
    font-size: 21px;
    margin-bottom: 18px;
}

.detail-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.detail-card p {
    font-size: 14.5px;
}

.detail-card ul {
    display: grid;
    gap: 9px;
    margin-top: 16px;
}

.detail-card li {
    position: relative;
    padding-left: 18px;
    color: var(--slate-500);
    font-size: 13.5px;
    line-height: 1.5;
}

.detail-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-500);
}

/* About ------------------------------------------------------------------ */

.about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 64px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media img {
    border-radius: var(--radius-lg);
}

.about-pillars {
    display: grid;
    gap: 22px;
    margin-top: 30px;
}

.pillar {
    display: flex;
    gap: 18px;
    padding: 22px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--slate-200);
}

.pillar .icon {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--navy-950);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.pillar h3 {
    font-size: 16.5px;
    margin-bottom: 6px;
}

.pillar p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Pricing ------------------------------------------------------------- */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.price-card.is-featured {
    background: var(--navy-950);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: none;
}

.price-card.is-featured h3,
.price-card.is-featured .price-row span:first-child {
    color: #fff;
}

.price-card.is-featured .price-row {
    border-color: rgba(255, 255, 255, .12);
}

.price-card.is-featured p.price-note {
    color: rgba(255, 255, 255, .6);
}

.price-tag {
    display: inline-flex;
    align-self: flex-start;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--gold-600);
    background: var(--gold-100);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.price-card.is-featured .price-tag {
    background: rgba(214, 154, 58, .18);
    color: var(--gold-400);
}

.price-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.price-note {
    font-size: 13px;
    line-height: 1.5;
    color: var(--slate-500);
    margin-bottom: 20px;
}

.price-rows {
    display: grid;
    gap: 0;
    margin-bottom: 24px;
    flex: 1;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 13px 0;
    border-bottom: 1px dashed var(--slate-200);
    font-size: 14px;
    gap: 10px;
}

.price-row span:first-child {
    color: var(--slate-500);
}

.price-row strong {
    font-family: "Poppins", sans-serif;
    color: var(--navy-950);
    font-size: 15px;
    white-space: normal;
    text-align: right;
}

.price-card.is-featured .price-row strong {
    color: #fff;
}

.price-cta {
    margin-top: auto;
    min-height: 48px;
    padding: 13px 16px;
    border-radius: 12px;
    justify-content: space-between;
    text-align: left;
    white-space: normal;
    box-shadow: none;
}

.price-cta span {
    line-height: 1.2;
}

.price-cta i {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(214, 154, 58, .14);
    color: var(--gold-600);
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.price-cta:hover i {
    transform: translateX(2px);
    background: var(--gold-500);
    color: #fff;
}

.price-card.is-featured .price-cta i {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.price-card.is-featured .price-cta:hover i {
    background: #fff;
    color: var(--gold-600);
}

.offer-recap {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 28px;
    align-items: center;
    margin-top: 34px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.offer-recap h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.offer-recap p {
    font-size: 14.5px;
    margin-bottom: 0;
}

.offer-recap p strong {
    color: var(--navy-950);
}

.recap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.recap-grid div {
    background: var(--slate-100);
    border-radius: 12px;
    padding: 16px;
}

.recap-grid span,
.recap-grid strong {
    display: block;
}

.recap-grid span {
    color: var(--slate-500);
    font-size: 12.5px;
    margin-bottom: 5px;
}

.recap-grid strong {
    color: var(--navy-950);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

.price-foot {
    text-align: center;
    margin-top: 40px;
    color: var(--slate-500);
    font-size: 14px;
}


/* FAQ ---------------------------------------------------------------- */

.faq-section {
    background: var(--bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 14.5px;
    margin-bottom: 0;
}
/* Custom project ------------------------------------------------------ */

.custom-project {
    background: linear-gradient(155deg, var(--navy-950), var(--navy-800));
    color: #fff;
}

.custom-project-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.custom-project-box h2 {
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
}

.custom-project-box p {
    color: rgba(255, 255, 255, .72);
    max-width: 720px;
    margin-bottom: 0;
}

.custom-project-actions {
    display: flex;
    justify-content: flex-end;
}

/* Contact ------------------------------------------------------------- */

.contact {
    position: relative;
    background: linear-gradient(rgba(8, 13, 25, .88), rgba(8, 13, 25, .93)), url("../images/subscribe.jpg") center / cover fixed;
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: center;
}

.contact h2 {
    color: #fff;
    font-size: clamp(26px, 3.2vw, 36px);
}

.contact-lead {
    color: rgba(255, 255, 255, .68);
    font-size: 16px;
    max-width: 460px;
}

.contact-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-md);
    padding: 34px;
    backdrop-filter: blur(6px);
}

.contact-card li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 14.5px;
    color: rgba(255, 255, 255, .85);
}

.contact-card li:last-child {
    border-bottom: none;
}

.contact-card i {
    color: var(--gold-400);
    font-size: 16px;
    margin-top: 2px;
}

.contact-card a:hover {
    color: var(--gold-400);
}

.contact-info {
    display: grid;
    gap: 4px;
}

.contact-info strong {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 14.5px;
}

.contact-info span,
.contact-info small {
    color: rgba(255, 255, 255, .72);
    font-size: 13.5px;
    line-height: 1.45;
}

.contact-info small {
    display: block;
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-row a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    transition: background .2s ease;
}

.social-row a:hover {
    background: var(--gold-500);
}

/* Footer ------------------------------------------------------------- */

.site-footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, .55);
    padding: 40px 0;
    font-size: 13.5px;
}

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

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

.footer-links a:hover {
    color: var(--gold-400);
}

.back-top {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
}

.back-top:hover {
    background: var(--gold-500);
}

/* Reveal-on-scroll utility ----------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Responsive --------------------------------------------------------- */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
        max-width: 460px;
        margin: 0 auto;
    }

    .about-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .price-card.is-featured {
        transform: none;
    }

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

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

    .stat-bar .container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .trust-section,
    .contact {
        background-attachment: scroll;
    }

    .nav-links,
    .nav-cta .btn {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .site-header.is-open .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(8, 13, 25, .98);
        padding: 18px 24px 26px;
        backdrop-filter: blur(10px);
    }

    .site-header.is-open .nav-links a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .site-header.is-open .nav-cta {
        display: none;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 70px 0;
    }

    .hero {
        padding: calc(var(--header-h) + 40px) 0 64px;
    }

    .feature-grid,
    .details-grid,
    .pricing-grid,
    .offer-recap,
    .recap-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .stat-bar .container {
        grid-template-columns: 1fr;
        padding: 26px 24px;
    }
    .trust-stats {
        grid-template-columns: 1fr;
    }

    .trust-actions .btn {
        width: 100%;
    }

    .custom-project-box {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .custom-project-actions {
        justify-content: flex-start;
    }

    .custom-project-actions .btn {
        width: 100%;
    }

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

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

    .hero-actions .btn {
        width: 100%;
    }

    .device-frame {
        transform: none;
    }

    .floating-chip {
        font-size: 12px;
        padding: 10px 12px;
    }
}
