:root {
    --primary-red: #ea333b;
    --primary-yellow: #f8be14;
    --dark: #242424;
    --muted: #666;
    --bg: #f3f5f7;
    --card: #ffffff;
    --line: #e7e7e7;
    --green: #35b24a;
    --radius: 22px;
    --shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Gabarito", system-ui;
    color: #111;
    background: #fff;
    line-height: 1.6;
    overflow-x: clip;
}

.aihome-container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

/* ===================== HEADER ===================== */
.ds-header-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.ds-header-container nav a {
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.15s ease;
}

.ds-header-container nav a:hover {
    color: #fff;
    opacity: 1;
}


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

.section {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 56px 0;
}

.section--twoCol {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 42px;
    align-items: center;
}

.section--reverse {
    grid-template-columns: .95fr 1.05fr;
}

.section__title {
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: .5px;
}

.section__desc {
    margin-top: 14px;
    color: var(--muted);
    max-width: 520px;
    font-size: 15px;
}

.kickerLine {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kickerLine__line {
    width: 70px;
    height: 2px;
    background: #111;
    opacity: .35;
}

.kickerLine__line--right {
    flex: 1;
    height: 2px;
    background: #111;
    opacity: .2;
}



/* HERO */
.ds-hero {
    position: relative;
    width: 100%;
    background: #000;
}

.ds-hero__imageWrap {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.ds-hero__bgImg {
    width: 100%;
    height: auto;
    display: block;
}

.ds-hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.ds-hero__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 15%;
    z-index: 2;
}

.ds-hero__imgText {
    width: 40%;
    height: auto;
    display: block;
    margin-top: -5%;
    margin-left: 30%;
}


/* DEVICE MOCK REMOVED */
/* MEDIA PLACEHOLDER CARD */
.card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card--media {
    padding: 22px;
}

.mediaPlaceholder {
    border-radius: 18px;
    background: linear-gradient(135deg, #f4f6f8, #e9edf2);
    height: 220px;
    position: relative;
    overflow: hidden;
}

.productImage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.productImage img {
    max-width: 100%;
    height: auto;
}

/* CHECKLIST CARD */
.section--checklist {
    padding-top: 8px;
}

.checklistCard {
    background: #f7f8fa;
    border-radius: 26px;
    padding: 28px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist__item {
    position: relative;
    padding-left: 28px;
    color: #2b2b2b;
    font-size: 14px;
}

.checklist__item::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--green);
    position: absolute;
    left: 0;
    top: 3px;
    box-shadow: 0 10px 16px rgba(53, 178, 74, .25);
}

.checklist__item::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 7px;
    width: 6px;
    height: 3px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

/* SPLIT ADVANCED FEATURES */
.section--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.bullets {
    margin-top: 14px;
    padding-left: 18px;
    color: #2d2d2d;
}

.bullets li {
    margin: 9px 0;
}

/* image placeholder style removed */

/* PRICING */
.section--pricing {
    padding-top: 10px;
}

.pricingCardSingle {
    background: #fff;
    border-radius: 26px;
    padding: 36px 42px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* So divider stretches properly */
    gap: 40px;
    box-shadow: 0 4px 50px rgba(0, 0, 0, .18);
}

.pricingCardSingle__divider {
    width: 2px;
    background-color: #eee;
    margin: 0 10px;
}

.priceBox {
    background: transparent;
    padding: 0;
    border: none;
    flex: 1;
}

.priceBox__head {
    display: flex;
    gap: 16px;
    align-items: center;
    /* Center to match icon size nicely */
}

.priceBox__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
}

.priceBox__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.priceBox__title {
    font-weight: 800;
    /* Matching the font weight in the design */
    font-size: 22px;
    letter-spacing: .5px;
}

.priceBox__old {
    margin-top: 2px;
    color: #9a9a9a;
    text-decoration: line-through;
    font-weight: 700;
}

.priceBox__price {
    margin-left: 65px;
    font-size: 38px;
    font-weight: 900;
    color: var(--primary-red);
    letter-spacing: .3px;
}

.priceBox__note {
    font-size: 12px;
    color: #8a8a8a;
    font-weight: 700;
}

.priceBox__desc {
    margin-top: 6px;
    margin-left: 65px;
    color: #2f2f2f;
    font-weight: 600;
}

.priceBox__sub {
    margin-top: 10px;
    margin-left: 65px;
    color: #6a6a6a;
    font-size: 13px;
}

/* CTA */
.section--cta {
    padding-top: 30px;
}

.cta {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: center;
}

.qrPlaceholder {
    width: 220px;
    height: 220px;
    display: grid;
    place-items: center;
}

.qrPlaceholder__img {
    width: 170px;
    height: 170px;
    object-fit: contain;
}

.cta__title {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: .4px;

}

.cta__desc {
    margin-top: 10px;
    color: var(--muted);
    font-weight: 600;
}

.cta__handle {
    color: var(--primary-red);
    font-weight: 900;
}

/* ===================== FOOTER ===================== */
.aihome-footer {
    margin-top: 24px;
    background: #121212;
    color: rgba(255, 255, 255, 0.85);
    padding: 26px 0;
}

.aihome-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.aihome-footer__brand {
    font-weight: 900;
    font-size: 24px;
    color: #fff;
}

.aihome-footer__meta,
.aihome-footer__contact {
    margin-top: 10px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
}

.aihome-footer__copy {
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.aihome-footer__center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 0 20px;
}

.aihome-footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.aihome-footer__lineBtn {
    background: #06c755;
    /* Line standard green */
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    border-radius: 999px;
    padding: 6px 18px;
    margin-bottom: 2px;
}

.aihome-footer__qr {
    display: grid;
    gap: 6px;
    justify-items: center;
}

.aihome-footer__qr img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #fff;
    padding: 2px;
    background: #fff;
}

.aihome-footer__qrText {
    font-size: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
}