:root {
    --color-bg-light: #FFFAF6;
    --color-bg-section: #F3EBEB;
    --color-primary: #3337C8;
    --color-primary-light: #8BC5FF;
    --color-dark-grad-1: #030537;
    --color-dark-grad-2: #1F2497;
    --color-text-main: #000000;
    --color-text-muted: #60617A;
    --color-text-muted2: #86879A;

    --font-heading: "Poppins", system-ui, sans-serif;
    --font-body: "DM Sans", system-ui, sans-serif;

    --radius-card: 28px;
    --radius-pill: 999px;

    --container-width: 1200px;
    --gutter: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background: var(--color-bg-light);
}

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

.container {
    width: 100%;
    max-width: calc(var(--container-width) + var(--gutter) * 2);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ===========================
   HEADER & NAV
   =========================== */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 24px 0;
    background: transparent;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img,
.logo svg {
    height: 32px;
    width: auto;
}

/* Nav text links (Solution / Customer Care) */
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-family: var(--font-body);
}

.main-nav a {
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
}

.main-nav a:not(.btn-dark) {
    color: #111111;
    padding-bottom: 2px;
    position: relative;
}

/* subtle underline on hover */
.main-nav a:not(.btn-dark)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1px;
    background: transparent;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 0.2s ease, background 0.2s ease;
}

.main-nav a:not(.btn-dark):hover::after {
    background: #111111;
    transform: scaleX(1);
}

/* Contact button pill in nav */
.main-nav .btn-dark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 46px 0 24px; /* extra room on right for circle */
    height: 40px;
    border-radius: var(--radius-pill);
    background: #000000;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
}

/* white circle on the right */
.main-nav .btn-dark::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    transform: translateY(-50%);
}

/* arrow inside the circle */
.main-nav .btn-dark::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    transform: translateY(-50%) rotate(-45deg);
}

/* Hamburger Menu Button */
.hamburger-btn {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: space-between;
    padding: 4px 0;
    z-index: 110; /* Higher than menu overlay */
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 45px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}
.btn.protected-1{
    margin-top: 20px;
    margin-left: 55px;
}

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

.btn-dark {
    background: #000;
    color: #fff;
}

/* arrow only on primary buttons (Get protected) */
.btn-primary::after {
    content: "→";
    font-size: 14px;
    margin-left: 8px;
}

/* ===========================
   HERO
   =========================== */

.hero {
    position: relative;
    /*padding: 140px 0 110px;*/
    overflow: hidden;
    background: radial-gradient( 150% 200% at 60% 120%, var(--color-primary-light) 0%, var(--color-bg-light) 55%, var(--color-bg-light) 100% );
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr); /* more width for devices */
    gap: 60px;
    align-items: center;
    z-index: 1;
}

.hero-text {
    max-width: 440px;
}

.hero-title {
    font-family: var(--font-heading);
    color: #000;
    font-size: 52px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: -1.3px;
    margin: 0 0 24px;
}

.hero-sub {
    font-size: 15px;
    line-height: 21px;
    color: var(--color-text-muted);
    max-width: 360px;
    margin: 0 0 32px;
    padding-left: 55px;
}

.hero-media {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

/* BIG devices image + offset like Figma */
.hero-media img {
    max-width: none;
    /*width: 175%;                 !* <- adjust this if you want bigger/smaller *!*/
    transform: translate(18%, 40px); /* <- moves it right & slightly down */
}

/* ===========================
   FEATURES
   =========================== */

.features {
    background: var(--color-bg-section);
    padding: 80px 0 0px;
}

.section-title {
    text-align: center;
    margin: 0 0 48px;
    font-family: var(--font-heading);
    font-size: 48px;
    letter-spacing: -0.02em;
    font-weight: normal;
}

.gradient-text {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.feature-card {
    background: #FFFFFF;
    border-radius: 24px 24px 0 0;
    padding: 32px 32px 40px;
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.06);
}

/* gradient square bullet */
.feature-icon {
    width: 49px;
    height: 49px;
    margin-bottom: 24px;
}

.feature-icon img,
.feature-icon svg {
    display: block;
    width: 85%;
    height: 85%;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 30px;
    margin: 60px 0 16px;
    font-weight: normal;
    line-height: 110%;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--color-text-muted2);
}

/* ===========================
   BADGE SECTION
   =========================== */

.badge {
    position: relative;
    padding: 8px 0 0px;
    background: linear-gradient(180deg, var(--color-dark-grad-1) 7.33%, var(--color-dark-grad-2) 81.03%);
    color: #fff;
    overflow: hidden;
}

.badge-bg-text {
    font-family: Poppins;
    font-size: 180px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -4.1px;
    background: linear-gradient(90deg, #3337C8 0%, #BFCBFB 50%, #3294F5 100%);
    background-clip: border-box;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.badge-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: center;
    margin-top: 65px;
}

.badge-line{
    position: absolute;
    z-index: -1;
}

.badge-image img {
    width: 100%;
    border-radius: 50px 50px 0 0;
    object-fit: cover;
}

.badge-logo {
    position: absolute;
    bottom: 72%;
    left: 47%;
}

.badge-logo img{
    width: 148px;
}

.badge-copy p {
    color: #E7E8F7;
    line-height: 1.55;
    margin: 0 0 24px;
}

/* ===========================
   PHONE SECTION
   =========================== */

.phone-section {
    background: var(--color-bg-section);
    padding: 100px 0 0px;
}

.phone-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.phone-card {
    background: linear-gradient(180deg, var(--color-primary-light) 0%, #DEDFFA 100%);
    border-radius: 50px 50px 0 0;
    padding: 40px;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-card img {
    max-height: 520px;
    width: auto;
}

.phone-image-wrapper {
    position: relative;
    display: inline-block;
}

.phone-overlay-card {
    position: absolute;
    left: 32px; /* Adjusted for wrapper context (approx 72px - 40px padding) */
    top: 65px;  /* Adjusted for wrapper context (approx 105px - 40px padding) */
    width: 235px;
    height: 120px;
    border-radius: 18px;
    background: #FFFCFC;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.phone-overlay-card img
{
    position: absolute;
    top: 14%;
    width: 90%;
    left: 5%;
}

.phone-title {
    font-family: var(--font-heading);
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    font-weight: normal;
}

.phone-text p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--color-text-muted2);
    max-width: 480px;
    margin: 0 0 32px;
}

/* ===========================
   BOTTOM HERO
   =========================== */

.bottom-hero {
    position: relative;
    overflow: hidden;
    background:
            radial-gradient(
                    220% 200% at 30% 120%,
                    var(--color-primary-light) 0%,
                    var(--color-bg-light) 40%,
                    var(--color-bg-light) 100%
            );
    padding: 80px 0 100px;
}

.bottom-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/footer-wave.svg") no-repeat center bottom;
    background-size: cover;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.bottom-hero-inner {
    position: relative;
    z-index: 1;
}

.bottom-hero-inner img {
    height: 32px;
    width: auto;
    margin-bottom: 24px;
}

.bottom-hero-inner h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    max-width: 560px;
    margin-top: 90px;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1200px) {
    .hero-inner,
    .features-grid,
    .badge-inner,
    .phone-inner {
        grid-template-columns: 1fr;
    }

    .hero-media {
        justify-content: center;
    }

    .hero-media img {
        width: 100%;
        max-width: 640px;
        transform: translateY(0);
    }

    .badge-bg-text {
        font-size: 120px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 90px;
    }

    .hero-title,
    .phone-title {
        font-size: 40px;
        line-height: 1.1;
    }

    .section-title {
        font-size: 36px;
    }
    
    /* Mobile Nav Logic */
    .hamburger-btn {
        display: flex;
    }

    .main-nav {
        display: none; /* Default hidden */
    }

    /* When open */
    body.mobile-menu-open .main-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-bg-light);
        z-index: 100;
        justify-content: center;
        align-items: center;
        padding: 40px;
        font-size: 24px;
    }
    
    body.mobile-menu-open .main-nav a {
        font-size: 24px;
    }
    
    /* Animate Hamburger to X */
    body.mobile-menu-open .hamburger-btn span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    body.mobile-menu-open .hamburger-btn span:nth-child(2) {
        opacity: 0;
    }
    body.mobile-menu-open .hamburger-btn span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    
    /* Prevent scrolling when menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
    
    /* Pricing Mobile Adjustments */
    .pricing-card {
        width: 85vw;
        max-width: 366px;
    }

    .badge {
        padding-top: 60px;
    }

    .badge-bg-text {
        font-size: 60px; /* Smaller text for mobile */
        letter-spacing: -1px;
    }

    .badge-logo {
        position: relative;
        bottom: auto;
        top: auto;
        left: auto;
        transform: none;
        width: 100px;
        margin: 0 auto 24px; /* Center and add space below */
    }
    
    .badge-logo img {
        width: 100px;
        display: block;
        margin: 0 auto;
    }
    
    .pricing-hero {
        padding: 80px 0 160px !important; /* increased bottom padding to account for overlap */
    }
    
    .pricing-page-title {
        font-size: 36px;
    }
    
    .pricing-section {
        margin-top: -100px;
        padding-top: 40px;
    }

    /* Better mobile pricing dual container */
    .pricing-dual-container .amount {
        font-size: 26px; /* Smaller on mobile */
    }
    .pricing-dual-container .cents {
        font-size: 12px;
        top: 2px;
    }
    .pricing-dual-container {
        padding: 12px 4px;
        gap: 4px;
    }
    .pricing-card {
        padding: 32px 16px; /* Less horizontal padding on mobile */
    }

    /* Phone Section Mobile */
    .phone-overlay-card {
        width: 160px;
        height: 80px;
        left: 50%;
        transform: translateX(-50%);
        top: 60px;
    }
    
    .phone-card img {
        max-height: 350px;
    }

    /* Contact Pills Mobile */
    .contact-pills {
        height: auto !important;
        padding: 40px 0;
        display: block; /* Disable flexbox vertical centering on mobile so it grows naturally */
    }
    
    .contact-pills-inner {
        flex-direction: column;
        gap: 16px; /* Reduced gap */
        height: auto;
        padding-top: 10px; /* explicit padding for inner content */
    }

    .contact-pill {
        padding: 6px 14px; /* Reduced padding */
        font-size: 12px; /* Smaller text */
    }

    .contact-pill-icon {
        width: 32px; /* Smaller icon */
        height: 32px;
        flex: 0 0 32px;
    }

    .contact-pill-label {
        font-size: 20px; /* Smaller label */
        line-height: 1.2;
    }
}

/* ==========================================
   HERO OVERRIDES – bigger devices on desktop
   ========================================== */
@media (min-width: 1201px) {

    /* Give more horizontal space to the devices column */
    .hero-inner {
        grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.6fr);
        gap: 72px;
    }

    /* Really enlarge the devices image and push it right/down */
    .hero-media img {
        max-width: none !important;
        /*width: 250% !important;     !* <- bump this up/down if needed *!*/
        height: auto;
        transform: translate(36%, 25px);
    }
}

/* ===========================
   CONTACT PAGE (Degel design)
   =========================== */

/* HERO */

.contact-hero {
    padding: 140px 0 120px;
    background: /* top layer: SVG wave */ url(../img/contact-hero-wave.svg) no-repeat center 614%, /* bottom layer: existing radial gradient */ radial-gradient(250% 194% at 78% 150%, var(--color-primary-light) 0%, var(--color-bg-light) 55%, var(--color-bg-light) 100%);
    background-size: 100% auto, cover;
    background-blend-mode: overlay, normal;
}

/*.contact-hero::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: url("../img/contact-hero-wave.svg") no-repeat center bottom;*/
/*    background-size: cover;*/
/*    mix-blend-mode: overlay; !* same as in the SVG group *!*/
/*    pointer-events: none;*/
/*    z-index: 0;*/
/*    bottom: -80px;*/
/*}*/

.contact-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: center;
    z-index: 1;
}

.contact-hero-text {
    max-width: 520px;
}

.contact-hero-title {
    color: #000;
    font-family: Poppins;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -0.96px;
}

.contact-hero-sub {
    font-size: 15px;
    color: var(--color-text-muted);
    margin: 0 0 24px;
}

.contact-hero-btn {
    margin-top: 8px;
}

.contact-hero-media {
    display: flex;
    justify-content: flex-end;
}

.contact-hero-card {
    border-radius: 32px 32px 0px 0px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
    max-width: 420px;
    transform: translateY(120px);
}

.contact-hero-card img {
    display: block;
    width: 100%;
    height: auto;
}

/* BLUE PILL STRIP */

.contact-pills {
    background: linear-gradient(89deg, #040752 41.89%, #3337C8 104.05%);
    min-height: 96px;
    padding: 0;
    display: flex;
    align-items: center;
    height: 225px;
}

.contact-pills-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    width: 100%;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    border-radius: 999px;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1;
}

.contact-pill-label {
    text-align: center;
    font-family: Poppins;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px; /* 121.429% */
    letter-spacing: -0.56px;
    background: linear-gradient(90deg, #8BC5FF 0%, #5B60FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-pill-icon {
    flex: 0 0 50px;    /* size of the icon */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-pill-icon img {
    display: block;
    width: 100%;
    height: 100%;
}

/* MAIN DOUBLE CARD SECTION */

.contact-main-section {
    background: #F3EBEB;
    padding: 80px 0 90px;
}

.contact-main-heading {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 32px;
    margin: 0 0 40px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
}

.contact-main-card {
    background: #FFFFFF;
    border-radius: 28px;
    padding: 24px 26px 26px;
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.08);
}

.contact-main-card-header {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}

.contact-bullet {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
}

.contact-bullet img {
    display: block;
    width: 100%;
    height: 100%;
}

.contact-main-card-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin: 0 0 4px;
}

.contact-main-card-header p {
    font-size: 13px;
    color: var(--color-text-muted2);
    margin: 0;
}

.contact-main-card-body h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 14px 0 4px;
}

/* lists */

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted2);
}

.contact-list li + li {
    margin-top: 4px;
}

.contact-list--compact li + li {
    margin-top: 2px;
}

.contact-list a {
    color: var(--color-primary);
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

.contact-hours-group + .contact-hours-group {
    margin-top: 10px;
}

/* form fields */

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 6px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.contact-field label {
    font-size: 13px;
    font-weight: 500;
    color: #111111;
}

.contact-field input,
.contact-field textarea {
    border-radius: 999px;
    border: 1px solid #E3E3F0;
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--font-body);
    background: #FAFAFF;
    outline: none;
}

.contact-field textarea {
    border-radius: 18px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px rgba(51, 55, 200, 0.12);
}

/* Extended Form Styles */
.contact-form-section-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 16px;
    color: var(--color-primary);
    border-bottom: 1px solid #E3E3F0;
    padding-bottom: 8px;
}

.contact-form-section-title:first-of-type {
    margin-top: 0;
}

.contact-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.contact-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.contact-radio-label input[type="radio"],
.contact-radio-label input[type="checkbox"] {
    accent-color: var(--color-primary);
    width: 16px;
    height: 16px;
}

.contact-field select {
    border-radius: 999px;
    border: 1px solid #E3E3F0;
    padding: 10px 14px;
    font-size: 14px;
    font-family: var(--font-body);
    background: #FAFAFF;
    outline: none;
    width: 100%;
    cursor: pointer;
    appearance: none; /* Custom arrow would be nice, but standard for now */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%233337C8%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 10px;
}

.contact-field select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px rgba(51, 55, 200, 0.12);
}

.contact-terms {
    margin-top: 24px;
    font-size: 13px;
}

/* form notice */

.contact-notice {
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    margin-bottom: 12px;
}

.contact-notice--success {
    background: rgba(0, 180, 90, 0.1);
    color: #046630;
}

/* BANNER SECTION */

.contact-banner {
    background: linear-gradient(135deg, #050C54 0%, #3337C8 40%, #050C54 100%);
    padding: 40px 0;
}

.contact-banner-title {
    font-family: var(--font-heading);
    font-size: 48px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

/* SUPPORT SECTION */

.contact-support {
    background: #F3EBEB;
    padding: 60px 0 90px;
}

.contact-support-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.contact-support-media img {
    border-radius: 28px;
    display: block;
    width: 100%;
    height: auto;
}

.contact-support-copy {
    font-size: 15px;
    color: var(--color-text-muted);
    margin: 8px 0 18px;
}

.contact-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
}

.contact-metric {
    font-size: 13px;
}

.contact-metric-label {
    display: block;
    font-weight: 500;
    color: var(--color-text-muted2);
}

.contact-metric-value {
    display: block;
    font-weight: 600;
}

/* BOTTOM HERO reuses existing .bottom-hero styles */

/* RESPONSIVE */

@media (max-width: 1200px) {
    .contact-hero-inner,
    .contact-support-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-hero-media {
        justify-content: flex-start;
        margin-top: 32px;
    }

    .contact-main-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 110px 0 80px;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-banner-title {
        font-size: 34px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

/* CONTACT – badge support variant */

.badge--support .badge-copy h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    margin: 0 0 14px;
}

.badge--support .contact-eyebrow {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
    margin: 0 0 10px;
}

.badge--support .badge-title {
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 1.1;
    margin: 0 0 16px;
}

.badge--support .badge-copy-main {
    color: #E7E8F7;
    line-height: 1.55;
    margin: 0 0 24px;
}

/* support metrics inside the badge */

.support-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    margin: 4px 0 24px;
}

.support-metric {
    font-size: 14px;
}

.support-metric-label {
    display: block;
    font-weight: 500;
    color: #CDD1FF;
}

.support-metric-value {
    display: block;
    font-weight: 600;
    color: #FFFFFF;
}

/* small tweak on mobile so the badge still looks good */

@media (max-width: 1200px) {
    .badge--support .badge-inner {
        grid-template-columns: 1fr;
    }

    .badge--support .badge-image {
        max-width: 480px;
        margin: 32px auto 0;
    }
}

/* on mobile we usually reset the shift so it doesn't clip */
@media (max-width: 992px) {
    .contact-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-hero-card {
        transform: none;
        margin-top: 24px;
    }
}

@media (max-width: 992px) {
    .badge--support .badge-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .badge--support .badge-image {
        order: -1; /* image on top on mobile; remove if you want it below */
        max-width: 460px;
        margin: 0 auto 32px;
    }
}


/* ===========================
   SIGNUP PAGE
   =========================== */

.signup-main {
    padding: 160px 0 140px;
    background:
            radial-gradient(130% 130% at 0% 0%,
            var(--color-primary-light) 0%,
            var(--color-bg-light) 40%,
            var(--color-bg-light) 100%);
}

.signup-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: flex-start;
}

@media (max-width: 960px) {
    .signup-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.signup-copy {
    max-width: 560px;
}

.signup-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 3.2vw, 3.2rem);
    line-height: 1.05;
    margin: 0 0 20px;
}

.signup-lead {
    margin: 0 0 24px;
    font-size: 1rem;
    color: var(--color-text-muted);
}

.signup-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-text-muted2);
}

.signup-highlights li::before {
    content: "•";
    color: var(--color-primary);
    margin-right: 8px;
}

/* Card */

.signup-card {
    background: #FFFFFF;
    border-radius: var(--radius-card);
    padding: 32px 32px 36px;
    box-shadow: 0 26px 60px rgba(10, 18, 80, 0.18);
}

.signup-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.signup-card-header h2 {
    font-size: 1.25rem;
    margin: 0 0 4px;
}

.signup-card-header p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted2);
}

/* Form */

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.signup-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 700px) {
    .signup-form-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

.signup-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.signup-field label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted2);
}

.signup-field .required {
    color: var(--color-primary);
    margin-left: 4px;
}

.signup-field input,
.signup-field textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #E1E1F2;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.4;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
    background: #FBFAFF;
}

.signup-field textarea {
    resize: vertical;
    min-height: 120px;
}

.signup-field input:focus,
.signup-field textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px rgba(51, 55, 200, 0.35);
    background: #FFFFFF;
}

.signup-card .btn.btn-primary {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
}





/* ===========================
   PRICING PAGE
   =========================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        max-width: 500px;
        margin: 0 auto;
    }
}

.pricing-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    transition: transform 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card--featured {
    border: 2px solid var(--color-primary);
    padding-top: 50px; /* space for tag */
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card--featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 8px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin: 0 0 16px;
    color: var(--color-text-main);
}

.pricing-header .price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.pricing-header .amount {
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
    font-family: var(--font-heading);
}

.pricing-header .period {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-left: 4px;
}

.pricing-header .price-desc {
    font-size: 15px;
    color: var(--color-text-muted2);
    margin: 0 0 32px;
    min-height: 48px; /* align buttons/lists */
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.pricing-body ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--color-text-muted);
}

.pricing-body ul li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}


/* ===========================
   PRICING PAGE UPDATES
   =========================== */

/* Device Tabs */
.device-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.device-tab {
    width: 223px;
    height: 98px;
    background: #F8F8FF;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center; /* Center content */
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-main);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    font-family: var(--font-heading);
}

.device-tab:hover {
    transform: translateY(-2px);
    border: 0.5px solid #3337C8;
    background: #FFF;
    box-shadow: 5px -3px 43px 6px #8BC5FF;
}

.device-tab.active {
    border-color: var(--color-primary-light);
    background: #F0F4FF; /* Light blue tint */
    box-shadow: 5px -3px 43px 6px #8BC5FF; /* Matching glow for active state too */
}

.tab-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.placeholder-icon {
    background-color: #ddd;
    border-radius: 50%;
}

/* Pricing Grid - Simplified for Single/Few Cards */
.pricing-section {
    margin-top: -120px; /* Pull up into the hero */
    position: relative;
    z-index: 10;
    background: var(--color-bg-section); 
    padding: 60px 0 100px;
}

.pricing-page-title {
    margin-bottom: 24px; 
    font-size: 48px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping if we ever add more cards */
    justify-content: center; /* Center the card(s) */
    gap: 24px;
    padding: 40px 20px; /* Standard padding */
    width: 100%;
    margin: 0 auto;
}

/* Hide scrollbar for Chrome/Safari/Edge */
.pricing-grid::-webkit-scrollbar {
    display: none;
}

.pricing-card {
    flex: 0 1 auto; /* Allow flex sizing but don't force grow */
    /* ... existing styles ... */
    width: 100%;
    max-width: 380px; /* Slightly wider max-width for comfort */
    height: auto;     /* Let content define height */
    min-height: 600px; /* Minimum height for consistency */
    background: #FFF;
    border-radius: 20px;
    padding: 40px 32px; /* More internal breathing room */
    /* Reserve space for the hover border to prevent jump */
    border: 1px solid transparent; 
    border-top: 5px solid transparent; 
    
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-radius: 20px;
    border-top: 5px solid #3337C8;
    background: #FFF;
    box-shadow: 0 4px 51px 0 rgba(139, 197, 255, 0.20);
    transform: translateY(-5px);
}

/* Removed .pricing-card--active */

.tab-logo {
    width: 120px;
    height: 60px;
    display: block;
    object-fit: contain;
    object-position: center;
}

.tab-logo--imac {
    width: 97px;
    height: 27px;
}

.badge-logo-img {
    height: 26px; /* Smaller size for the card badge */
    width: auto;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.badge-logo-img--imac {
    height: 12px;
    width: auto;
}

.badge-logo-img--windows {
    height: 17px;
    width: auto;
}

.badge-logo-img--android {
    height: 17px;
    width: auto;
}

.badge-logo-img--chrome {
    height: 17px;
    width: auto;
}

/* If device badge has an image, remove the green dot */
.device-badge:has(img)::before {
    display: none;
}

.device-badge:has(img) {
    color: transparent; /* Hide text if any remains */
}

.device-badge {
    font-size: 12px;
    font-weight: 600;
    color: #4CAF50; /* Android Greenish */
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    height: 20px; /* Fixed height for consistency */
}

.device-badge::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #4CAF50;
    margin-right: 6px;
    border-radius: 50%; /* Placeholder for icon */
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 16px;
}

.pricing-header .price-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-muted2);
    margin-bottom: 24px;
    min-height: 42px; 
}

.pricing-header .price {
    margin-bottom: 4px;
    color: var(--color-primary);
}

.pricing-header .amount {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 65px;
    font-style: normal;
    font-weight: 300; /* 275 isn't standard in Google Fonts usually, 300 is Light */
    line-height: 65px;
    letter-spacing: -1.3px;
    background: linear-gradient(272deg, #8BC5FF 1.34%, #3337C8 86.35%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-header .cents {
    font-size: 24px;
    vertical-align: top;
    position: relative;
    top: 8px;
}

.price-period {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.pricing-btn {
    width: 100%;
    margin-bottom: 32px;
}

/* Features List */
.pricing-body ul li {
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-main);
    font-size: 14px;
    font-weight: 500;
}

.pricing-body ul li::before {
    content: none; /* Remove old checkmark */
}

.pricing-body ul li::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #D9D9D9; /* Grey dot */
    border-radius: 50%;
}

/* Nav Arrows */
.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    font-size: 20px;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.nav-arrow:hover {
    background: var(--color-primary);
    color: #FFF;
}


/* Pricing Hero Gradient */
.pricing-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(150% 200% at 100% -24%, var(--color-primary-light) 0%, var(--color-bg-light) 55%, var(--color-bg-light) 100%);
    padding-bottom: 180px !important;
    padding-top: 160px; /* Spacing for absolute header */
}

/* Dual Pricing Layout */
.pricing-dual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    background: #F8F8FF;
    border-radius: 16px;
    padding: 16px 4px;
}

.pricing-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.pricing-divider {
    color: var(--color-text-muted2);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.7;
}

.pricing-dual-container .amount {
    font-size: 32px;
    line-height: 1;
}

.pricing-dual-container .cents {
    font-size: 14px;
    top: 4px;
}

.pricing-dual-container .price {
    margin-bottom: 4px;
}

.pricing-dual-container .price-period {
    margin-bottom: 0;
    font-size: 13px;
    text-transform: capitalize;
}

.bottom-hero-inner h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    max-width: 560px;
    margin-top: 90px;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    /* ... */
}

@media (max-width: 768px) {
    /* ... existing styles ... */
    
    .pricing-page-title {
        font-size: 36px;
    }
    
    .bottom-hero-inner h2 {
        font-size: 32px;
        margin-top: 40px; /* Also reduce top margin for mobile */
    }
    
    /* ... existing styles ... */
}