@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Google Sans Flex", sans-serif;
}


:root {
    --primary-color: #5b54ff;
    --border-radius: 8px;
    --border: 1.5px solid #e5e7eb;
    --border-color: #e5e7eb;
    --box-shadow: 0 4px 15px rgba(117, 128, 222, .2);
    --box-shadow-card: 0 4px 12px rgba(0, 0, 0, 0.1);
    --sidebar-width: 270px;
    --bg-primary: #ffffff;
    --bg-secondary: #f0f2f5;
    --bg-hero: #f5f5f5;
    --bg-section: #fafafa;
    --bg-dark: #0f1f3d;
    --text-primary: #0a0a0a;
    --text-secondary: #626380cf;
    --heading-color: #231645;
    --text-muted: #5b5768;
    --text-on-dark: #ffffff;
    /* Brand gradient (matches logo) */
    --brand-from: #5b54ff;
    --brand-mid: #7c3aed;
    --brand-to: #a855f7;
    --brand-grad: linear-gradient(135deg, var(--brand-from) 0%, var(--brand-mid) 55%, var(--brand-to) 100%);
    /* Glass surface used by the header */
    --header-bg: rgba(255, 255, 255, 0.72);
    --header-border: rgba(15, 23, 42, 0.08);
    --header-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

[data-theme="dark"] {
    --bg-primary: #111822;
    --bg-secondary: #1a1f2e;
    --bg-hero: #151b28;
    --bg-section: #1a1f2e;
    --bg-dark: #0d1321;
    --text-primary: #e4e6eb;
    --text-secondary: #b0b3b8;
    --heading-color: #e4e6eb;
    --text-muted: #b0b3b8;
    --border-color: #3e4042;
    --border: 1.5px solid var(--border-color);
    --box-shadow: 0 4px 15px rgba(0, 0, 0, .3);
    --box-shadow-card: 0 4px 12px rgba(0, 0, 0, 0.25);
    --header-bg: rgba(15, 21, 36, 0.72);
    --header-border: rgba(255, 255, 255, 0.06);
    --header-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.container {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}

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

body {
    background-color: var(--bg-secondary);
}

.header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--header-bg);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid var(--header-border);
    box-shadow: var(--header-shadow);
    transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(91, 84, 255, 0.04), transparent 70%);
    opacity: 0.9;
}

[data-theme="dark"] .header::before {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.10), transparent 70%);
}

.header-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 24px;
}

.logo {
    width: auto;
    height: 38px;
    max-width: 240px;
    display: inline-block;
    vertical-align: middle;
}

/* Light/dark logo switching */
.logo-light {
    display: inline-block;
}
.logo-dark {
    display: none;
}
[data-theme="dark"] .logo-light {
    display: none;
}
[data-theme="dark"] .logo-dark {
    display: inline-block;
}

/* Brand row: logo image + site title */
.header-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

/* Text fallback when no logo image is configured */
.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.4px;
    background: linear-gradient(135deg, #5b54ff 0%, #7c3aed 55%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Site name next to uploaded logo */
.logo-text--with-logo {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.3px;
    max-width: min(220px, 28vw);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-link {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-link a {
    position: relative;
    display: inline-block;
    padding: 6px 0;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--heading-color);
    letter-spacing: -0.1px;
    transition: color 0.2s ease;
}

.header-link a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--brand-grad);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-link a:hover {
    color: var(--brand-mid);
}

.header-link a:hover::after {
    transform: scaleX(1);
}

[data-theme="dark"] .header-link a:hover {
    color: #cbb6ff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--primary-color);
    font-size: 24px;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    max-height: 0;
    width: 100%;
    padding: 0;
    background-color: var(--bg-primary);
    border-top: 1px solid transparent;
    box-shadow: var(--box-shadow-card);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
    z-index: 999;
}

.mobile-menu-list {
    padding: 0 5%;
}

.mobile-menu.active {
    max-height: 500px;
    padding: 20px 0;
    opacity: 1;
    transform: translateY(0);
    border-top-color: var(--border-color);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-item {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active .mobile-menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-menu-item:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.active .mobile-menu-item:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-menu-item:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu.active .mobile-menu-item:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-item a:hover {
    color: var(--primary-color);
}

.mobile-menu-item a i {
    font-size: 18px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.mobile-menu-toggle {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.btn {
    height: 44px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.1px;
    cursor: pointer;
    border: none;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-primary);
    text-decoration: none;
    white-space: nowrap;
    user-select: none;
}

.btn i {
    font-size: 18px;
}

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

.btn:focus-visible {
    outline: 2px solid var(--brand-mid);
    outline-offset: 3px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--heading-color);
    border: 1.5px solid var(--header-border);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

.btn-secondary:hover {
    color: var(--brand-mid);
    border-color: rgba(124, 58, 237, 0.45);
    background-color: rgba(124, 58, 237, 0.06);
}

[data-theme="dark"] .btn-secondary {
    color: #e4e6eb;
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

[data-theme="dark"] .btn-secondary:hover {
    color: #cbb6ff;
    border-color: rgba(168, 85, 247, 0.55);
    background-color: rgba(124, 58, 237, 0.18);
}

.btn-primary {
    background: var(--brand-grad);
    background-size: 180% 180%;
    background-position: 0% 50%;
    color: #ffffff;
    box-shadow: 0 8px 22px -6px rgba(91, 84, 255, 0.55), 0 2px 6px -2px rgba(124, 58, 237, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
    background-position: 100% 50%;
    box-shadow: 0 14px 28px -6px rgba(124, 58, 237, 0.55), 0 4px 10px -2px rgba(168, 85, 247, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px -6px rgba(91, 84, 255, 0.55);
}

/* ============================================================
   HERO — clean, spacious layout
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    padding: 88px 0 96px;
    overflow: hidden;
    background-color: var(--bg-hero);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background-image: url('https://cdn.prod.website-files.com/68a629b0662a6fa63789bcfe/68a63695faa8385a0e6d03f4_Background%20Pattern.avif');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    pointer-events: none;
}

[data-theme="dark"] .hero-backdrop {
    opacity: 0.22;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, var(--bg-hero) 0%, transparent 45%, var(--bg-hero) 100%);
}

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

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.hero-content {
    text-align: left;
    max-width: 34rem;
}

.hero-kicker {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-title {
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.18;
    margin: 0 0 20px;
    letter-spacing: -0.025em;
}

.hero-title-gradient {
    background: var(--brand-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0 0 28px;
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 24px;
    margin-bottom: 28px;
}

.hero-cta-primary {
    height: 48px;
    padding: 0 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
}

.hero-cta-quiet {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-cta-quiet:hover {
    color: var(--brand-mid);
    border-bottom-color: rgba(124, 58, 237, 0.45);
}

[data-theme="dark"] .hero-cta-quiet:hover {
    color: #cbb6ff;
}

.hero-meta {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* Right: minimal inbox panel */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-panel {
    width: 100%;
    max-width: 360px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 24px 48px -24px rgba(15, 31, 61, 0.18);
    overflow: hidden;
}

.hero-panel-top {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-section);
}

.hero-panel-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--heading-color);
}

.hero-panel-list {
    list-style: none;
    margin: 0;
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-panel-row {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.hero-panel-row--soft {
    opacity: 0.72;
    background: var(--bg-section);
}

.hero-panel-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--primary-color);
}

.hero-panel-icon--wa {
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.25);
}

.hero-panel-icon--go {
    color: #ea4335;
    border-color: rgba(234, 67, 53, 0.25);
}

.hero-panel-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.hero-panel-app {
    font-size: 13px;
    font-weight: 600;
    color: var(--heading-color);
}

.hero-panel-code {
    font-size: 12px;
    color: var(--text-muted);
}

.hero-panel-code strong {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-panel-when {
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
}

.hero-visual .hero-panel {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease 0.2s, transform 0.65s ease 0.2s;
}

.hero-visual .hero-panel.animate {
    opacity: 1;
    transform: translateY(0);
}

.h-full {
    height: 100%;
}

.stats {
    padding: 50px 0;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.stats-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-icon {
    width: 56px;
    height: 56px;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.stats-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.stats-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stats-text h3 {
    color: var(--heading-color);
    font-size: 20px;
}

.stats-text p {
    white-space: nowrap;
    font-size: 14px;
    color: var(--heading-color);
}

.about-section {
    width: 100%;
    padding: 100px 0;
}

.section-header {
    text-align: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

.section-header .subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 100px;
    padding: 4px 12px 4px 10px;
    border: 2px solid var(--border-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-header .title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-header .desc {
    color: var(--text-muted);
    font-size: 15px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-item {
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.about-item.active {
    opacity: 1;
}

.about-item.active .about-title {
    color: var(--primary-color);
}

.about-item:hover {
    opacity: 1;
}

.about-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.about-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}

.about-item.active .about-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}

.about-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin: 0;
}

.about-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper {
    width: 100%;
    max-width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-image: linear-gradient(#f5f4ff, var(--bg-dark));
    padding: 40px;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.about-image.fade-out {
    opacity: 0;
}

.about-image.fade-in {
    opacity: 1;
}

.features {
    padding: 100px;
    width: 100%;
}

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

.features-card {
    padding: 20px;
    background-color: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.features-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(74, 58, 255, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: #f5f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.feature-text h3 {
    color: var(--heading-color);
    font-size: 20px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-muted);
}

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

.automation-cards-container {
    position: relative;
    height: 1500px;
}

.automation-card {
    position: sticky;
    top: 100px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    padding: 30px;
    border-radius: 32px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.automation-card:nth-child(1) {
    background-image: linear-gradient(#e0f2fe, #0ea5e9);
}

.automation-card:nth-child(2) {
    background-image: linear-gradient(#fff5f0, #ffd4b3);
}

.automation-card:nth-child(3) {
    background-image: linear-gradient(#f0f9ff, #b3e5fc);
}

.automation-card:nth-child(4) {
    background-image: linear-gradient(#f3e8ff, #d4b3ff);
}

[data-theme="dark"] .automation-card:nth-child(1) {
    background-image: linear-gradient(#0f172a, #1e293b);
}

[data-theme="dark"] .automation-card:nth-child(2) {
    background-image: linear-gradient(#451a03, #7c2d12);
}

[data-theme="dark"] .automation-card:nth-child(3) {
    background-image: linear-gradient(#0f172a, #1d4ed8);
}

[data-theme="dark"] .automation-card:nth-child(4) {
    background-image: linear-gradient(#1e1b4b, #4c1d95);
}

.automation-card:last-child {
    margin-bottom: 0;
}

.automation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(74, 58, 255, 0.15);
}

.automation-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.automation-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.2;
    margin: 0;
}

.automation-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.automation-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.automation-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--heading-color);
}

[data-theme="dark"] .automation-title,
[data-theme="dark"] .automation-desc,
[data-theme="dark"] .automation-feature-item {
    color: #ffffff;
}

.automation-image-wrapper {
    width: 100%;
    max-width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(74, 58, 255, 0.1);
}

.automation-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
}

.integration-section {
    width: 100%;
    padding: 100px 0;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.integration-card {
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
}

.integration-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.integration-icon {
    width: 56px;
    height: 56px;
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.integration-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.integration-text p {
    font-size: 14px;
    color: var(--heading-color);
}

/* Theme toggle — compact pill with sun/moon glyphs */
.theme-toggle {
    display: inline-flex;
    align-items: center;
}

.toggle-switch {
    position: relative;
    display: inline-block;
}

.toggle-switch input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.toggle-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 58px;
    height: 30px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--brand-grad);
    background-size: 200% 200%;
    background-position: 0% 50%;
    cursor: pointer;
    transition: background-position 0.4s ease, box-shadow 0.3s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.20), 0 4px 12px -4px rgba(91, 84, 255, 0.45);
}

.toggle-icon {
    font-size: 14px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.95);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    z-index: 1;
}

.toggle-icon-sun {
    transform: translateX(0) rotate(0deg);
}

.toggle-icon-moon {
    transform: translateX(0) rotate(0deg);
}

.toggle-label .toggle-text {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.30), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

/* Checked = dark mode = thumb on right (covers moon) */
.toggle-switch input:checked + .toggle-label .toggle-text {
    transform: translateX(28px);
}

.toggle-switch input:checked + .toggle-label {
    background-position: 100% 50%;
}

.toggle-switch input:focus-visible + .toggle-label {
    outline: 2px solid var(--brand-mid);
    outline-offset: 3px;
}

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

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(15, 31, 61, 0.15);
    transform: translateY(-4px);
}

.review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.review-rating i {
    font-size: 18px;
    color: #f59e0b;
}

.review-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-avatar i {
    font-size: 24px;
    color: var(--text-on-dark);
}

.review-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
}

.review-role {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: 24px;
    }
}

.steps {
    background-color: var(--bg-dark);
    padding: 100px 0;
    color: var(--text-on-dark);
}

.steps .subtitle {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.steps .desc {
    color: var(--text-on-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.steps-card {
    padding: 20px 24px 24px;
    background-color: var(--bg-primary);
    border-radius: 14px;
}

.steps-card h3 {
    color: var(--heading-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.steps-card p {
    font-size: 14px;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.step-image img {
    width: 100%;
}

.faq {
    padding: 100px 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 20px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 20px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    padding-top: 0;
}

.faq-answer.active {
    max-height: 500px;
    opacity: 1;
    padding-top: 16px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.cta {
    padding: 100px 0;
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--text-on-dark);
}

.cta .subtitle {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.cta .desc {
    color: var(--text-on-dark);
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-white {
    background-color: var(--bg-primary);
    color: var(--primary-color);
    border: 2px solid var(--bg-primary);
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-on-dark);
    border: 2px solid var(--text-on-dark);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-on-dark);
}

.footer {
    padding: 100px 0;
    width: 100%;
    background-color: var(--bg-primary);
    border-top: 2px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-logo {
    width: 130px;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--heading-color);
}

.footer-tagline {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column-title {
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-list li a {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-list li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.website-link {
    color: #4a3aff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.website-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.social-icon i {
    font-size: 20px;
}

/* Scroll Animation Styles - Pure CSS */
section:not(.hero) {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section:not(.hero).animate {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.section-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.stats-card,
.features-card,
.integration-card,
.steps-card,
.faq-item,
.automation-card,
.review-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stats-card.animate,
.features-card.animate,
.integration-card.animate,
.steps-card.animate,
.faq-item.animate,
.automation-card.animate,
.review-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for cards */
.stats-card:nth-child(1) { transition-delay: 0.1s; }
.stats-card:nth-child(2) { transition-delay: 0.2s; }
.stats-card:nth-child(3) { transition-delay: 0.3s; }
.stats-card:nth-child(4) { transition-delay: 0.4s; }

.features-card:nth-child(1) { transition-delay: 0.1s; }
.features-card:nth-child(2) { transition-delay: 0.2s; }
.features-card:nth-child(3) { transition-delay: 0.3s; }
.features-card:nth-child(4) { transition-delay: 0.4s; }
.features-card:nth-child(5) { transition-delay: 0.5s; }
.features-card:nth-child(6) { transition-delay: 0.6s; }

.integration-card:nth-child(1) { transition-delay: 0.1s; }
.integration-card:nth-child(2) { transition-delay: 0.2s; }
.integration-card:nth-child(3) { transition-delay: 0.3s; }
.integration-card:nth-child(4) { transition-delay: 0.4s; }
.integration-card:nth-child(5) { transition-delay: 0.5s; }
.integration-card:nth-child(6) { transition-delay: 0.6s; }

.steps-card:nth-child(1) { transition-delay: 0.1s; }
.steps-card:nth-child(2) { transition-delay: 0.2s; }
.steps-card:nth-child(3) { transition-delay: 0.3s; }

.review-card:nth-child(1) { transition-delay: 0.1s; }
.review-card:nth-child(2) { transition-delay: 0.2s; }
.review-card:nth-child(3) { transition-delay: 0.3s; }
.review-card:nth-child(4) { transition-delay: 0.4s; }
.review-card:nth-child(5) { transition-delay: 0.5s; }
.review-card:nth-child(6) { transition-delay: 0.6s; }

.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-item:nth-child(3) { transition-delay: 0.3s; }
.faq-item:nth-child(4) { transition-delay: 0.4s; }
.faq-item:nth-child(5) { transition-delay: 0.5s; }

.automation-card:nth-child(1) { transition-delay: 0.1s; }
.automation-card:nth-child(2) { transition-delay: 0.2s; }
.automation-card:nth-child(3) { transition-delay: 0.3s; }
.automation-card:nth-child(4) { transition-delay: 0.4s; }

.cta,
.footer {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta.animate,
.footer.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hero content animations */
.hero-kicker {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-title {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease 0.1s, transform 0.55s ease 0.1s;
}

.hero-description {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease 0.2s, transform 0.55s ease 0.2s;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease 0.32s, transform 0.55s ease 0.32s;
}

.hero-meta {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.55s ease 0.42s, transform 0.55s ease 0.42s;
}

.hero-kicker.animate,
.hero-title.animate,
.hero-description.animate,
.hero-buttons.animate,
.hero-meta.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Legal, Privacy, Support content pages - theme-aware */
.content-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 20px;
}

.legal-page .page-title,
.support-page .page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.legal-page .page-date,
.support-page .page-intro {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.legal-page .page-body,
.support-page .page-body {
    line-height: 1.8;
    color: var(--text-primary);
}

.legal-page .page-body section,
.support-page .page-body section {
    margin-bottom: 2.5rem;
}

.legal-page .page-body h2,
.support-page .page-body h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.legal-page .page-body h3,
.support-page .page-body h3 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.legal-page .page-body ul,
.legal-page .page-body ol,
.support-page .page-body ul,
.support-page .page-body ol {
    margin-left: 2rem;
    margin-top: 0.5rem;
}

.legal-page .page-body p,
.support-page .page-body p {
    margin: 0 0 0.5em;
}

.legal-page .page-body p.page-contact-detail,
.support-page .page-body p.page-contact-detail {
    margin-top: 0.5rem;
}

.legal-page .page-body a,
.support-page .page-body a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-page .page-body a:hover,
.support-page .page-body a:hover {
    text-decoration: underline;
}

.support-page .contact-box {
    background-color: var(--bg-section);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid var(--border-color);
}

.support-page .contact-box p {
    margin-bottom: 0.5rem;
}

.support-page .contact-box p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   Premium landing-page additions
   ============================================================ */

/* Hero trust strip */
.hero-trust {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    margin-top: 28px;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}
.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hero-trust-item i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Hero "OTP inbox" mock */
.hero-mock {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    background-color: var(--bg-primary);
    border: 1.5px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 30px 60px -20px rgba(15, 31, 61, 0.25);
    overflow: hidden;
    animation: floatUpDown 4s ease-in-out infinite;
}
.hero-mock-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background-color: var(--bg-section);
    border-bottom: 1px solid var(--border-color);
}
.hero-mock-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.dot-red { background: #ff5f56; }
.dot-amber { background: #ffbd2e; }
.dot-green { background: #27c93f; }
.hero-mock-title {
    margin-left: 12px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.hero-mock-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}
.hero-msg {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-msg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 31, 61, 0.08);
}
.hero-msg-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--bg-primary);
    color: var(--primary-color);
    font-size: 20px;
    border: 1px solid var(--border-color);
}
.hero-msg-text {
    display: flex;
    flex-direction: column;
}
.hero-msg-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
}
.hero-msg-sub {
    font-size: 13px;
    color: var(--text-muted);
}
.hero-msg-sub strong {
    color: var(--primary-color);
    letter-spacing: 1px;
}
.hero-msg-time {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
}

/* About icons inline */
.about-title i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* About-right feature stack */
.about-feature-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.about-feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    background-color: var(--bg-primary);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(15, 31, 61, 0.08);
}
.about-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(76, 69, 224, 0.08);
    color: var(--primary-color);
    font-size: 22px;
    flex-shrink: 0;
}
.about-feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
}
.about-feature-sub {
    font-size: 14px;
    color: var(--text-muted);
}

/* Override the original about-image-wrapper background for stack */
.about-right .about-image-wrapper { display: none; }
.about-right .about-feature-stack { display: flex; }

/* Steps numbering */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(76, 69, 224, 0.25);
}

/* Automation illustrations (no images) */
.automation-illustration {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    padding: 36px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}
[data-theme="dark"] .automation-illustration {
    background: rgba(255, 255, 255, 0.06);
}
.auto-flag {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.auto-flag-pill {
    padding: 10px 18px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 100px;
    font-weight: 600;
    color: var(--heading-color);
    box-shadow: 0 4px 14px rgba(15, 31, 61, 0.06);
    font-size: 14px;
}
[data-theme="dark"] .auto-flag-pill {
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.auto-phone {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 9 / 14;
    background-color: #0f1f3d;
    border-radius: 26px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(15, 31, 61, 0.25);
}
.auto-phone-screen {
    background-color: #fff;
    border-radius: 18px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 14px;
}
.auto-phone-line {
    font-size: 22px;
    font-weight: 700;
    color: #0f1f3d;
    letter-spacing: 1px;
}
.auto-phone-status {
    color: #16a34a;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.auto-phone-status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #16a34a;
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6);
    animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
    0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6); }
    100% { box-shadow: 0 0 0 12px rgba(22, 163, 74, 0); }
}
.auto-otp {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.auto-otp-digit {
    width: 60px;
    height: 76px;
    background-color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(15, 31, 61, 0.08);
}
[data-theme="dark"] .auto-otp-digit {
    background-color: rgba(255, 255, 255, 0.95);
}

/* Inner page hero (Support / Terms / Privacy) */
.page-hero {
    padding: 110px 0 60px;
    text-align: center;
    background-color: var(--bg-hero);
    background-image: url('https://cdn.prod.website-files.com/68a629b0662a6fa63789bcfe/68a63695faa8385a0e6d03f4_Background%20Pattern.avif');
    background-size: cover;
    background-position: center;
}
.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    background-color: var(--bg-primary);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    box-shadow: var(--box-shadow);
    margin-bottom: 18px;
}
.page-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}
.page-hero-sub {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto;
}

.content-section {
    padding: 70px 0;
}
.content-section--alt {
    background-color: var(--bg-section);
}

/* Support cards grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.support-card {
    padding: 28px;
    background-color: var(--bg-primary);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    color: var(--heading-color);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    display: block;
}
.support-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 18px 36px rgba(15, 31, 61, 0.08);
}
.support-icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background-color: rgba(76, 69, 224, 0.10);
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 16px;
}
.support-card h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--heading-color);
}
.support-card p {
    margin: 0 0 8px;
    color: var(--text-muted);
    font-size: 15px;
}
.support-meta {
    display: inline-block;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Legal page (used inside content-section) */
.legal-page {
    max-width: 880px;
    margin: 0 auto;
    line-height: 1.75;
}
.legal-page h2 {
    font-size: 22px;
    margin: 36px 0 12px;
    color: var(--heading-color);
}
.legal-page h3 {
    font-size: 17px;
    margin: 18px 0 8px;
    color: var(--heading-color);
}
.legal-page p,
.legal-page li {
    color: var(--text-primary);
    font-size: 15.5px;
}
.legal-page ul,
.legal-page ol {
    padding-left: 22px;
    margin: 8px 0 12px;
}
.legal-page section {
    padding-bottom: 6px;
}
.page-contact-detail {
    background-color: var(--bg-section);
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: 12px;
    display: inline-block;
}

/* CTA strip (used at bottom of pages) */
.cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 36px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    color: #fff;
    flex-wrap: wrap;
}
.cta-strip-text h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 24px;
}
.cta-strip-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}
.cta-strip-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.cta-strip .btn-primary {
    background-color: #fff;
    color: var(--primary-color);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}
.cta-strip .btn-hero-secondary {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}
.cta-strip .btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1024px) {
    .support-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .page-hero { padding: 90px 0 40px; }
    .page-hero-title { font-size: 34px; }
    .support-grid { grid-template-columns: 1fr; }
    .cta-strip { flex-direction: column; align-items: stretch; text-align: center; }
    .cta-strip-actions { justify-content: center; }
    .auto-otp-digit { width: 44px; height: 60px; font-size: 24px; }
    .hero-msg { grid-template-columns: 36px 1fr auto; gap: 10px; padding: 12px; }
}
