/* =========================================================
   RUBITCUBE PRODUCT PAGE
   Uses the existing home-page styles.css for:
   header, footer, buttons, typography, reveal animation,
   container, responsive navigation and global variables.
   ========================================================= */

/* ==========================================
   PRODUCT HERO
   ABOUT PAGE STYLE
========================================== */

.product-hero {
    padding: 150px 0 100px;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f7f9ff 100%);
    position: relative;
    overflow: hidden;
}

/* ==========================================
   HERO GRID
========================================== */
.product-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: center;
}

/* ==========================================
   LEFT CONTENT
========================================== */
.product-hero-copy {
    position: relative;
    z-index: 2;
}

.product-hero-copy h1 {
    font-size: 54px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
    margin: 20px 0;
}

.product-hero-copy h1 span {
    color: var(--blue);
}

.product-hero-copy>p {
    max-width: 620px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin-top: 20px;
}

/* ==========================================
   BUTTONS
========================================== */
.product-hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 50px;
}

.product-hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 32px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: .35s ease;
}

.product-btn-primary {
    background-color: #2d5bff;
    color: #fff;
}

.product-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 35px rgba(37, 99, 235, .30);
}

.product-btn-outline {
    border: 1px solid #0f172a;
    color: #0f172a;
}

.product-btn-outline:hover {
    background: #0f172a;
    color: #fff;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-tag span {
    width: 22px;
    height: 2px;
    background: var(--blue);
    display: inline-block;
}

/* ==========================================
   PRODUCT IMAGE
========================================== */
.product-hero-image {
    position: relative;
    z-index: 1;
}

.product-hero-image img {
    width: 100%;
    height: 320px;
    display: block;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, .08);
    transition: .4s ease;
}

.product-hero-image img:hover {
    transform: scale(1.02);
}

/* ==========================================
   DECORATIVE CIRCLE
========================================== */
.product-hero-image::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(45, 91, 255, .08);
    top: -30px;
    right: -30px;
    z-index: 0;
}

/* ==========================================
   DECORATIVE SQUARE
========================================== */
.product-hero-image::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: #2d5bff;
    opacity: .08;
    border-radius: 30px;
    left: -30px;
    bottom: -30px;
    transform: rotate(25deg);
    z-index: 0;
}

/* ==========================================
   TABLET
========================================== */
@media(max-width: 992px) {
    .product-hero {
        padding: 80px 0 70px;
    }

    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
        text-align: center;
    }

    .product-hero-copy>p {
        margin-left: auto;
        margin-right: auto;
    }

    .product-hero .hero-actions {
        justify-content: center;
    }

    .product-hero-image {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
    }

    .product-hero-image img {
        height: 450px;
    }
}

/* ==========================================
   MOBILE
========================================== */
@media(max-width: 768px) {
    .product-hero {
        padding: 65px 0 60px;
    }

    .product-hero-copy h1 {
        font-size: 40px;
        line-height: 1.05;
        letter-spacing: -1.5px;
    }

    .product-hero-copy>p {
        font-size: 16px;
    }

    .product-hero .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
    }

    .product-hero .hero-actions .btn {
        width: 100%;
    }

    .product-hero-image img {
        height: 350px;

        border-radius: 24px;
    }

    .product-hero-image::before {
        width: 110px;
        height: 110px;
        top: -20px;
        right: -15px;
    }

    .product-hero-image::after {
        width: 80px;
        height: 80px;
        left: -15px;
        bottom: -20px;
        border-radius: 20px;
    }
}

/* ---------- PRODUCT MARQUEE ---------- */
.product-strip {
    border-top: 1px solid rgba(255, 255, 255, .06);
}

/* ---------- PRODUCTS GRID ---------- */
.products-section {
    background: var(--paper);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.product-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 80px rgba(11, 16, 32, .1);
}

.product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 28px 0;
    position: relative;
    z-index: 4;
}

.product-number {
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
}

.product-status {
    font-size: 9px;
    color: var(--muted);
    font-weight: 800;
    letter-spacing: .13em;
}

.product-visual {
    height: 310px;
    margin-top: -1px;
    position: relative;
    overflow: hidden;
}

.product-ai {
    background:
        radial-gradient(circle at 75% 30%, rgba(37, 86, 255, .32), transparent 34%),
        linear-gradient(135deg, #0b1020, #182b6b);
}

.ai-window {
    position: absolute;
    left: 13%;
    right: 13%;
    top: 35px;
    bottom: 30px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    background: rgba(11, 16, 32, .48);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .25);
}

.ai-window-head {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .65);
    font-size: 9px;
    letter-spacing: .12em;
    font-weight: 800;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ai-window-head span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #58ed9c;
}

.ai-window-head b {
    margin-left: auto;
    color: #58ed9c;
    font-size: 7px;
}

.ai-message {
    max-width: 82%;
    padding: 11px 13px;
    border-radius: 12px;
    color: rgba(255, 255, 255, .8);
    font-size: 10px;
    line-height: 1.5;
    margin-top: 18px;
}

.user-msg {
    margin-left: auto;
    background: rgba(255, 255, 255, .1);
}

.bot-msg {
    background: rgba(37, 86, 255, .35);
    border: 1px solid rgba(139, 165, 255, .2);
}

.ai-input {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .4);
    font-size: 9px;
}

.ai-input b {
    color: white;
}

/* ---------- HR VISUAL ---------- */
.product-hr {
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 86, 255, .15), transparent 30%),
        #edf2ff;
    padding: 35px 14%;
}

.attendance-ui {
    height: 100%;
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 25px 60px rgba(11, 16, 32, .09);
    border: 1px solid rgba(11, 16, 32, .06);
}

.attendance-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 800;
}

.attendance-header b {
    color: var(--muted);
    font-size: 9px;
}

.attendance-stat {
    margin-top: 30px;
}

.attendance-stat strong {
    display: block;
    font-size: 48px;
    line-height: .9;
    letter-spacing: -.06em;
    color: var(--blue);
}

.attendance-stat small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 10px;
}

.attendance-bars {
    height: 90px;
    display: flex;
    align-items: flex-end;
    gap: 9px;
    margin-top: 28px;
}

.attendance-bars span {
    flex: 1;
    min-height: 20px;
    background: linear-gradient(to top, var(--blue), #9eb3ff);
    border-radius: 6px 6px 2px 2px;
}


/* ---------- EMAIL VISUAL ---------- */

.product-email {
    padding: 35px 12%;
    background: #f2f3f6;
}

.email-ui {
    height: 100%;
    padding: 25px;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: 0 25px 60px rgba(11, 16, 32, .08);
}

.email-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.email-brand>span {
    width: 43px;
    height: 43px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: white;
    font-size: 21px;
    font-weight: 800;
}

.email-brand small {
    display: block;
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em;
    margin-bottom: 4px;
}

.email-brand strong {
    font-size: 15px;
}

.email-row {
    display: grid;
    grid-template-columns: 25px 1fr 20px;
    gap: 9px;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 10px;
}

.email-row i {
    color: var(--blue);
}

.email-row b {
    color: #39b86c;
}


/* ---------- PRODUCT CONTENT ---------- */

.product-content {
    padding: 28px 30px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: rgba(37, 86, 255, .08);
    font-size: 19px;
    margin-bottom: 22px;
}

.product-content h3,
.product-wide-content h3 {
    font-size: 31px;
    letter-spacing: -.045em;
    line-height: 1.05;
    margin: 0 0 14px;
}

.product-content p,
.product-wide-content p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
    max-width: 590px;
}

.product-content ul,
.product-wide-content ul {
    list-style: none;
    padding: 0;
    margin: 22px 0 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.product-content li,
.product-wide-content li {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

.product-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    font-size: 13px;
    font-weight: 800;
    border-bottom: 1px solid var(--line);
    padding-bottom: 7px;
    transition: color .2s, gap .2s;
}

.product-link:hover {
    color: var(--blue);
    gap: 17px;
}


/* ---------- WIDE PRODUCT ---------- */

.product-wide-card {
    grid-column: span 2;
    min-height: 520px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    background: var(--ink);
    color: white;
}

.product-wide-visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(37, 86, 255, .22), transparent 38%),
        #0b1020;
}

.product-wide-visual::before,
.product-wide-visual::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product-wide-visual::before {
    width: 360px;
    height: 360px;
}

.product-wide-visual::after {
    width: 220px;
    height: 220px;
    border-color: rgba(37, 86, 255, .35);
}

.workflow-node {
    position: absolute;
    z-index: 2;
    width: 105px;
    height: 105px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.workflow-node i {
    color: #8ba5ff;
    font-size: 22px;
}

.workflow-node span {
    color: rgba(255, 255, 255, .55);
    font-size: 8px;
    letter-spacing: .12em;
    font-weight: 800;
}

.node-one {
    top: 100px;
    left: 13%;
}

.node-two {
    left: 50%;
    top: 205px;
    transform: translateX(-50%);
}

.node-three {
    right: 13%;
    bottom: 100px;
}

.workflow-line {
    position: absolute;
    z-index: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(139, 165, 255, .7), transparent);
    transform-origin: left center;
}

.line-one {
    width: 190px;
    left: 27%;
    top: 49%;
    transform: rotate(27deg);
}

.line-two {
    width: 190px;
    left: 52%;
    top: 56%;
    transform: rotate(27deg);
}

.product-wide-content {
    padding: 28px 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-wide-content .product-card-top {
    padding: 0;
    margin-bottom: 50px;
}

.product-wide-content .product-status {
    color: rgba(255, 255, 255, .42);
}

.product-wide-content .product-icon {
    background: rgba(139, 165, 255, .1);
    color: #8ba5ff;
}

.product-wide-content p {
    color: rgba(255, 255, 255, .55);
}

.product-wide-content li {
    border-color: rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .6);
}

.product-wide-content .product-link {
    color: white;
    border-color: rgba(255, 255, 255, .25);
}


/* ---------- BENEFITS ---------- */

.product-benefits {
    background: var(--ink);
    color: white;
}

.product-benefits .section-head>p {
    color: rgba(255, 255, 255, .55);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.benefit-card {
    min-height: 290px;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    flex-direction: column;
    transition: background .25s, transform .25s;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, .04);
    transform: translateY(-5px);
}

.benefit-card>span {
    color: var(--red);
    font-size: 10px;
    letter-spacing: .15em;
    font-weight: 800;
}

.benefit-card i {
    margin-top: auto;
    margin-bottom: 24px;
    color: #8ba5ff;
    font-size: 28px;
}

.benefit-card h3 {
    font-size: 24px;
    letter-spacing: -.035em;
    margin: 0 0 10px;
}

.benefit-card p {
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    line-height: 1.65;
}


/* ---------- CTA ---------- */

.product-cta {
    background: white;
}

.product-cta-box {
    border-radius: 30px;
    padding: 75px;
    background:
        radial-gradient(circle at 85% 20%, rgba(37, 86, 255, .25), transparent 35%),
        #eef2ff;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    overflow: hidden;
    position: relative;
}

.product-cta-box h2 {
    font-size: clamp(52px, 5vw, 76px);
    line-height: .94;
    letter-spacing: -.065em;
    margin: 27px 0;
}

.product-cta-box h2 span {
    color: var(--blue);
}

.product-cta-box p {
    max-width: 650px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {



    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-wide-card {
        grid-column: auto;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {


    .product-interface {
        inset: 25px;
    }

    .interface-main>strong {
        font-size: 34px;
    }

    .interface-card {
        min-height: 120px;
        padding: 17px;
    }

    .product-card {
        min-height: auto;
        border-radius: 20px;
    }

    .product-visual {
        height: 280px;
    }

    .product-content {
        padding: 25px;
    }

    .product-content h3,
    .product-wide-content h3 {
        font-size: 27px;
    }

    .product-wide-card {
        display: flex;
    }

    .product-wide-visual {
        min-height: 360px;
    }

    .product-wide-content {
        padding: 28px 25px 35px;
    }

    .product-wide-content .product-card-top {
        margin-bottom: 35px;
    }

    .workflow-node {
        width: 82px;
        height: 82px;
    }

    .node-one {
        left: 7%;
    }

    .node-three {
        right: 7%;
    }

    .line-one,
    .line-two {
        width: 125px;
    }

    .product-cta-box {
        padding: 45px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
        border-radius: 22px;
    }

    .product-cta-box h2 {
        font-size: 51px;
    }

    .product-cta-box .btn {
        width: 100%;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: 240px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-orb {
        animation: none;
    }
}

/* =========================================================
   PRODUCT PAGE — FINAL RESPONSIVE OVERRIDES
   ========================================================= */

html {
    overflow-x: hidden;
}

body {
    min-width: 0;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
}

.container {
    width: min(1240px, calc(100% - 48px));
}



.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

@media (max-width: 992px) {
    .container {
        width: min(760px, calc(100% - 40px));
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 16px 18px;
        background: rgba(255, 255, 255, .98);
        border-top: 1px solid rgba(0, 0, 0, .06);
        box-shadow: 0 18px 35px rgba(0, 0, 0, .10);
        z-index: 100;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        padding: 14px 8px;
    }

    .main-nav .nav-cta {
        margin-top: 8px;
        text-align: center;
    }

    .product-hero {
        padding: 85px 0 65px;
    }

    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 42px;
        align-items: center;
    }

    .product-hero-copy {
        text-align: center;
        max-width: 760px;
        margin-inline: auto;
    }

    .product-hero-copy .section-tag {
        justify-content: center;
        margin-top: 50px;
    }

    .product-hero-copy p {
        margin-inline: auto;
    }

    .product-hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .product-hero-image {
        max-width: 700px;
        width: 100%;
        margin-inline: auto;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .product-featured {
        grid-column: span 2;
    }

    .product-wide-card {
        grid-column: span 2;
        grid-template-columns: 1fr 1fr;
    }

    .product-wide-visual {
        min-height: 330px;
    }

    .section-head {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: start;
    }

    .section-head>p {
        max-width: none;
        margin-left: 0;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-cta-box {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .product-cta-box .btn {
        justify-self: center;
    }


}

@media (max-width: 768px) {
    .container {
        width: calc(100% - 32px);
    }

    .site-header .nav-wrap {
        min-height: 68px;
    }

    .brand-mark {
        max-width: 150px;
    }

    .product-hero {
        padding: 58px 0 50px;
    }

    .product-hero-copy h1 {
        font-size: clamp(34px, 9vw, 46px);
        line-height: 1.07;
        letter-spacing: -1.2px;
    }

    .product-hero-copy p {
        font-size: 15px;
        line-height: 1.7;
    }

    .product-hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 11px;
        margin-top: 28px;
    }

    .product-hero-buttons a {
        width: 100%;
        max-width: 360px;
        margin-inline: auto;
        text-align: center;
    }

    .product-hero-image {
        width: calc(100% - 12px);
    }

    .product-hero-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;
    }

    .product-strip,
    .marquee {
        overflow: hidden;
    }

    .marquee-track {
        width: max-content;
        white-space: nowrap;
    }

    .marquee-track span {
        font-size: 11px;
    }

    .products-section,
    .product-benefits,
    .product-cta {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .section-head {
        gap: 16px;
        margin-bottom: 32px;
    }

    .section-head h2 {
        font-size: clamp(28px, 8vw, 38px);
        line-height: 1.12;
    }

    .section-head>p {
        font-size: 15px;
        line-height: 1.7;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-featured,
    .product-wide-card {
        grid-column: auto;
    }

    .product-card {
        min-width: 0;
        border-radius: 20px;
        overflow: hidden;
    }

    .product-card-top {
        padding: 18px 18px 0;
    }

    .product-number {
        font-size: 10px;
    }

    .product-status {
        font-size: 9px;
        letter-spacing: .8px;
    }

    .product-visual {
        min-height: 245px;
        padding: 16px;
    }

    .ai-window,
    .attendance-ui,
    .email-ui {
        width: 100%;
        max-width: 430px;
        margin-inline: auto;
    }

    .ai-message {
        font-size: 12px;
        line-height: 1.5;
    }

    .ai-input {
        font-size: 11px;
    }

    .attendance-bars {
        gap: 6px;
    }

    .email-row span {
        font-size: 11px;
    }

    .product-content {
        padding: 22px 18px 25px;
    }

    .product-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .product-content h3 {
        font-size: 22px;
        line-height: 1.2;
    }

    .product-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .product-content ul {
        padding-left: 18px;
    }

    .product-content li {
        font-size: 13px;
        line-height: 1.55;
    }

    .product-link {
        font-size: 13px;
    }

    .product-wide-card {
        grid-template-columns: 1fr;
    }

    .product-wide-visual {
        min-height: 260px;
        order: 1;
        overflow: hidden;
    }

    .product-wide-content {
        order: 2;
        padding: 22px 18px 25px;
    }

    .workflow-node {
        transform: scale(.82);
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .benefit-card {
        min-height: 0;
        padding: 25px 20px;
    }

    .benefit-card i {
        font-size: 25px;
    }

    .benefit-card h3 {
        font-size: 21px;
    }

    .benefit-card p {
        font-size: 14px;
        line-height: 1.65;
    }

    .product-cta-box {
        padding: 32px 20px;
        border-radius: 22px;
        gap: 26px;
    }

    .product-cta-box h2 {
        font-size: clamp(34px, 9vw, 48px);
        line-height: 1.03;
    }

    .product-cta-box p {
        font-size: 14px;
        line-height: 1.7;
    }

    .product-cta-box .btn {
        width: 100%;
        max-width: 360px;
        justify-content: center;
    }

}


@media (max-width: 480px) {
    .container {
        width: calc(100% - 24px);
    }

    .brand-mark {
        max-width: 135px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .product-hero {
        padding: 48px 0 42px;
    }

    .product-hero-copy h1 {
        font-size: 32px;
    }

    .product-hero-copy p {
        font-size: 14px;
    }

    .product-hero-image {
        width: 100%;
    }

    .product-hero-image img {
        border-radius: 16px;
    }

    .product-card {
        border-radius: 17px;
    }

    .product-visual {
        min-height: 215px;
        padding: 12px;
    }

    .product-content {
        padding: 20px 15px 22px;
    }

    .product-content h3 {
        font-size: 20px;
    }

    .product-content p {
        font-size: 13.5px;
    }

    .ai-message {
        font-size: 11px;
    }

    .attendance-stat strong {
        font-size: 30px;
    }

    .email-row {
        gap: 8px;
    }

    .email-row i {
        width: 22px;
    }

    .email-row span {
        font-size: 10px;
    }

    .product-wide-visual {
        min-height: 230px;
    }

    .workflow-node {
        transform: scale(.68);
    }

    .benefit-card {
        padding: 21px 16px;
    }

    .product-cta-box {
        padding: 27px 16px;
    }

    .product-cta-box h2 {
        font-size: 32px;
    }

}

@media (max-height: 520px) and (orientation: landscape) and (max-width: 900px) {
    .product-hero {
        padding: 45px 0;
    }

    .product-hero-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        align-items: center;
    }

    .product-hero-copy .section-tag {
        justify-content: flex-start;
        margin-top: 50px;
    }

    .product-hero-copy p {
        margin-inline: 0;
    }

    .product-hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }

    .product-hero-buttons a {
        width: auto;
        margin-inline: 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}