/* ═══════════════════════════════════════════════
   HIREKART — E-Commerce Hiring Site
   Pastel · Playful · Professional
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Tokens ── */
:root {
    --bg: #FFF9F5;
    --bg-card: #FFFFFF;
    --bg-warm: #FFF3EB;
    --bg-lavender: #F0EDFF;
    --bg-mint: #E8FBF3;
    --bg-sky: #EBF5FF;
    --bg-lemon: #FFFDE7;
    --bg-rose: #FFF0F3;
    --bg-nav: #FFFFFF;

    --brand: #6C5CE7;
    --brand-light: #A29BFE;
    --brand-bg: #F0EDFF;
    --orange: #FF6B35;
    --orange-bg: #FFF3EB;
    --teal: #00B894;
    --teal-bg: #E8FBF3;
    --sky: #0984E3;
    --sky-bg: #EBF5FF;
    --pink: #E84393;
    --pink-bg: #FFF0F3;
    --gold: #FDCB6E;
    --red: #D63031;

    --text: #2D3436;
    --text-mid: #636E72;
    --text-light: #B2BEC3;
    --border: #E8E4DF;

    --font: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', monospace;

    --radius: 16px;
    --radius-sm: 10px;
    --radius-xl: 24px;
    --radius-pill: 100px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(108, 92, 231, 0.12);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

::selection {
    background: var(--brand-light);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-light);
    border-radius: 4px;
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-nav);
    border-bottom: 2px solid var(--border);
    padding: 0 2rem;
    transition: box-shadow .3s var(--ease);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--brand);
}

.nav-logo .cart-icon {
    font-size: 1.5rem;
}

.nav-logo span {
    color: var(--orange);
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.nav-links a {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-mid);
    position: relative;
    transition: color .25s var(--ease);
}

.nav-links a:hover {
    color: var(--brand);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 3px;
    background: var(--brand);
    transition: width .3s var(--ease);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cart {
    position: relative;
    background: var(--brand-bg);
    border: 2px solid var(--brand-light);
    border-radius: var(--radius-sm);
    padding: .45rem .9rem;
    font-size: .85rem;
    font-weight: 800;
    color: var(--brand);
    cursor: pointer;
    transition: all .25s var(--ease);
}

.nav-cart:hover {
    background: var(--brand);
    color: #fff;
    transform: scale(1.05);
}

.nav-cart .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--orange);
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: all .3s var(--ease);
}

/* ═══════════════════════════════════════════
   PRESENTATION BANNER (inline, below photo)
   ═══════════════════════════════════════════ */
.product-left-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.presentation-banner-inline {
    text-align: center;
    padding: .75rem 1rem;
    background: var(--bg-card);
    border: 2px solid var(--brand-light);
    border-radius: var(--radius-sm);
}

.banner-badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 800;
    padding: .25rem .85rem;
    border-radius: var(--radius-pill);
    background: var(--brand);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .4rem;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(108, 92, 231, 0);
    }
}

.presentation-banner-inline .banner-title {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -.02em;
    color: var(--brand);
    margin: 0;
    line-height: 1.3;
}

/* ═══════════════════════════════════════════
   PRODUCT HERO
   ═══════════════════════════════════════════ */
.product-hero {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left — Image */
.product-image-area {
    background: var(--bg-lavender);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 2px solid var(--border);
}

.product-image-area .top-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    padding: .3rem .8rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.product-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--brand-bg);
    border: 4px solid var(--brand-light);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform .4s var(--ease);
}

.product-photo:hover {
    transform: scale(1.05) rotate(2deg);
}

.product-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-photo .placeholder-text {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--brand);
    letter-spacing: -.03em;
}

.mini-badges {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    justify-content: center;
}

.mini-badge {
    font-size: .72rem;
    font-weight: 700;
    padding: .3rem .75rem;
    border-radius: var(--radius-pill);
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    color: var(--text-mid);
    transition: all .25s var(--ease);
}

.mini-badge:hover {
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
}

.mini-badge .emoji {
    margin-right: .25rem;
}

/* Right — Details */
.product-details {
    padding-top: .5rem;
}

.breadcrumb {
    font-size: .78rem;
    color: var(--text-light);
    margin-bottom: .75rem;
    font-weight: 600;
}

.breadcrumb span {
    color: var(--brand);
}

.product-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: .5rem;
}

.product-edition {
    display: inline-block;
    font-size: .8rem;
    font-weight: 800;
    padding: .25rem .75rem;
    border-radius: var(--radius-pill);
    background: var(--brand-bg);
    color: var(--brand);
    margin-bottom: 1rem;
}

/* Stars */
.stars-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.stars-label {
    font-size: .85rem;
    color: var(--text-mid);
    font-weight: 600;
}

/* Tags */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.25rem;
}

.ptag {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .78rem;
    font-weight: 700;
    padding: .35rem .8rem;
    border-radius: var(--radius-pill);
}

.ptag--green {
    background: var(--teal-bg);
    color: var(--teal);
}

.ptag--blue {
    background: var(--sky-bg);
    color: var(--sky);
}

.ptag--orange {
    background: var(--orange-bg);
    color: var(--orange);
}

.ptag--pink {
    background: var(--pink-bg);
    color: var(--pink);
}

/* Price */
.price-box {
    background: var(--bg-lemon);
    border: 2px solid #F6E58D;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.price-old {
    font-size: .9rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 600;
}

.price-new {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--teal);
    margin-left: .5rem;
}

.price-note {
    font-size: .78rem;
    color: var(--text-mid);
    margin-top: .25rem;
    font-weight: 600;
}

/* Stock */
.stock-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1.25rem;
    font-size: .85rem;
    font-weight: 700;
}

.stock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse-stock 2s ease-in-out infinite;
}

@keyframes pulse-stock {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.3);
    }
}

/* Summary */
.product-summary {
    font-size: .95rem;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-weight: 500;
}

/* CTAs */
.cta-group {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 800;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .25s var(--ease);
    font-family: var(--font);
}

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

.btn--primary {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.btn--primary:hover {
    box-shadow: var(--shadow-hover);
    background: #5A4BD1;
}

.btn--orange {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.btn--orange:hover {
    background: #E55A28;
    box-shadow: 0 8px 30px rgba(255, 107, 53, .2);
}

.btn--outline {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand);
}

.btn--outline:hover {
    background: var(--brand-bg);
}

.btn--ghost {
    background: var(--bg-card);
    color: var(--text-mid);
    border-color: var(--border);
    font-weight: 700;
}

.btn--ghost:hover {
    border-color: var(--brand);
    color: var(--brand);
}

/* Inline logo icons inside buttons */
.btn-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Delivery info */
.delivery-info {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    padding: 1rem 1.25rem;
    background: var(--bg-mint);
    border: 1.5px solid #B2DFDB;
    border-radius: var(--radius);
    margin-top: .5rem;
}

.delivery-row {
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.delivery-row .emoji {
    font-size: 1rem;
}

/* ═══════════════════════════════════════════
   SECTIONS — COMMON
   ═══════════════════════════════════════════ */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-icon {
    font-size: 2.5rem;
    margin-bottom: .5rem;
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 900;
    letter-spacing: -.02em;
    margin-bottom: .4rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-mid);
    font-weight: 500;
    max-width: 550px;
    margin: 0 auto;
}

.divider {
    max-width: 1200px;
    margin: 0 auto;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
}

/* ═══════════════════════════════════════════
   KEY FEATURES
   ═══════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 4px 4px 0 0;
    transition: height .3s var(--ease);
}

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

.feature-card:hover::before {
    height: 4px;
}

.feature-card:nth-child(1)::before {
    background: var(--brand);
}

.feature-card:nth-child(2)::before {
    background: var(--orange);
}

.feature-card:nth-child(3)::before {
    background: var(--teal);
}

.feature-card:nth-child(4)::before {
    background: var(--sky);
}

.feature-card:nth-child(5)::before {
    background: var(--pink);
}

.feature-card:nth-child(6)::before {
    background: var(--gold);
}

.fc-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.fc-icon--purple {
    background: var(--brand-bg);
}

.fc-icon--orange {
    background: var(--orange-bg);
}

.fc-icon--teal {
    background: var(--teal-bg);
}

.fc-icon--sky {
    background: var(--sky-bg);
}

.fc-icon--pink {
    background: var(--pink-bg);
}

.fc-icon--lemon {
    background: var(--bg-lemon);
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: .35rem;
}

.feature-card p {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.6;
    font-weight: 500;
}

/* ═══════════════════════════════════════════
   EXTRAORDINARY SECTION
   ═══════════════════════════════════════════ */
.extraordinary-section {
    background: var(--bg-warm);
    border-radius: 0;
    padding: 4rem 2rem;
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.extra-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
}

.extra-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-light);
    transform: scaleX(0);
    transition: transform .3s var(--ease);
}

.extra-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-light);
}

.extra-card:hover::after {
    transform: scaleX(1);
}

.extra-icon {
    font-size: 2rem;
    margin-bottom: .75rem;
    display: block;
}

.extra-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .4rem;
    color: var(--text);
    line-height: 1.3;
}

.extra-card p {
    font-size: .82rem;
    color: var(--text-mid);
    font-weight: 500;
    line-height: 1.55;
}

/* Alternating card subtle background tints */
.extra-card:nth-child(1) {
    border-top: 3px solid var(--brand-light);
}

.extra-card:nth-child(2) {
    border-top: 3px solid var(--orange);
}

.extra-card:nth-child(3) {
    border-top: 3px solid var(--teal);
}

.extra-card:nth-child(4) {
    border-top: 3px solid var(--sky);
}

.extra-card:nth-child(5) {
    border-top: 3px solid var(--pink);
}

/* ═══════════════════════════════════════════
   SPECIFICATIONS TABLE
   ═══════════════════════════════════════════ */
.specs-table-wrap {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    max-width: 100%;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.specs-table tr {
    transition: background .2s var(--ease);
}

.specs-table tr:hover {
    background: var(--bg-lavender);
}

.specs-table tr:nth-child(even) {
    background: var(--bg-warm);
}

.specs-table tr:nth-child(even):hover {
    background: #F8E8DC;
}

.specs-table td {
    padding: 1rem 1.5rem;
    font-size: .9rem;
    font-weight: 600;
    border-bottom: 1.5px solid var(--border);
}

.specs-table td:first-child {
    font-weight: 800;
    color: var(--text);
    width: 35%;
    white-space: nowrap;
}

.specs-table td:last-child {
    color: var(--text-mid);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.specs-table td .spec-emoji {
    margin-right: .4rem;
    font-size: 1rem;
}

/* ═══════════════════════════════════════════
   ACHIEVEMENTS (WHAT IT CAN DO)
   ═══════════════════════════════════════════ */
.achieve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.achieve-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all .25s var(--ease);
}

.achieve-item:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.achieve-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--teal-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--teal);
    font-weight: 800;
}

.achieve-item h4 {
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: .15rem;
}

.achieve-item p {
    font-size: .82rem;
    color: var(--text-mid);
    line-height: 1.5;
    font-weight: 500;
}

/* ═══════════════════════════════════════════
   USE CASES
   ═══════════════════════════════════════════ */
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.usecase-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all .3s var(--ease);
}

.usecase-card:hover {
    border-color: var(--brand-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.uc-icon {
    font-size: 2.2rem;
    margin-bottom: .75rem;
    display: block;
}

.usecase-card h4 {
    font-size: .95rem;
    font-weight: 800;
    margin-bottom: .3rem;
}

.usecase-card p {
    font-size: .8rem;
    color: var(--text-mid);
    font-weight: 500;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════ */
.reviews-bg {
    background: var(--bg-lavender);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.review-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all .25s var(--ease);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.review-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: .75rem;
}

.review-card blockquote {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .75rem;
    line-height: 1.6;
    font-style: italic;
}

.review-author {
    font-size: .8rem;
    color: var(--text-light);
    font-weight: 700;
}

/* ═══════════════════════════════════════════
   ROI
   ═══════════════════════════════════════════ */
.roi-bg {
    background: var(--bg-mint);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.roi-item {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all .25s var(--ease);
}

.roi-item:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.roi-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--teal-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.roi-item h4 {
    font-size: .92rem;
    font-weight: 800;
    margin-bottom: .15rem;
}

.roi-item p {
    font-size: .82rem;
    color: var(--text-mid);
    line-height: 1.5;
    font-weight: 500;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .25s var(--ease);
}

.faq-item:hover {
    border-color: var(--brand-light);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
    cursor: pointer;
    font-size: .95rem;
    font-weight: 800;
    color: var(--text);
    transition: background .2s var(--ease);
    user-select: none;
}

.faq-q:hover {
    background: var(--bg-lavender);
}

.faq-q .faq-icon {
    font-size: 1.2rem;
    transition: transform .3s var(--ease);
    color: var(--brand);
}

.faq-item.open .faq-q .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
    padding: 0 1.5rem;
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 500;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: .25rem 1.5rem 1.25rem;
}

/* ═══════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════ */
.final-cta {
    background: var(--bg-warm);
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}

.final-cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.final-cta-inner .big-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.final-cta-inner h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 900;
    letter-spacing: -.02em;
    margin-bottom: .75rem;
}

.final-cta-inner p {
    font-size: 1rem;
    color: var(--text-mid);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.final-cta-btns {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   CLOSING STATEMENT
   ═══════════════════════════════════════════ */
.closing-statement {
    background: var(--bg-lavender);
    border: 2px solid var(--brand-light);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin: 0 auto 2rem;
    max-width: 600px;
}

.closing-statement p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0;
}

.closing-statement strong {
    color: var(--text);
    font-weight: 900;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    text-align: center;
    padding: 2rem;
    font-size: .82rem;
    color: var(--text-light);
    font-weight: 600;
    border-top: 2px solid var(--border);
}

.footer .brand {
    color: var(--brand);
    font-weight: 800;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

.reveal-d1 {
    transition-delay: .1s;
}

.reveal-d2 {
    transition-delay: .2s;
}

.reveal-d3 {
    transition-delay: .3s;
}

.reveal-d4 {
    transition-delay: .4s;
}

.reveal-d5 {
    transition-delay: .5s;
}

.reveal-d6 {
    transition-delay: .6s;
}

/* Button click animation */
.btn.clicked {
    animation: btnPop .35s var(--ease);
}

@keyframes btnPop {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(.92);
    }

    100% {
        transform: scale(1);
    }
}

/* Cart bounce */
@keyframes cartBounce {

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

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

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

    .product-image-area {
        padding: 2rem;
    }

    .product-photo {
        width: 220px;
        height: 220px;
    }

    .product-left-col {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

/* ── Mobile landscape / small tablet ── */
@media(max-width:768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-nav);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 1.5rem;
        transition: right .4s var(--ease);
        border-left: 2px solid var(--border);
        box-shadow: -10px 0 40px rgba(0, 0, 0, .08);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .nav-cart {
        font-size: .75rem;
        padding: .35rem .7rem;
    }

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

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

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

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

    /* Specs table — stack on mobile */
    .specs-table {
        table-layout: auto;
    }

    .specs-table td {
        display: block;
        width: 100% !important;
        padding: .5rem 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal !important;
    }

    .specs-table td:first-child {
        padding-bottom: .15rem;
        border-bottom: none;
        font-size: .82rem;
    }

    .specs-table td:last-child {
        padding-top: .1rem;
        padding-bottom: .75rem;
        font-size: .82rem;
        line-height: 1.5;
    }

    .price-new {
        font-size: 1.3rem;
        margin-left: 0;
        display: block;
        margin-top: .25rem;
    }

    .stars-row {
        flex-wrap: wrap;
    }

    .final-cta-inner {
        padding: 3rem 1.5rem;
    }

    .closing-statement {
        padding: 1.25rem 1.25rem;
    }
}

/* ── Phone ── */
@media(max-width:480px) {
    .navbar {
        padding: 0 1rem;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .section {
        padding: 2.5rem 1rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-sub {
        font-size: .88rem;
    }

    .product-hero {
        padding: 1.25rem 1rem;
        gap: 1.5rem;
    }

    .product-image-area {
        padding: 1.5rem 1rem;
    }

    .product-photo {
        width: 180px;
        height: 180px;
    }

    .mini-badges {
        gap: .4rem;
    }

    .mini-badge {
        font-size: .65rem;
        padding: .25rem .6rem;
    }

    .presentation-banner-inline {
        padding: .6rem .75rem;
    }

    .presentation-banner-inline .banner-title {
        font-size: .92rem;
    }

    .product-title {
        font-size: 1.4rem;
    }

    .product-edition {
        font-size: .72rem;
    }

    .breadcrumb {
        font-size: .72rem;
    }

    .product-tags {
        gap: .35rem;
    }

    .ptag {
        font-size: .7rem;
        padding: .25rem .6rem;
    }

    .price-box {
        padding: .85rem 1rem;
    }

    .price-old {
        font-size: .8rem;
    }

    .price-new {
        font-size: 1.15rem;
    }

    .price-note {
        font-size: .72rem;
    }

    .stock-row {
        font-size: .8rem;
    }

    .product-summary {
        font-size: .88rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
        font-size: .85rem;
        padding: .7rem 1.25rem;
    }

    .delivery-info {
        padding: .75rem 1rem;
    }

    .delivery-row {
        font-size: .75rem;
    }

    /* Feature cards */
    .feature-card {
        padding: 1.25rem;
    }

    .feature-card h3 {
        font-size: .95rem;
    }

    .feature-card p {
        font-size: .82rem;
    }

    /* Use cases */
    .usecase-grid {
        grid-template-columns: 1fr;
    }

    .usecase-card {
        padding: 1.5rem 1rem;
    }

    /* Reviews */
    .review-card {
        padding: 1.25rem;
    }

    .review-card blockquote {
        font-size: .88rem;
    }

    /* ROI */
    .roi-item {
        padding: 1rem 1.25rem;
    }

    /* FAQ */
    .faq-q {
        padding: 1rem 1.25rem;
        font-size: .88rem;
    }

    .faq-a {
        font-size: .82rem;
    }

    /* Final CTA */
    .final-cta-inner {
        padding: 2.5rem 1rem;
    }

    .final-cta-inner h2 {
        font-size: 1.25rem;
    }

    .final-cta-inner p {
        font-size: .9rem;
    }

    .closing-statement {
        padding: .85rem 1rem;
    }

    .closing-statement p {
        font-size: .92rem;
    }

    .final-cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .final-cta-btns .btn {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 1rem;
        font-size: .75rem;
    }
}