/* =========================================================
   TAPKA
========================================================= */

:root {
    --charcoal: #1c1c1b;
    --charcoal-light: #242422;
    --black: #000000;
    --lime: #c6ff2e;
    --lime-hover: #b9f31e;
    --cream: #f3f0e7;
    --white: #ffffff;
    --text-dark: #1c1c1b;
    --muted-gray: #62615d;
    --light-gray: #b5b3ac;
    --border-dark: rgba(243, 240, 231, 0.12);
    --border-light: rgba(28, 28, 27, 0.12);
    --radius-small: 14px;
    --radius-medium: 24px;
    --radius-large: 34px;
    --container: 1220px;

    --hex-line: #121212;
    --hex-line-light: rgba(0, 0, 0, 0.10);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
}

h1,
h2,
h3 {
    font-family: "Poppins", sans-serif;
    line-height: 1.08;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(28, 28, 27, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo {
    width: 145px;
    height: auto;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.desktop-nav a {
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.22s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--white);
}

.nav-cta {
    flex-shrink: 0;
    margin-left: 3px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 48px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--lime);
    color: var(--charcoal);
}

.btn-primary:hover {
    background: var(--lime-hover);
}

.btn-outline {
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
    border-color: var(--white);
}

.btn-dark {
    color: var(--white);
    background: var(--charcoal);
}

.btn-dark:hover {
    background: var(--black);
}

.btn-cta-outline {
    color: var(--charcoal);
    background: transparent;
    border: 1px solid rgba(28, 28, 27, 0.55);
}

.btn-cta-outline:hover {
    border-color: var(--charcoal);
    background: rgba(28, 28, 27, 0.06);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: transparent;
}

.menu-toggle span {
    width: 23px;
    height: 2px;
    background: var(--white);
    transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   HEX
========================================================= */

.hero,
.dark-section,
.page-hero,
.about-section {
    position: relative;
    overflow: hidden;
}

.hex-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hex-field svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hero > .container,
.dark-section > .container,
.page-hero > .container,
.about-section > .container {
    position: relative;
    z-index: 2;
}

.product-card-hex,
.product-detail-hex {
    z-index: 0;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 660px;
    display: flex;
    align-items: center;
    color: var(--white);
    background: var(--charcoal);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 15% 48%,
            rgba(198, 255, 46, 0.045),
            transparent 32%
        );
}

.hero-grid {
    padding-block: 82px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 72px;
}

.hero-content {
    max-width: 590px;
}

.hero h1 {
    font-size: clamp(46px, 5.1vw, 72px);
    letter-spacing: -2.8px;
}

.hero h1 span {
    display: block;
    color: var(--lime);
}

.hero-text {
    max-width: 580px;
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {
    width: 100%;
    max-width: 560px;
    justify-self: end;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-stat-main {
    min-height: 285px;
    padding: 46px 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 1px solid rgba(198, 255, 46, 0.42);
    border-bottom: 1px solid rgba(198, 255, 46, 0.16);
}

.hero-stat-main .stat-number {
    display: block;
    color: var(--lime);
    font-family: "Poppins", sans-serif;
    font-size: clamp(84px, 8vw, 122px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -5px;
}

.hero-stat-main > span {
    max-width: 320px;
    margin-top: 21px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 1.7px;
}

.hero-stat-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.hero-stat-small {
    min-height: 150px;
    padding: 27px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background: rgba(28, 28, 27, 0.58);
    backdrop-filter: blur(6px);
}

.hero-stat-small .stat-number {
    display: block;
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: clamp(42px, 4.5vw, 62px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2.4px;
}

.hero-stat-small > span {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}


/* =========================================================
   GENERAL
========================================================= */

.section {
    padding-block: 104px;
}

.section-heading {
    width: min(100%, 720px);
    margin-bottom: 52px;
}

.section-heading h2 {
    font-size: clamp(35px, 4vw, 55px);
    letter-spacing: -1.8px;
}

.section-heading p {
    max-width: 650px;
    margin-top: 17px;
    color: var(--muted-gray);
    font-size: 16px;
    line-height: 1.7;
}

.small-accent {
    display: inline-block;
    margin-bottom: 17px;
    color: var(--lime);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.light-background-accent {
    width: fit-content;
    padding: 7px 10px;
    margin-bottom: 18px;
    border-radius: 7px;
    color: var(--lime);
    background: var(--charcoal);
    line-height: 1;
}

.center-button {
    margin-top: 44px;
    display: flex;
    justify-content: center;
}


.inline-lime {
    color: var(--lime);
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-medium);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.09);
}

.product-image-link {
    display: block;
}

.product-image-container {
    position: relative;
    height: 385px;
    padding: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dark-product,
.sticker-product {
    background: var(--charcoal);
}

.light-product {
    background: #f2f2ee;
}

.product-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.035);
}

.product-content {
    padding: 28px;
}

.product-content h3,
.product-content h2 {
    font-size: 20px;
    letter-spacing: -0.45px;
}

.product-content p {
    margin-top: 13px;
    color: var(--muted-gray);
    font-size: 14px;
    line-height: 1.65;
}

.product-type {
    display: block;
    margin-bottom: 7px;
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.text-link {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
}

.text-link span {
    transition: transform 0.22s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.coming-badge {
    position: absolute;
    z-index: 4;
    top: 20px;
    right: 20px;
    padding: 7px 12px;
    border-radius: 50px;
    color: var(--charcoal);
    background: var(--lime);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.large-badge {
    top: 28px;
    right: 28px;
}

.products-page-section {
    background: var(--cream);
}

.large-products {
    align-items: stretch;
}

.large-products .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.large-products .product-image-link {
    flex-shrink: 0;
}

.large-products .product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.large-products .product-content h2 {
    min-height: 66px;
}

.large-products .product-content p {
    margin-top: 14px;
    margin-bottom: 0;
}

.product-card-button {
    width: fit-content;
    margin-top: auto;
    align-self: flex-start;
}


/* =========================================================
   DARK
========================================================= */

.dark-section {
    color: var(--white);
    background: var(--charcoal);
}

.light-heading h2 {
    color: var(--white);
}

.light-heading h2 span {
    color: var(--lime);
}

.light-heading p {
    color: rgba(255, 255, 255, 0.62);
}


/* =========================================================
   STEPS
========================================================= */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.step-card {
    position: relative;
    min-height: 260px;
    padding: 32px;
    background: rgba(28, 28, 27, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-medium);
}

.step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    color: var(--charcoal);
    background: var(--lime);
    font-weight: 700;
}

.step-card h3 {
    margin-top: 31px;
    font-size: 19px;
}

.step-card p {
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   VALUE
========================================================= */

.value-section {
    background: var(--cream);
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 95px;
}

.value-content h2 {
    font-size: clamp(39px, 4.3vw, 60px);
    letter-spacing: -2px;
}

.value-content h2 span {
    display: block;
    color: var(--lime);
}

.value-content p {
    max-width: 600px;
    margin-top: 21px;
    color: var(--muted-gray);
    font-size: 16px;
    line-height: 1.75;
}

.value-content .btn {
    margin-top: 29px;
}


/* =========================================================
   NFC PHONE
========================================================= */

.nfc-demo {
    min-height: 440px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nfc-phone {
    position: relative;
    z-index: 2;
    width: 215px;
    height: 395px;
    padding: 10px;
    background: #151515;
    border-radius: 35px;
    box-shadow:
        0 30px 65px rgba(0, 0, 0, 0.22);
}

.phone-speaker {
    position: absolute;
    top: 18px;
    left: 50%;
    width: 62px;
    height: 7px;
    transform: translateX(-50%);
    background: #050505;
    border-radius: 10px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    text-align: center;
    background: var(--cream);
    border-radius: 27px;
}

.screen-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--lime);
    font-weight: 700;
}

.phone-screen strong {
    font-family: "Poppins", sans-serif;
}

.phone-screen span {
    color: var(--muted-gray);
    font-size: 12px;
}

.nfc-waves {
    position: absolute;
    left: 66%;
    top: 50%;
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
}

.nfc-waves span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--lime);
    border-radius: 50%;
}

.nfc-waves span:nth-child(1) {
    width: 120px;
    height: 120px;
    opacity: 0.4;
}

.nfc-waves span:nth-child(2) {
    width: 200px;
    height: 200px;
    opacity: 0.24;
}

.nfc-waves span:nth-child(3) {
    width: 280px;
    height: 280px;
    opacity: 0.11;
}


/* =========================================================
   NFC PREVIEW
========================================================= */

.nfc-preview {
    padding-top: 0;
}

.split-card {
    padding: 65px;
    display: grid;
    grid-template-columns: 1.1fr 0.65fr;
    align-items: center;
    gap: 70px;
    overflow: hidden;
    color: var(--white);
    background: var(--charcoal);
    border-radius: var(--radius-large);
}

.split-card h2 {
    font-size: clamp(35px, 4vw, 53px);
}

.split-card p {
    max-width: 620px;
    margin-top: 19px;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.75;
}

.split-card .text-link {
    color: var(--lime);
}

.nfc-visual {
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nfc-chip-stage {
    position: relative;
    width: min(100%, 350px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.nfc-chip-stage::before {
    content: "";
    position: absolute;
    width: 74%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(198, 255, 46, 0.13) 0%,
        rgba(198, 255, 46, 0.045) 43%,
        transparent 72%
    );
    filter: blur(3px);
    z-index: -2;
}

.nfc-chip {
    position: relative;
    z-index: 2;
    width: 190px;
    aspect-ratio: 1;
    border: 1px solid rgba(198, 255, 46, 0.58);
    border-radius: 27px;
    background:
        linear-gradient(
            145deg,
            #292927 0%,
            #1d1d1c 48%,
            #151514 100%
        );
    box-shadow:
        0 30px 55px rgba(0, 0, 0, 0.34),
        0 0 35px rgba(198, 255, 46, 0.055),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: rotate(-4deg);
    animation: nfcChipFloat 5s ease-in-out infinite;
}

.nfc-chip-inner {
    position: absolute;
    inset: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 19px;
    background:
        linear-gradient(
            90deg,
            transparent 49.6%,
            rgba(198, 255, 46, 0.055) 50%,
            transparent 50.4%
        ),
        linear-gradient(
            0deg,
            transparent 49.6%,
            rgba(198, 255, 46, 0.045) 50%,
            transparent 50.4%
        ),
        rgba(10, 10, 10, 0.22);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.18);
}

.nfc-chip-inner::before,
.nfc-chip-inner::after {
    content: "";
    position: absolute;
    width: 54px;
    height: 54px;
    opacity: 0.55;
}

.nfc-chip-inner::before {
    top: 11px;
    left: 11px;
    border-top: 1px solid rgba(198, 255, 46, 0.35);
    border-left: 1px solid rgba(198, 255, 46, 0.35);
    border-radius: 10px 0 0 0;
}

.nfc-chip-inner::after {
    right: 11px;
    bottom: 11px;
    border-right: 1px solid rgba(198, 255, 46, 0.35);
    border-bottom: 1px solid rgba(198, 255, 46, 0.35);
    border-radius: 0 0 10px 0;
}

.chip-micro-label {
    position: absolute;
    top: 18px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.nfc-chip-inner strong {
    margin-top: 10px;
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 1px;
}

.nfc-chip-inner small {
    margin-top: 8px;
    color: var(--lime);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.chip-nfc-mark {
    position: relative;
    width: 60px;
    height: 60px;
}

.chip-nfc-mark span {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid transparent;
    border-top-color: var(--lime);
    border-right-color: var(--lime);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.chip-nfc-mark span:nth-of-type(1) {
    width: 18px;
    height: 18px;
}

.chip-nfc-mark span:nth-of-type(2) {
    width: 36px;
    height: 36px;
    opacity: 0.72;
}

.chip-nfc-mark span:nth-of-type(3) {
    width: 54px;
    height: 54px;
    opacity: 0.42;
}

.chip-nfc-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 16px rgba(198, 255, 46, 0.55);
    transform: translate(-50%, -50%);
}

.chip-pins {
    position: absolute;
    opacity: 0.8;
}

.chip-pins-left,
.chip-pins-right {
    top: 27px;
    width: 28px;
    height: 136px;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0 9px,
        rgba(198, 255, 46, 0.72) 9px 11px,
        transparent 11px 21px
    );
}

.chip-pins-left {
    left: -28px;
}

.chip-pins-right {
    right: -28px;
}

.chip-pins-top,
.chip-pins-bottom {
    left: 27px;
    width: 136px;
    height: 28px;
    background: repeating-linear-gradient(
        to right,
        transparent 0 9px,
        rgba(198, 255, 46, 0.72) 9px 11px,
        transparent 11px 21px
    );
}

.chip-pins-top {
    top: -28px;
}

.chip-pins-bottom {
    bottom: -28px;
}

.nfc-chip-waves {
    position: absolute;
    top: 50%;
    left: calc(50% + 76px);
    z-index: 1;
    width: 120px;
    height: 190px;
    transform: translateY(-50%);
    pointer-events: none;
}

.nfc-chip-waves span {
    position: absolute;
    top: 50%;
    left: 0;
    border: 1px solid rgba(198, 255, 46, 0.34);
    border-left: 0;
    border-radius: 0 999px 999px 0;
    transform: translateY(-50%);
    animation: nfcWavePulse 2.8s ease-in-out infinite;
}

.nfc-chip-waves span:nth-child(1) {
    width: 34px;
    height: 68px;
}

.nfc-chip-waves span:nth-child(2) {
    width: 67px;
    height: 124px;
    opacity: 0.65;
    animation-delay: 0.16s;
}

.nfc-chip-waves span:nth-child(3) {
    width: 100px;
    height: 180px;
    opacity: 0.32;
    animation-delay: 0.32s;
}

@keyframes nfcChipFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-4deg);
    }

    50% {
        transform: translateY(-7px) rotate(-4deg);
    }
}

@keyframes nfcWavePulse {
    0%,
    100% {
        opacity: 0.22;
        transform: translateY(-50%) scale(0.96);
    }

    50% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .nfc-chip,
    .nfc-chip-waves span {
        animation: none;
    }
}


/* =========================================================
   CONVERSION INFO
========================================================= */

.conversion-info-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--charcoal);
}

.conversion-info-section::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -170px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(198, 255, 46, 0.045),
        transparent 68%
    );
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.conversion-info-section > .container {
    position: relative;
    z-index: 2;
}

.conversion-info-heading {
    width: min(100%, 760px);
    margin-bottom: 48px;
}

.conversion-info-heading .small-accent {
    margin-bottom: 18px;
}

.conversion-info-section .light-background-accent {
    color: var(--lime);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.conversion-info-heading h2 {
    color: var(--white);
    font-size: clamp(35px, 4vw, 55px);
    letter-spacing: -1.8px;
}

.conversion-info-heading h2 span {
    display: block;
    color: var(--lime);
}

.conversion-info-heading p {
    max-width: 610px;
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1.7;
}

.conversion-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.conversion-info-card {
    position: relative;
    min-height: 235px;
    padding: 29px 27px 27px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(
        145deg,
        rgba(36, 36, 34, 0.96),
        rgba(28, 28, 27, 0.96)
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-medium);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.conversion-info-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -76px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(198, 255, 46, 0.075),
        transparent 68%
    );
    pointer-events: none;
}

.conversion-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(198, 255, 46, 0.34);
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.23),
        0 0 0 1px rgba(198, 255, 46, 0.035);
}

.conversion-info-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    background: var(--lime);
    border-radius: 13px;
    box-shadow: 0 8px 20px rgba(198, 255, 46, 0.08);
}

.conversion-info-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.conversion-info-card h3 {
    margin-top: 29px;
    color: var(--white);
    font-size: 19px;
    letter-spacing: -0.4px;
}

.conversion-info-card p {
    max-width: 250px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   HOME CASE STUDY
========================================================= */

.users-preview.home-case-study-section {
    background: var(--white);
}

.home-case-study-section .section-heading h2 {
    color: var(--charcoal);
}

.home-case-study-section .section-heading .inline-lime {
    display: inline;
    color: var(--lime);
}

.home-case-study {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    overflow: hidden;
    border: 1px solid rgba(28, 28, 27, 0.10);
    border-radius: var(--radius-large);
    background: var(--white);
    box-shadow:
        0 28px 70px rgba(28, 28, 27, 0.10),
        0 4px 14px rgba(28, 28, 27, 0.035);
}

.home-case-study-photo {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    background: var(--charcoal);
}

.home-case-study-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-case-study-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-case-study-content h3 {
    max-width: 560px;
    margin-top: 11px;
    font-size: clamp(30px, 3vw, 43px);
    letter-spacing: -1.3px;
}

.case-study-intro {
    max-width: 600px;
    margin-top: 17px;
    color: var(--muted-gray);
    font-size: 14px;
    line-height: 1.75;
}

.case-study-metrics {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.case-study-metric {
    min-height: 106px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border-light);
    border-radius: 15px;
    background: var(--cream);
}

.case-study-metric strong {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1px;
}

.case-study-metric span {
    margin-top: 7px;
    color: var(--muted-gray);
    font-size: 11px;
    font-weight: 600;
}

.highlight-metric {
    color: var(--charcoal);
    background: var(--lime);
    border-color: var(--lime);
}

.highlight-metric span {
    color: rgba(28, 28, 27, 0.62);
}

.case-study-quote {
    margin-top: 26px;
    padding: 22px 24px;
    color: var(--white);
    background: var(--charcoal);
    border-radius: 17px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

.case-study-quote span {
    margin-top: 12px;
    display: block;
    color: var(--lime);
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.placeholder-metric strong {
    opacity: 0.88;
}

.placeholder-note,
.case-study-development-note,
.spec-development-note {
    color: var(--muted-gray);
    font-size: 11px;
    line-height: 1.6;
}

.placeholder-note {
    margin-top: 16px;
}

.case-study-link {
    width: fit-content;
    margin-top: 15px;
}


/* =========================================================
   USERS PAGE CASE STUDIES
========================================================= */

.case-studies-section {
    background: var(--white);
}

.case-study-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-study-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    min-height: 390px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-large);
    background: var(--cream);
}

.case-study-card:nth-child(even) {
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
}

.case-study-card:nth-child(even) .case-study-card-image {
    order: 2;
}

.case-study-card:nth-child(even) .case-study-card-content {
    order: 1;
}

.case-study-card-image {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    background: var(--charcoal);
}

.case-study-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.case-study-card-content {
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-study-card-content h3 {
    margin-top: 10px;
    font-size: 31px;
    letter-spacing: -0.9px;
}

.case-study-card-content > p {
    max-width: 650px;
    margin-top: 14px;
    color: var(--muted-gray);
    font-size: 14px;
    line-height: 1.75;
}

.case-study-card-metrics {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.case-study-card-metrics > div {
    min-height: 94px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: var(--white);
}

.case-study-card-metrics strong {
    font-family: "Poppins", sans-serif;
    font-size: 23px;
    line-height: 1;
    letter-spacing: -0.7px;
}

.case-study-card-metrics span {
    margin-top: 7px;
    color: var(--muted-gray);
    font-size: 10px;
    font-weight: 600;
}

.case-study-development-note {
    margin-top: 22px;
}


/* =========================================================
   USERS PREVIEW
========================================================= */

.users-preview {
    background: #eae7dd;
}

.users-preview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
    gap: 24px;
}

.user-preview-card {
    min-height: 340px;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-medium);
    border: 1px solid var(--border-light);
}

.user-preview-photo {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    background: var(--charcoal);
}

.user-preview-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.user-preview-card:hover .user-preview-image {
    transform: scale(1.035);
}

.user-preview-content {
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user-preview-content h3 {
    margin-top: 11px;
    font-size: 25px;
    letter-spacing: -0.6px;
}

.user-preview-content p {
    margin-top: 15px;
    color: var(--muted-gray);
    font-size: 14px;
    line-height: 1.75;
}

.business-label {
    color: var(--muted-gray);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.testimonial-card {
    min-height: 340px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius-medium);
    background: var(--lime);
}

.quote-mark {
    font-family: "Poppins", sans-serif;
    font-size: 76px;
    line-height: 0.8;
}

.testimonial-card p {
    margin-block: 32px;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: -0.45px;
}

.testimonial-card > span:last-child {
    color: rgba(28, 28, 27, 0.65);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    color: var(--white);
    background: var(--charcoal);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr;
    gap: 95px;
}

.about-title h2 {
    font-size: clamp(35px, 4vw, 54px);
    letter-spacing: -1.8px;
}

.about-text {
    padding-top: 48px;
}

.about-text p {
    color: rgba(255, 255, 255, 0.67);
    font-size: 16px;
    line-height: 1.8;
}

.about-text p + p {
    margin-top: 22px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    background: var(--cream);
}

.cta-box {
    padding: 70px;
    text-align: center;
    background: var(--lime);
    border-radius: var(--radius-large);
}

.cta-box h2 {
    max-width: 840px;
    margin-inline: auto;
    font-size: clamp(35px, 4.4vw, 59px);
    letter-spacing: -1.9px;
}

.cta-box p {
    max-width: 650px;
    margin: 19px auto 0;
    color: rgba(28, 28, 27, 0.68);
    line-height: 1.7;
}

.cta-box > .btn {
    margin-top: 30px;
}

.cta-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-actions .btn {
    margin: 0;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    align-items: center;
    gap: 105px;
}

.contact-heading h2 {
    font-size: clamp(40px, 4.5vw, 62px);
    letter-spacing: -2px;
}

.contact-heading h2 span {
    display: block;
    color: var(--lime);
}

.contact-heading p {
    max-width: 550px;
    margin-top: 20px;
    color: var(--muted-gray);
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.contact-item {
    padding: 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-small);
    transition:
        transform 0.22s ease,
        background 0.22s ease;
}

.contact-item:hover {
    transform: translateX(4px);
    background: var(--cream);
}

.contact-item small {
    color: var(--muted-gray);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-item strong {
    margin-top: 6px;
    font-size: 15px;
}


/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
    min-height: 440px;
    display: flex;
    align-items: center;
    color: var(--white);
    background: var(--charcoal);
}

.page-hero-content {
    padding-block: 80px;
}

.page-hero h1 {
    max-width: 830px;
    font-size: clamp(46px, 5.7vw, 76px);
    letter-spacing: -2.8px;
}

.page-hero h1 span {
    display: block;
    color: var(--lime);
}

.page-hero p {
    max-width: 650px;
    margin-top: 23px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   INFO
========================================================= */

.info-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 90px;
}

.info-block h2 {
    max-width: 540px;
    font-size: clamp(34px, 3.7vw, 52px);
    letter-spacing: -1.7px;
}

.info-copy {
    padding-top: 34px;
}

.info-block p {
    color: var(--muted-gray);
    font-size: 16px;
    line-height: 1.8;
}

.info-block p + p {
    margin-top: 20px;
}

.nfc-explanation-section,
.product-info-section {
    background: var(--cream);
}


/* =========================================================
   NFC FLOW
========================================================= */

.nfc-process-section {
    min-height: 560px;
}

.nfc-flow {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        42px
        minmax(0, 1fr)
        42px
        minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.flow-card {
    min-height: 275px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    background: rgba(28, 28, 27, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-medium);
}

.flow-symbol {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    background: var(--lime);
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
}

.flow-card h3 {
    margin-top: 28px;
    color: var(--white);
    font-size: 20px;
}

.flow-card p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.65;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    font-size: 34px;
}


/* =========================================================
   NFC USE CASES
========================================================= */

.nfc-uses-section {
    background: var(--cream);
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.use-card {
    min-height: 220px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-medium);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.use-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.07);
}

.use-card-number {
    margin-bottom: 35px;
    color: var(--lime);
    font-size: 11px;
    font-weight: 700;
}

.use-card h3 {
    font-size: 19px;
}

.use-card p {
    margin-top: 12px;
    color: var(--muted-gray);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   PRODUCT DETAIL
========================================================= */

.product-detail {
    padding-block: 76px 96px;
    background: var(--cream);
}

.product-detail-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(0, 0.98fr);
    align-items: center;
    gap: 72px;
}

.product-detail-image {
    position: relative;
    min-height: 520px;
    height: 520px;
    padding: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-large);
    border: 1px solid rgba(28, 28, 27, 0.08);
}

.product-detail-image img {
    position: relative;
    z-index: 2;
    width: auto;
    height: auto;
    max-width: 82%;
    max-height: 425px;
    object-fit: contain;
    filter:
        drop-shadow(
            0 22px 30px rgba(0, 0, 0, 0.16)
        );
}

.product-detail-content {
    max-width: 545px;
}

.back-link {
    display: inline-flex;
    margin-bottom: 26px;
    color: var(--muted-gray);
    font-size: 13px;
    font-weight: 600;
}

.product-detail-content .small-accent {
    display: block;
}

.product-detail-content h1 {
    max-width: 540px;
    font-size: clamp(36px, 3.8vw, 54px);
    letter-spacing: -1.8px;
    line-height: 1.12;
}

.product-lead {
    max-width: 525px;
    margin-top: 21px;
    color: var(--muted-gray);
    font-size: 16px;
    line-height: 1.75;
}

.product-features {
    margin-block: 29px 34px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.product-features > div {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14px;
    line-height: 1.45;
}

.feature-check {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    background: var(--lime);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   PRODUCT SPECIFICATIONS
========================================================= */

.product-specs-section {
    background: var(--white);
}

.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--border-light);
    border-left: 1px solid var(--border-light);
    border-radius: var(--radius-medium);
    overflow: hidden;
}

.spec-item {
    min-height: 145px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.spec-item span {
    color: var(--muted-gray);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.spec-item strong {
    margin-top: 11px;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.4px;
}

.spec-development-note {
    margin-top: 17px;
}


/* =========================================================
   PRODUCT FAQ
========================================================= */

.product-faq-section {
    color: var(--white);
    background: var(--charcoal);
}

.product-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 80px;
}

.product-faq-heading {
    position: sticky;
    top: 120px;
}

.product-faq-heading h2 {
    max-width: 490px;
    font-size: clamp(36px, 4vw, 55px);
    letter-spacing: -1.8px;
}

.product-faq-heading h2 span {
    display: block;
    color: var(--lime);
}

.product-faq-heading p {
    max-width: 470px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.75;
}

.faq-list {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item summary {
    position: relative;
    padding: 24px 52px 24px 0;
    cursor: pointer;
    list-style: none;
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before,
.faq-item summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 17px;
    height: 2px;
    background: var(--lime);
    transform: translateY(-50%);
    transition: transform 0.22s ease;
}

.faq-item summary::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(0deg);
}

.faq-item p {
    max-width: 720px;
    padding: 0 52px 24px 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   USER GALLERY
========================================================= */

.users-gallery-section {
    background: var(--cream);
}

.customer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.customer-grid-six {
    row-gap: 28px;
}

.customer-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-medium);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.customer-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 44px rgba(28, 28, 27, 0.08);
}

.customer-image {
    position: relative;
    height: 315px;
    overflow: hidden;
    background: var(--charcoal);
}

.customer-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.customer-card:hover .customer-photo {
    transform: scale(1.035);
}

.customer-content {
    padding: 27px;
}

.customer-content h3 {
    margin-top: 9px;
    font-size: 20px;
    letter-spacing: -0.4px;
}

.customer-content p {
    margin-top: 12px;
    color: var(--muted-gray);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {
    position: relative;
    color: var(--white);
    background: var(--charcoal);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.review-card {
    min-height: 285px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-medium);
}

.stars {
    color: var(--lime);
    letter-spacing: 3px;
}

.review-card p {
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
}

.review-author {
    margin-top: auto;
    padding-top: 28px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   PRODUCT CARD PRICING
========================================================= */

.product-price {
    margin-top: 23px;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-price strong {
    font-family: "Poppins", sans-serif;
    font-size: 23px;
    line-height: 1;
    letter-spacing: -0.7px;
    color: var(--text-dark);
}

.product-price span {
    color: var(--muted-gray);
    font-size: 12px;
}

.product-price-soon strong {
    font-size: 19px;
}

.large-products .product-price {
    margin-top: 23px;
}

.large-products .product-card-button {
    margin-top: auto;
}


/* =========================================================
   PRICING
========================================================= */

.pricing-section {
    background: #eae7dd;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 940px;
}

.pricing-card {
    position: relative;
    min-height: 540px;
    padding: 38px;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-large);
}

.pricing-card-featured {
    color: var(--white);
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.pricing-card-top {
    max-width: 430px;
}

.pricing-label {
    color: var(--lime);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.pricing-card:not(.pricing-card-featured) .pricing-label {
    color: var(--charcoal);
}

.pricing-card h3 {
    margin-top: 15px;
    font-size: 30px;
    letter-spacing: -1px;
}

.pricing-card-top p {
    margin-top: 13px;
    color: var(--muted-gray);
    font-size: 14px;
    line-height: 1.7;
}

.pricing-card-featured .pricing-card-top p {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-value {
    margin-top: 36px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.pricing-value strong {
    font-family: "Poppins", sans-serif;
    font-size: 64px;
    line-height: 0.95;
    letter-spacing: -3px;
}

.pricing-value > div {
    padding-bottom: 5px;
    display: flex;
    flex-direction: column;
}

.pricing-value span {
    font-weight: 700;
}

.pricing-value small {
    color: var(--muted-gray);
    font-size: 11px;
}

.pricing-card-featured .pricing-value small {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-old-price {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 13px;
    text-decoration: line-through;
}

.pricing-divider {
    height: 1px;
    margin-block: 30px;
    background: var(--border-light);
}

.pricing-card-featured .pricing-divider {
    background: rgba(255, 255, 255, 0.12);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features span {
    color: var(--muted-gray);
    font-size: 13px;
}

.pricing-card-featured .pricing-features span {
    color: rgba(255, 255, 255, 0.72);
}

.pricing-card .pricing-features {
    margin-bottom: 34px;
}

.pricing-button {
    width: fit-content;
    margin-top: auto;
}

.pricing-card-featured .pricing-button {
    color: var(--charcoal);
    background: var(--lime);
}

.pricing-card-featured .pricing-button:hover {
    background: var(--lime-hover);
}

.pricing-discount {
    position: absolute;
    top: 25px;
    right: 25px;
    padding: 8px 12px;
    color: var(--charcoal);
    background: var(--lime);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   PRODUCT DETAIL PRICING
========================================================= */

.product-detail-pricing {
    margin: 0 0 26px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    box-shadow:
        0 12px 30px rgba(28, 28, 27, 0.045);
}

.product-detail-price-primary {
    padding: 20px 22px 18px;
}

.product-detail-price-label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted-gray);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.product-detail-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-detail-price-row strong {
    font-family: "Poppins", sans-serif;
    color: var(--charcoal);
    font-size: 31px;
    line-height: 1;
    letter-spacing: -1px;
}

.product-detail-price-row span {
    color: var(--muted-gray);
    font-size: 12px;
    font-weight: 600;
}

.product-detail-offer {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    background: var(--charcoal);
    border-top: 1px solid rgba(28, 28, 27, 0.08);
}

.product-detail-offer-badge {
    min-width: 52px;
    height: 32px;
    padding-inline: 10px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    background: var(--lime);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.product-detail-offer > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-detail-offer strong {
    font-size: 13px;
    line-height: 1.4;
}

.product-detail-offer > div > span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    line-height: 1.45;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    position: relative;
    padding-top: 0;
    overflow: hidden;
    color: var(--white);
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer::before {
    content: "";
    position: absolute;
    top: -260px;
    left: -210px;
    width: 520px;
    height: 520px;
    pointer-events: none;
    background:
        radial-gradient(
            circle,
            rgba(198, 255, 46, 0.055),
            transparent 68%
        );
}

.footer-grid {
    position: relative;
    z-index: 1;
    padding-block: 58px 48px;
    display: grid;
    grid-template-columns:
        minmax(300px, 1.55fr)
        0.75fr
        0.72fr
        minmax(220px, 0.95fr);
    align-items: start;
    gap: 54px;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
}

.footer-brand .footer-logo {
    width: 155px;
    height: auto;
}

.footer-brand p {
    max-width: 330px;
    margin-top: 21px;
    color: rgba(255, 255, 255, 0.49);
    font-size: 13px;
    line-height: 1.75;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-heading {
    margin-bottom: 8px;
    color: var(--lime);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.55px;
    text-transform: uppercase;
}

.footer-column a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.5;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-column a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-contact a:first-of-type {
    color: rgba(255, 255, 255, 0.78);
}

.footer-contact a:hover {
    color: var(--lime);
}

.footer-location {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.36);
    font-size: 12px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    min-height: 67px;
    padding-block: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.36);
    font-size: 11px;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}



/* =========================================================
   PRODUCT PURCHASE INFO
========================================================= */

.product-purchase-info {
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.purchase-info-item {
    min-height: 126px;
    padding: 17px 16px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.purchase-info-item > span {
    color: var(--muted-gray);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.purchase-info-item strong {
    margin-top: 7px;
    color: var(--charcoal);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 1.35;
}

.purchase-info-item small {
    margin-top: 7px;
    color: var(--muted-gray);
    font-size: 10px;
    line-height: 1.5;
}

.product-order-button {
    min-width: 155px;
}

.product-purchase-info-coming {
    margin-top: 4px;
}


/* =========================================================
   ORDER PAGE
========================================================= */

.order-page-hero {
    min-height: 500px;
}

.order-page-hero .page-hero-content {
    padding-block: 90px;
}

.order-page-hero .small-accent {
    margin-bottom: 20px;
}

.order-process-section {
    padding-block: 54px;
    background: var(--white);
    border-bottom: 1px solid rgba(28, 28, 27, 0.08);
}

.order-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.order-process-item {
    min-height: 138px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    background: #fbfaf6;
}

.order-process-item > span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    background: var(--lime);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
}

.order-process-item strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.35;
}

.order-process-item p {
    margin-top: 7px;
    color: var(--muted-gray);
    font-size: 12px;
    line-height: 1.6;
}

.order-form-section {
    padding-top: 58px;
    background: var(--cream);
    scroll-margin-top: 88px;
}

.order-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
    align-items: start;
    gap: 30px;
}

.order-form-card {
    padding: 44px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-large);
    box-shadow: 0 18px 50px rgba(28, 28, 27, 0.055);
}

.order-form-heading {
    max-width: 700px;
    margin-bottom: 38px;
}

.order-form-heading h2 {
    font-size: clamp(34px, 3.7vw, 50px);
    letter-spacing: -1.7px;
}

.order-form-heading p {
    max-width: 650px;
    margin-top: 15px;
    color: var(--muted-gray);
    font-size: 14px;
    line-height: 1.7;
}

.order-form-section-block {
    padding-block: 32px;
    border-top: 1px solid rgba(28, 28, 27, 0.10);
}

.order-form-section-title {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.order-form-section-title > span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    background: var(--lime);
    border-radius: 11px;
    font-size: 10px;
    font-weight: 800;
}

.order-form-section-title strong {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.25;
}

.order-form-section-title small {
    display: block;
    margin-top: 3px;
    color: var(--muted-gray);
    font-size: 11px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 17px;
}

.form-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field > span {
    color: var(--charcoal);
    font-size: 12px;
    font-weight: 700;
}

.form-field > small {
    margin-top: -2px;
    color: var(--muted-gray);
    font-size: 10px;
    line-height: 1.5;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 13px 14px;
    color: var(--charcoal);
    background: #fbfaf6;
    border: 1px solid rgba(28, 28, 27, 0.16);
    border-radius: 11px;
    outline: none;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.form-field textarea {
    min-height: 125px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    background: var(--white);
    border-color: rgba(198, 255, 46, 0.95);
    box-shadow: 0 0 0 3px rgba(198, 255, 46, 0.13);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(98, 97, 93, 0.62);
}

.form-field input:disabled {
    color: rgba(28, 28, 27, 0.45);
    background: #efede6;
    cursor: not-allowed;
    opacity: 0.72;
}

.order-price-note[hidden],
.order-summary-discount[hidden],
.order-summary-empty[hidden],
.order-summary-included[hidden],
.order-summary-info[hidden] {
    display: none !important;
}

.order-price-note {
    margin-top: 13px;
    padding: 12px 14px;
    color: rgba(28, 28, 27, 0.72);
    background: rgba(198, 255, 46, 0.16);
    border: 1px solid rgba(198, 255, 46, 0.36);
    border-radius: 10px;
    font-size: 11px;
    line-height: 1.55;
}

.order-confirmation-check {
    margin-top: 6px;
    padding: 17px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid var(--border-light);
    border-radius: 13px;
    background: #fbfaf6;
    cursor: pointer;
}

.order-confirmation-check input {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    flex: 0 0 17px;
    accent-color: var(--lime);
}

.order-confirmation-check span {
    color: var(--muted-gray);
    font-size: 11px;
    line-height: 1.6;
}

.order-submit-button {
    width: 100%;
    margin-top: 18px;
    min-height: 54px;
}

.order-form-message {
    display: none;
    margin-top: 15px;
    padding: 14px 16px;
    border-radius: 11px;
    font-size: 12px;
    line-height: 1.6;
}

.order-form-message.visible {
    display: block;
}

.order-form-message.success {
    color: #24310b;
    background: rgba(198, 255, 46, 0.22);
    border: 1px solid rgba(198, 255, 46, 0.55);
}

.order-form-message.error {
    color: #7a2d2f;
    background: rgba(232, 74, 77, 0.08);
    border: 1px solid rgba(232, 74, 77, 0.28);
}

.order-frontend-note {
    margin-top: 12px;
    color: rgba(98, 97, 93, 0.72);
    font-size: 9px;
    line-height: 1.5;
    text-align: center;
}

.order-summary-card {
    position: sticky;
    top: 104px;
    padding: 34px;
    overflow: hidden;
    color: var(--white);
    background: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-large);
    box-shadow: 0 24px 60px rgba(28, 28, 27, 0.12);
}

.order-summary-card::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -140px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(198, 255, 46, 0.11),
        transparent 68%
    );
    pointer-events: none;
}

.order-summary-label {
    position: relative;
    z-index: 1;
    color: var(--lime);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.order-summary-product {
    position: relative;
    z-index: 1;
    margin-top: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.order-summary-product span,
.order-summary-row span,
.order-summary-total span {
    display: block;
    color: rgba(255, 255, 255, 0.46);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.order-summary-product strong {
    display: block;
    margin-top: 7px;
    font-family: "Poppins", sans-serif;
    font-size: 21px;
    line-height: 1.35;
}

.order-summary-row {
    position: relative;
    z-index: 1;
    padding-block: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.order-summary-row span {
    display: inline;
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
}

.order-summary-row strong {
    font-size: 13px;
}

.order-summary-discount {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    padding: 10px 12px;
    color: var(--charcoal);
    background: var(--lime);
    border-radius: 9px;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
}

.order-summary-total {
    position: relative;
    z-index: 1;
    padding-block: 22px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.order-summary-total span {
    display: inline;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
}

.order-summary-total strong {
    color: var(--lime);
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1px;
}

.order-summary-empty {
    position: relative;
    z-index: 1;
    padding: 17px 18px;
    color: rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    font-size: 11px;
    line-height: 1.65;
}

.order-summary-included {
    position: relative;
    z-index: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
}

.order-summary-included > span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#orderSummaryIncludedList > div {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1.5;
}

.order-summary-info {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.order-summary-info > div {
    min-height: 86px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.order-summary-info small {
    color: rgba(255, 255, 255, 0.36);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.order-summary-info strong {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.45;
}

.order-summary-card > p {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
    line-height: 1.6;
}

.order-help-section {
    background: var(--white);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1150px) {

    .desktop-nav {
        gap: 17px;
    }

    .desktop-nav a {
        font-size: 12px;
    }

    .logo {
        width: 132px;
    }

    .product-detail-grid {
        gap: 50px;
    }

}


@media (max-width: 1100px) {

    .footer-grid {
        grid-template-columns:
            minmax(280px, 1.4fr)
            0.8fr
            0.8fr;
        gap: 42px 34px;
    }

    .footer-contact {
        grid-column: 2 / 4;
    }

}


@media (max-width: 980px) {

    .desktop-nav,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .desktop-nav.mobile-active {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 10px;
        background: rgba(28, 28, 27, 0.99);
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 18px;
    }

    .desktop-nav.mobile-active a {
        padding: 14px;
        font-size: 14px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-stats {
        max-width: 680px;
        justify-self: start;
    }

    .hero-stat-main {
        min-height: 235px;
    }


    .conversion-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-case-study,
    .case-study-card,
    .case-study-card:nth-child(even),
    .product-faq-layout {
        grid-template-columns: 1fr;
    }

    .case-study-card:nth-child(even) .case-study-card-image,
    .case-study-card:nth-child(even) .case-study-card-content {
        order: initial;
    }

    .home-case-study-photo {
        min-height: 500px;
    }

    .case-study-card-image {
        min-height: 430px;
    }

    .product-faq-heading {
        position: static;
    }

    .product-specs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-grid .product-card:last-child {
        grid-column: span 2;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .value-grid,
    .about-grid,
    .contact-grid,
    .split-card,
    .info-grid,
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .users-preview-grid {
        grid-template-columns: 1fr;
    }

    .info-copy,
    .about-text {
        padding-top: 0;
    }

    .nfc-flow {
        grid-template-columns: 1fr;
    }

    .flow-arrow {
        height: 35px;
        transform: rotate(90deg);
    }

    .use-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .customer-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

}


@media (max-width: 700px) {

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .nav-container {
        height: 70px;
    }

    .section {
        padding-block: 78px;
    }

    .hero-grid {
        padding-block: 64px;
    }

    .hero-stats {
        gap: 14px;
    }

    .hero-stat-main {
        min-height: 210px;
        padding: 36px 24px;
    }

    .hero-stat-main .stat-number {
        font-size: 82px;
        letter-spacing: -4px;
    }

    .hero-stat-row {
        gap: 14px;
    }

    .hero-stat-small {
        min-height: 130px;
        padding: 22px 16px;
    }


    .conversion-info-heading {
        margin-bottom: 34px;
    }

    .conversion-info-grid,
    .product-specs-grid {
        grid-template-columns: 1fr;
    }

    .conversion-info-card {
        min-height: 0;
        padding: 25px;
    }

    .conversion-info-card h3 {
        margin-top: 24px;
    }

    .home-case-study-content,
    .case-study-card-content {
        padding: 34px;
    }

    .home-case-study-photo,
    .case-study-card-image {
        min-height: 390px;
    }

    .case-study-card-metrics {
        grid-template-columns: 1fr;
    }

    .product-faq-layout {
        gap: 42px;
    }

    .products-grid,
    .use-grid,
    .customer-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .products-grid .product-card:last-child {
        grid-column: auto;
    }

    .large-products .product-content h2 {
        min-height: unset;
    }

    .user-preview-card {
        grid-template-columns: 1fr;
    }

    .user-preview-photo {
        min-height: 390px;
    }

    .testimonial-card {
        min-height: 300px;
    }

    .customer-image {
        height: 390px;
    }

    .cta-box {
        padding: 52px 24px;
    }

    .product-detail {
        padding-block: 48px 75px;
    }

    .product-detail-image {
        min-height: 420px;
        height: 420px;
        padding: 35px;
    }

    .product-detail-content h1 {
        font-size: 38px;
    }

    .pricing-card {
        min-height: auto;
        padding: 30px;
    }

    .pricing-value strong {
        font-size: 52px;
    }

    .pricing-card .pricing-features {
        margin-bottom: 30px;
    }

    .product-detail-pricing {
        margin-bottom: 23px;
    }

    .product-detail-price-row strong {
        font-size: 28px;
    }

    .footer-grid {
        padding-block: 48px 42px;
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 390px;
    }

    .footer-contact {
        grid-column: auto;
    }

}


@media (max-width: 480px) {

    .hero h1 {
        font-size: 39px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stat-main {
        min-height: 190px;
    }

    .hero-stat-main .stat-number {
        font-size: 72px;
    }

    .hero-stat-main > span {
        max-width: 260px;
        font-size: 10px;
        letter-spacing: 1.35px;
    }

    .hero-stat-small .stat-number {
        font-size: 40px;
    }

    .hero-stat-small > span {
        font-size: 11px;
    }


    .case-study-metrics {
        grid-template-columns: 1fr;
    }

    .home-case-study-content,
    .case-study-card-content {
        padding: 27px;
    }

    .home-case-study-photo,
    .case-study-card-image {
        min-height: 320px;
    }

    .case-study-card-content h3 {
        font-size: 27px;
    }

    .faq-item summary {
        padding-right: 42px;
        font-size: 15px;
    }

    .faq-item p {
        padding-right: 35px;
    }

    .product-image-container {
        height: 300px;
    }

    .user-preview-photo {
        min-height: 330px;
    }

    .user-preview-content {
        padding: 28px;
    }

    .testimonial-card {
        padding: 31px;
    }

    .testimonial-card p {
        font-size: 19px;
    }

    .customer-image {
        height: 330px;
    }

    .product-detail-image {
        min-height: 350px;
        height: 350px;
        padding: 25px;
    }

    .product-detail-content h1 {
        font-size: 33px;
    }

    .contact-heading h2 {
        font-size: 39px;
    }

    .product-detail-offer {
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-block: 44px 38px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

}

/* =========================================================
   ORDER PAGE RESPONSIVE
========================================================= */

@media (max-width: 980px) {

    .product-purchase-info {
        grid-template-columns: 1fr;
    }

    .purchase-info-item {
        min-height: auto;
    }

    .order-process-grid {
        grid-template-columns: 1fr;
    }

    .order-layout {
        grid-template-columns: 1fr;
    }

    .order-summary-card {
        position: relative;
        top: auto;
    }

}

@media (max-width: 700px) {

    .order-page-hero {
        min-height: 450px;
    }

    .order-page-hero .page-hero-content {
        padding-block: 72px;
    }

    .order-process-section {
        padding-block: 38px;
    }

    .order-process-item {
        min-height: auto;
        padding: 20px;
    }

    .order-form-card,
    .order-summary-card {
        padding: 28px;
    }

    .form-grid-two,
    .order-summary-info {
        grid-template-columns: 1fr;
    }

    .order-form-section-block {
        padding-block: 26px;
    }

}

@media (max-width: 480px) {

    .order-form-card,
    .order-summary-card {
        padding: 23px;
        border-radius: 22px;
    }

    .order-form-heading h2 {
        font-size: 32px;
    }

    .order-process-item {
        gap: 13px;
    }

    .order-summary-total strong {
        font-size: 26px;
    }

}
