/* ============================================================
   IMPORTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Gothic&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');


/* ============================================================
   TOKENS / CUSTOM PROPERTIES
   ============================================================ */
:root {
    --w-column:   200px;

    /* Mint family */
    --mint:       #2dd4bf;
    --mint-lt:    #ccfbef;
    --mint-dark:  #0d9488;

    /* Teal */
    --teal:       #14b8a6;
    --teal-lt:    #e0fdf4;

    /* Cyan */
    --cyan:       #22d3ee;
    --cyan-lt:    #ecfeff;

    /* Emerald */
    --emerald:    #34d399;
    --emerald-lt: #d1fae5;

    /* Coral */
    --coral:      #fb7185;
    --coral-lt:   #ffe4e6;

    /* Amber */
    --amber:      #fbbf24;
    --amber-lt:   #fef9c3;

    /* Neutrals */
    --ink:        #0f2420;
    --ink-2:      #1e3a35;
    --muted:      #5f7472;
    --muted-lt:   #92aaa7;
    --surface:    #f7fffe;
    --white:      #ffffff;
    --border:     #d1f5ee;

    /* Radius scale */
    --radius-sm:  1rem;
    --radius:     1.5rem;
    --radius-lg:  2.5rem;
}

html { 
    scroll-behavior: smooth; 
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    background-color: var(--white);
    color: var(--ink);
}


/* ============================================================
   HEADER
   ============================================================ */
header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 3rem;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    z-index: 999;
}
.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem; letter-spacing: 0.12em;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav ul li a {
    font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); text-decoration: none; transition: color 0.2s; font-weight: 500;
}
nav ul li a:hover,
nav ul li a.active {
    color: var(--teal);
}
.header-actions { display: flex; gap: 0.75rem; align-items: center; }
.h-btn {
    background: none; border: 1.5px solid var(--border);
    color: var(--ink-2); padding: 0.5rem 1.2rem;
    border-radius: 100px; font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem; font-weight: 500; cursor: pointer; transition: all 0.2s;
    text-decoration: none;
}
.h-btn:hover { border-color: var(--mint); color: var(--teal); }
.h-btn-cta {
    background: var(--ink); color: #fff; border: none;
    padding: 0.55rem 1.4rem; border-radius: 100px;
    font-family: 'DM Sans', sans-serif; font-size: 0.8rem;
    font-weight: 500; cursor: pointer; transition: all 0.2s;
    text-decoration: none;
}
.h-btn-cta:hover { background: var(--teal); }
.h-btn-cta.active-page {
    background: var(--mint) !important;
    color: var(--ink) !important;
}

.h-btn-cta.active-page-tryon {
    background: var(--mint) !important;
    color: var(--white) !important;
}

.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--ink); cursor: pointer; z-index: 130; }
.header-actions-mobile { display: none; margin-top: 2rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }

@media (max-width:900px) {
    .nav-toggle { display: block; }
    nav { position: fixed; top: 0; right: -100%; width: min(280px, 90vw); height: 100vh; background: #fff; transition: right .3s ease; box-shadow: -10px 0 30px rgba(0,0,0,0.1); padding: 6rem 2rem 2rem; z-index: 120; display: flex; flex-direction: column; }
    nav ul { flex-direction: column; gap: 1.5rem; }
    nav ul li a { display: block; font-size: 1.1rem; }
    header.nav-open nav { right: 0; }
    .header-actions { display: none; }
    .header-actions-mobile { display: flex; justify-content: center; }
}


/* ============================================================
   CAROUSEL
   ============================================================ */
.carousel {
    /* background-image: radial-gradient(#2b2e4f, #111126); */
    background: linear-gradient(135deg, #0d9488 0%, #e0fdf4 50%, #52746f 100%);
    height: 100vh;
    overflow: hidden;
    position: relative;
    --calculation: 1; /* 1 = forward, -1 = backward */
}

.carousel .list {
    width: min(1200px, 90vw);
    margin: auto;
    height: 100%;
    position: relative;
}

/* Guide lines (disabled, kept for reference) */
.carousel .list::after {
    content: '';
    position: absolute;
    right: var(--w-column);
    width: var(--w-column);
    height: 100%;
    /* border-left: 1px solid #324073; border-right: 1px solid #324073; */
    pointer-events: none;
}

.carousel .list::before {
    content: '';
    position: absolute;
    z-index: 10;
    height: var(--w-column);
    width: 100%;
    top: 52%;
    /* border-top: 1px solid #324073; border-bottom: 1px solid #324073; */
    pointer-events: none;
}

/* Slide item */
.carousel .list .item {
    position: absolute;
    inset: 0;

    /* Animation defaults (inactive state) */
    transform: translateX(calc(100% * var(--calculation)));
    transition: 0.5s;
    opacity: 0;
}

.carousel .list .item figure {
    position: absolute;
    width: 70%;
    top: 60%;
    transform: translateY(-50%);
}

.carousel .list .item figure img {
    width: 100%;
    transform: rotate(0deg);
    transition: transform 0.5s 0.3s;
}

/* Shadow under shoe */
.carousel .list .item figure::before {
    content: '';
    position: absolute;
    background-color: #0b0b1b;
    width: 100%;
    height: 100px;
    top: 150%;
    left: 50px;
    border-radius: 50%;
    filter: blur(50px);
}

.carousel .list .item .content {
    position: absolute;
    z-index: 20;
    width: 70%;
    height: 100%;
    right: var(--w-column);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
}

.carousel .list .item .content .category {
    font-weight: 500;
    color: var(--ink);
}

.carousel .list .item .content h2 {
    font-family: 'League Gothic', sans-serif;
    font-size: 11em;
    line-height: 1em;
    color: var(--surface);
}

.carousel .list .item .content .description {
    align-items: center;
    color: var(--white);
    max-width: 400px;
    font-size: small;
    text-align: right;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel .list .item .content .description i {
    height: 50px;
    color: #ffea7c;
    font-size: 2em;
    border: 1px solid #659cdf;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Slide CTA buttons */
.carousel .list .item .more {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    grid-template-rows: 35px;
    gap: 20px;
}

.carousel .list .item .more button,
.carousel .list .item .more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-family: 'Poppins';
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0 25px;
    white-space: nowrap;
    text-decoration: none;
}

.carousel .list .item .more button:nth-child(1),
.carousel .list .item .more a:nth-child(1) {
    background-image: linear-gradient(to right, #81baa0, #46a39c);
}

.carousel .list .item .more button:nth-child(2),
.carousel .list .item .more a:nth-child(2) {
    border: 2px solid transparent;
    background:
        linear-gradient(#242745, #242745) padding-box,
        linear-gradient(to right, #81baa0, #46a39c) border-box;
}

.carousel .list .item .more button:nth-child(2) i,
.carousel .list .item .more a:nth-child(2) i {
    margin-right: 10px;
}

/* Slide animation — active state */
.carousel .list .item.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel .list .item.active figure img {
    transform: rotate(-20deg);
}

.carousel .list .item.active .content .category,
.carousel .list .item.active .content h2,
.carousel .list .item.active .content .description,
.carousel .list .item.active .content .more {
    transform: translateX(0);
    opacity: 1;
}

/* Slide animation — exiting state */
.carousel .list .item.activeOld {
    transform: translateX(calc(-100% * var(--calculation)));
}

/* Content elements slide in from side */
.carousel .list .item .content .category,
.carousel .list .item .content h2,
.carousel .list .item .content .description,
.carousel .list .item .content .more {
    transform: translateX(calc(200px * var(--calculation)));
    transition: 0.7s;
    opacity: 0;
    transition-delay: 0.3s;
}

.carousel .list .item .content h2          { transition-delay: 0.5s; }
.carousel .list .item .content .description { transition-delay: 0.7s; }
.carousel .list .item .content .more        { transition-delay: 0.9s; }


/* ============================================================
   CAROUSEL CONTROLS — ARROWS
   ============================================================ */
.arrows {
    width: min(1200px, 90vw);
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -25px);
    pointer-events: none;
    z-index: 100;
}

.arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #659cdf55;
    background-color: #232442;
    color: #fff7;
    font-size: large;
    cursor: pointer;
    pointer-events: auto;
    transition: 0.5s;
}

.arrows button:hover {
    border-color: #659cdf;
    color: #fff;
}


/* ============================================================
   CAROUSEL CONTROLS — INDICATORS
   ============================================================ */
.indicators {
    position: absolute;
    top: 52%;
    height: var(--w-column);
    width: min(1200px, 90vw);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    pointer-events: none;
}

.indicators .number {
    font-family: 'League Gothic', sans-serif;
    font-size: 7vw;
}

.indicators ul {
    display: flex;
    gap: 10px;
}

.indicators ul li {
    width: 50px;
    height: 5px;
    background-color: var(--emerald-lt);
    border-radius: 10px;
    pointer-events: auto;
    cursor: pointer;
    transition: 0.5s;
}

.indicators ul li.active {
    background-color: yellow;
}

/* ============================================================
   GLOBAL COMPONENTS
   ============================================================ */
.container {
    width: min(1160px, 90vw);
    margin: auto;
}

/* Section label — small uppercase tag with a leading dash */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--teal);
    margin-bottom: 0.85rem;
}

.section-label::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--teal);
    border-radius: 100px;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1.5px solid var(--teal);
    color: var(--teal);
    padding: 0.72rem 1.6rem;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-outline:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-2px);
}

.btn-primary {
    display: inline-block;
    background: var(--ink);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    align-content: center;
}

.btn-primary:hover {
    background: var(--teal);
    transform: translateY(-2px);
}

.btn-cta-large {
    display: inline-block;
    background: var(--mint);
    color: var(--ink);
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-cta-large:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 212, 191, 0.3);
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 7rem 0;
    background: var(--white);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-content h2 {
    font-family: 'League Gothic', sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
}

.about-content h2 em {
    font-style: normal;
    color: var(--teal);
}

.about-content > p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 0.93rem;
    margin-bottom: 2rem;
    max-width: 440px;
}

.about-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.87rem;
    color: var(--ink-2);
    font-weight: 500;
}

.check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--teal-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check i {
    font-size: 0.58rem;
    color: var(--teal);
}

/* Image column */
.about-image {
    position: relative;
}

.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal-lt) 0%, var(--mint-lt) 55%, var(--cyan-lt) 100%);
    padding: 3rem 2rem;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-wrap img {
    width: 80%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 80, 60, 0.15));
}

/* Floating stat card */
.about-stat {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.about-stat strong {
    display: block;
    font-family: 'League Gothic', sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--teal);
}

.about-stat span {
    font-size: 0.73rem;
    color: var(--muted);
}


/* ============================================================
   FEATURES
   ============================================================ */
.features {
    padding: 7rem 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.features-header h2 {
    font-family: 'League Gothic', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--ink);
    line-height: 1;
}

.features-header h2 em {
    font-style: normal;
    color: var(--teal);
}

.features-header .sub {
    max-width: 240px;
    text-align: right;
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.7;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

/* Colored top stripe (revealed on hover) */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius) var(--radius) 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: var(--mint);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(45, 212, 191, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Per-card stripe colors */
.feature-card:nth-child(1)::before { background: linear-gradient(90deg, var(--teal), var(--cyan)); }
.feature-card:nth-child(2)::before { background: linear-gradient(90deg, var(--coral), var(--amber)); }
.feature-card:nth-child(3)::before { background: linear-gradient(90deg, var(--amber), var(--emerald)); }
/* .feature-card:nth-child(4)::before { background: linear-gradient(90deg, var(--cyan), #818cf8); }
.feature-card:nth-child(5)::before { background: linear-gradient(90deg, var(--emerald), var(--teal)); } */
/* .feature-card:nth-child(6)::before { background: linear-gradient(90deg, var(--teal), var(--mint)); } */

/* Icon wrap */
.feature-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

/* Per-card icon colors */
.feature-card:nth-child(1) .feature-icon-wrap { background: var(--teal-lt);    color: var(--teal); }
.feature-card:nth-child(2) .feature-icon-wrap { background: var(--cyan-lt);    color: #0369a1; }
.feature-card:nth-child(3) .feature-icon-wrap { background: var(--emerald-lt); color: #065f46; }
.feature-card:nth-child(4) .feature-icon-wrap { background: var(--coral-lt);   color: #9f1239; }
.feature-card:nth-child(5) .feature-icon-wrap { background: var(--amber-lt);   color: #92400e; }
.feature-card:nth-child(6) .feature-icon-wrap { background: var(--mint-lt);    color: var(--mint-dark); }

.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.55rem;
}

.feature-card p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
}


/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
    padding: 7rem 0;
    background: var(--white);
}

.benefits .container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.benefit-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Alternate layout: image on the right */
.benefit-item.reverse .benefit-visual  { order: 2; }
.benefit-item.reverse .benefit-content { order: 1; }

/* Visual box */
.benefit-visual {
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.benefit-item:nth-child(1) .benefit-visual {
    background: linear-gradient(135deg, var(--teal-lt), var(--emerald-lt));
}

.benefit-item:nth-child(2) .benefit-visual {
    background: linear-gradient(135deg, var(--coral-lt), var(--amber-lt));
}

.benefit-visual img {
    width: 75%;
    object-fit: contain;
    filter: drop-shadow(0 16px 32px rgba(0, 80, 60, 0.12));
    transition: transform 0.5s;
}

.benefit-visual:hover img {
    transform: scale(1.06) rotate(-4deg);
}

/* Text content */
.benefit-content h3 {
    font-family: 'League Gothic', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.benefit-item:nth-child(1) .benefit-content h3 em {
    font-style: normal;
    color: var(--teal);
}

.benefit-item:nth-child(2) .benefit-content h3 em {
    font-style: normal;
    color: var(--coral);
}

.benefit-content p {
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.85;
    margin-bottom: 1.75rem;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 7rem 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-header .section-label {
    justify-content: center;
}

.testimonials-header h2 {
    font-family: 'League Gothic', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--ink);
    line-height: 1;
}

.testimonials-header h2 em {
    font-style: normal;
    color: var(--teal);
}

.testimonials-header p {
    margin-top: 0.75rem;
    color: var(--muted);
    font-size: 0.87rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
    border-color: var(--mint);
    box-shadow: 0 8px 24px rgba(45, 212, 191, 0.08);
}

.testimonial-card .stars {
    display: flex;
    gap: 3px;
}

.testimonial-card .stars i {
    color: var(--amber);
    font-size: 0.72rem;
}

.testimonial-card .quote {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.75;
    flex-grow: 1;
}

.customer-info {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.customer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.customer-info .info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
}

.customer-info .info p {
    font-size: 0.73rem;
    color: var(--muted-lt);
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    padding: 6rem 0;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

/* Radial glow decoration */
.cta-banner::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

/* Override section-label color for dark background */
.cta-banner .section-label {
    color: var(--mint);
}

.cta-banner .section-label::before {
    background: var(--mint);
}

.cta-content h2 {
    font-family: 'League Gothic', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 0.75rem;
}

.cta-content h2 em {
    font-style: normal;
    color: var(--mint);
}

.cta-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    max-width: 460px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
    flex-shrink: 0;
}

.cta-note {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.28);
    text-align: right;
}


/* ============================================================
   CATALOG TEASER
   ============================================================ */
.catalog-teaser {
    padding: 5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.catalog-teaser-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    max-width: 840px;
    margin: auto;
}

.catalog-teaser-card h2 {
    font-family: 'League Gothic', sans-serif;
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.catalog-teaser-card h2 em {
    font-style: normal;
    color: var(--teal);
}

.catalog-teaser-card p {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.75;
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--ink);
    padding: 4rem 0 2rem;
    margin-top: 0;
}

footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'League Gothic', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--mint), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand-col p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.8;
    max-width: 250px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.78rem;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.footer-col h4 {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--mint);
}

.footer-col p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    text-align: left;
}

footer .footer-bottom p {
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.22);
}

.footer-badge {
    font-family: 'League Gothic', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.12);
}


/* ============================================================
   RESPONSIVE — TABLET (768px – 1023px)
   ============================================================ */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .about .container,
    .benefit-item,
    .catalog-teaser-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .benefit-item.reverse .benefit-visual,
    .benefit-item.reverse .benefit-content {
        order: unset;
    }

    .features-grid          { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid      { grid-template-columns: 1fr 1fr; }
    .cta-banner .container  { grid-template-columns: 1fr; }
    .cta-actions            { align-items: flex-start; }
    footer .container       { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   RESPONSIVE — MOBILE (≤ 767px)
   ============================================================ */
@media screen and (max-width: 767px) {
    .about .container,
    .benefit-item,
    .catalog-teaser-card,
    .cta-banner .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefit-item.reverse .benefit-visual,
    .benefit-item.reverse .benefit-content {
        order: unset;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .features-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .features-header .sub {
        text-align: left;
        max-width: 100%;
    }

    footer .container  { grid-template-columns: 1fr; gap: 2rem; }
    .cta-actions       { align-items: flex-start; }

    .about,
    .features,
    .benefits,
    .testimonials,
    .cta-banner,
    .catalog-teaser {
        padding: 4rem 0;
    }
}
