/**
 * Modern UI Enhancements - 2026 Aesthetic
 * Glassmorphism, Fluid Typography, Mesh Gradients, Micro-Interactions
 */

/* ==================== MODERN TYPOGRAPHY ==================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter+Tight:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Fonts */
    --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter Tight', system-ui, -apple-system, sans-serif;

    /* Brand Colors & Tints */
    --brand-ink: #1A365D;
    --brand-cyan: #00BCD4;
    --brand-pink: #EC407A;
    --brand-sand: #F7F4F0;
    --brand-night: #0F1E3A;

    --bg-cyan-light: rgba(6, 182, 212, 0.03);
    --bg-pink-light: rgba(255, 77, 139, 0.03);
    --bg-ink-light: rgba(26, 54, 93, 0.02);

    /* Fluid Typography - Scales with viewport */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.8rem + 2.25vw, 3rem);
    --text-5xl: clamp(3rem, 2.4rem + 3vw, 4rem);
    --text-6xl: clamp(3.75rem, 3rem + 3.75vw, 5rem);
    --text-7xl: clamp(4.5rem, 3.6rem + 4.5vw, 6rem);

    /* Modern Spacing Scale */
    --space-xs: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
    --space-sm: clamp(0.75rem, 0.6rem + 0.75vw, 1rem);
    --space-md: clamp(1rem, 0.8rem + 1vw, 1.5rem);
    --space-lg: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    --space-xl: clamp(2rem, 1.6rem + 2vw, 3rem);
    --space-2xl: clamp(3rem, 2.4rem + 3vw, 4rem);
    --space-3xl: clamp(4rem, 3.2rem + 4vw, 6rem);

    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(6, 182, 212, 0.3), 0 0 60px rgba(255, 77, 139, 0.2);

    /* Border Radius - Softer */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-3xl: 3rem;
    --radius-full: 9999px;
}

/* ==================== GLASSMORPHISM 2.0 ==================== */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.glass-strong {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(26, 54, 93, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== MESH GRADIENTS ==================== */
.mesh-gradient-1 {
    background:
        radial-gradient(at 40% 20%, rgba(6, 182, 212, 0.3) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(255, 77, 139, 0.3) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(139, 92, 246, 0.3) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(251, 191, 36, 0.2) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(34, 211, 238, 0.3) 0px, transparent 50%),
        radial-gradient(at 80% 100%, rgba(236, 72, 153, 0.3) 0px, transparent 50%),
        linear-gradient(180deg, #1A365D 0%, #0F172A 100%);
    animation: meshShift 20s ease infinite;
}

.mesh-gradient-2 {
    background:
        radial-gradient(circle at 10% 20%, rgba(6, 182, 212, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 77, 139, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
}

@keyframes meshShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ==================== MODERN CARDS ==================== */
.modern-card {
    background: white;
    background: linear-gradient(145deg, #ffffff, var(--bg-cyan-light));
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.05);
    /* Subtle Cyan Border */
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06B6D4, #FF4D8B);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    border-color: rgba(6, 182, 212, 0.2);
}

.modern-card:hover::before {
    transform: scaleX(1);
}


/* ==================== GRADIENT BORDERS ==================== */
.gradient-border {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, #06B6D4, #FF4D8B, #8B5CF6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* ==================== MODERN BUTTONS ==================== */
.btn-modern {
    position: relative;
    padding: 1rem 2rem;
    font-size: var(--text-lg);
    font-weight: 600;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    color: white;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.5);
}

.btn-modern-pink {
    background: linear-gradient(135deg, #FF4D8B, #EC4899);
    box-shadow: 0 4px 20px rgba(255, 77, 139, 0.4);
}

.btn-modern-pink:hover {
    box-shadow: 0 8px 30px rgba(255, 77, 139, 0.5);
}

/* ==================== ENHANCED HOVER EFFECTS ==================== */
.hover-float {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-float:hover {
    transform: translateY(-12px) scale(1.02);
}

.hover-magnetic {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== SECTION DIVIDERS ==================== */
.section-divider {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
}

/* ==================== MODERN HERO ==================== */
.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    animation: heroFloat 20s ease-in-out infinite;
}

.hero-modern::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 77, 139, 0.15) 0%, transparent 70%);
    animation: heroFloat 25s ease-in-out infinite reverse;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-headline-modern {
    font-size: var(--text-7xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1A365D 0%, #06B6D4 50%, #FF4D8B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

/* ==================== VALUE CARDS - MODERN REDESIGN ==================== */
.value-card-modern {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.value-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(255, 77, 139, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card-modern:hover::before {
    opacity: 1;
}

.value-card-modern:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.3);
}

.value-icon-modern {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #06B6D4, #FF4D8B);
    border-radius: var(--radius-xl);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.value-icon-modern::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: calc(var(--radius-xl) - 2px);
    background: white;
}

.value-icon-modern svg {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    color: #06B6D4;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card-modern:hover .value-icon-modern {
    transform: rotate(10deg) scale(1.1);
}

.value-card-modern:hover .value-icon-modern svg {
    transform: scale(1.2);
}

/* ==================== SPACING UTILITIES ==================== */
.spacing-modern {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.container-modern {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
}

/* ==================== SECTION HEADINGS ==================== */
.section-heading-modern {
    font-size: var(--text-5xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
    color: #1A365D;
}

.section-subtitle-modern {
    font-size: var(--text-xl);
    text-align: center;
    color: #64748B;
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* ==================== ANIMATED UNDERLINE ==================== */
.underline-animated {
    position: relative;
    display: inline-block;
}

.underline-animated::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #06B6D4, #FF4D8B);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.underline-animated:hover::after {
    transform: scaleX(1);
}

/* ==================== LOADING & TRANSITIONS ==================== */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE IMPROVEMENTS ==================== */
@media (max-width: 768px) {
    .hero-headline-modern {
        font-size: var(--text-4xl);
    }

    .modern-card {
        padding: var(--space-lg);
    }

    .value-card-modern {
        padding: var(--space-xl);
    }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================== DARK MODE SUPPORT ==================== */
@media (prefers-color-scheme: dark) {

    .modern-card,
    .value-card-modern {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .section-heading-modern {
        color: #F8FAFC;
    }
}

/* ==================== TYPOGRAPHY UTILITIES ==================== */
body {
    font-family: var(--font-body);
    color: #24344F;
    line-height: 1.7;
}

/* ==================== CONTACT FORM (CF7) ==================== */
.wpcf7 form {
    margin-top: 0;
}

.wpcf7 form p {
    margin: 0 0 1rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(26, 54, 93, 0.14);
    background: #F8F9FA;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    background: #ffffff;
    border-color: #EC407A;
    box-shadow: 0 0 0 4px rgba(236, 64, 122, 0.18);
}

.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"] {
    width: 100%;
    appearance: none;
    border: none;
    border-radius: 9999px;
    padding: 0.95rem 1.25rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: #EC407A;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(236, 64, 122, 0.25);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 button[type="submit"]:hover {
    transform: translateY(-1px);
    background: #D81B60;
    box-shadow: 0 14px 34px rgba(236, 64, 122, 0.3);
}

.wpcf7 .wpcf7-not-valid-tip {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #D81B60;
}

.wpcf7 .wpcf7-response-output {
    margin: 1rem 0 0;
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid rgba(26, 54, 93, 0.14);
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.font-sans {
    font-family: var(--font-body);
}

.text-brand-ink {
    color: #1A365D;
}

.bg-brand-night {
    background-color: var(--brand-night);
}

.bg-brand-sand {
    background-color: var(--brand-sand);
}

.text-brand-night {
    color: var(--brand-night);
}

.hero-aurora {
    background:
        radial-gradient(1200px circle at 15% 15%, rgba(0, 188, 212, 0.25), transparent 55%),
        radial-gradient(900px circle at 85% 20%, rgba(236, 64, 122, 0.35), transparent 60%),
        radial-gradient(700px circle at 50% 85%, rgba(248, 191, 36, 0.15), transparent 55%),
        linear-gradient(180deg, #0F1E3A 0%, #112446 70%, #0F1E3A 100%);
}

.section-title-xl {
    font-size: var(--text-6xl);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-title-lg {
    font-size: var(--text-4xl);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--brand-pink);
}

.banner-texture {
    /* background-image: url('https://images.unsplash.com/photo-1482192596544-9eb780fc7f66?auto=format&fit=crop&w=2000&q=60'); */
    background-size: cover;
    background-position: center;
}

.playful-pill {
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.float-slow {
    animation: floatSlow 9s ease-in-out infinite;
}

.wiggle {
    animation: wiggle 3.5s ease-in-out infinite;
    transform-origin: center;
}

.sticker {
    box-shadow: 0 12px 30px rgba(15, 30, 58, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.confetti {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(236, 64, 122, 0.25) 2px, transparent 2px),
        radial-gradient(circle, rgba(0, 188, 212, 0.25) 2px, transparent 2px),
        radial-gradient(circle, rgba(248, 191, 36, 0.2) 2px, transparent 2px);
    background-size: 28px 28px, 36px 36px, 44px 44px;
    background-position: 0 0, 12px 16px, 20px 8px;
    opacity: 0.35;
    pointer-events: none;
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(1.5deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-1.5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.doodle-divider {
    position: relative;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.doodle-divider svg {
    max-width: 100%;
    height: 26px;
    color: rgba(15, 30, 58, 0.2);
}

.icon-strip-swiper .swiper-slide {
    width: auto;
}

.icon-strip-swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid rgba(236, 64, 122, 0.25);
    box-shadow: 0 12px 24px rgba(15, 30, 58, 0.12);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    color: #EC407A;
    font-weight: 800;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(236, 64, 122, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #EC407A;
}

.services-swiper {
    padding: 20px 10px 0;
}

.services-swiper .swiper-button-prev,
.services-swiper .swiper-button-next {
    position: static;
    transform: none;
}

.services-swiper .swiper-button-prev {
    left: auto;
}

.services-swiper .swiper-button-next {
    right: auto;
}

.services-swiper .swiper-pagination {
    position: static;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex: 1;
    gap: 8px;
}

.services-swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.services-swiper .swiper-wrapper {
    align-items: stretch;
}

.services-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.icon-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
}

.ticker-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(15, 30, 58, 0.08);
    box-shadow: 0 10px 24px rgba(15, 30, 58, 0.08);
    font-weight: 600;
    color: #1A365D;
    white-space: nowrap;
}

.ticker-full {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 1024px) {
    .ticker-full {
        padding-left: 0;
        padding-right: 0;
    }
}

.icon-strip-swiper {
    padding: 0.25rem 0;
}

/* ==================== TICKER MARQUEE ==================== */
.ticker-marquee {
    width: 100%;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    min-width: 100%;
    animation: ticker-scroll 40s linear infinite;
    will-change: transform;
}

.ticker-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 1rem;
}

.ticker-item {
    display: flex;
    align-items: center;
}

.ticker-marquee:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none;
        transform: translate3d(0, 0, 0);
    }
}

.icon-strip-swiper .swiper-slide {
    width: auto;
}

.icon-strip-swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(15, 30, 58, 0.08);
    box-shadow: 0 10px 24px rgba(15, 30, 58, 0.08);
    font-weight: 600;
    color: #1A365D;
}

.clipart-spark {
    width: 24px;
    height: 24px;
    color: #EC407A;
}

.mesh-sunset {
    background:
        radial-gradient(600px circle at 10% 10%, rgba(236, 64, 122, 0.25), transparent 60%),
        radial-gradient(700px circle at 80% 20%, rgba(0, 188, 212, 0.2), transparent 55%),
        radial-gradient(500px circle at 40% 80%, rgba(248, 191, 36, 0.18), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.mesh-candy {
    background:
        radial-gradient(700px circle at 15% 25%, rgba(0, 188, 212, 0.22), transparent 60%),
        radial-gradient(600px circle at 85% 20%, rgba(236, 64, 122, 0.25), transparent 60%),
        radial-gradient(500px circle at 50% 90%, rgba(168, 85, 247, 0.12), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f7f4f0 100%);
}

.doodle-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.doodle-dot {
    height: 10px;
    width: 10px;
    border-radius: 999px;
    background: rgba(236, 64, 122, 0.6);
}

.doodle-line {
    height: 4px;
    flex: 1;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.5), rgba(236, 64, 122, 0.6));
}

.text-brand-gray {
    color: #64748B;
}

.text-brand-cyan {
    color: #06B6D4;
}

.text-brand-pink {
    color: #FF4D8B;
}

/* Grid Fixes if Tailwind is missing */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-16 {
    gap: 4rem;
}

.gap-20 {
    gap: 5rem;
}

/* Brand Background Utilities */
.bg-brand-soft {
    background: linear-gradient(to bottom, #ffffff, var(--bg-cyan-light));
}

.bg-brand-ink-soft {
    background: var(--brand-ink);
}

.text-brand-ink-muted {
    color: rgba(26, 54, 93, 0.8);
}

/* ==================== HERO (SCREENSHOT MATCH) ==================== */
.hero-screenshot {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-screenshot .hero-bg {
    position: absolute;
    inset: 0;
    transform: scale(1);
    transition: transform 12s ease;
}

.hero-screenshot:hover .hero-bg {
    transform: scale(1.05);
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(15, 30, 58, 0.92) 0%, rgba(15, 30, 58, 0.75) 40%, rgba(15, 30, 58, 0.35) 70%, rgba(15, 30, 58, 0) 100%);
}

.hero-accent {
    background:
        radial-gradient(600px circle at 10% 20%, rgba(0, 188, 212, 0.22), transparent 60%),
        radial-gradient(500px circle at 70% 10%, rgba(236, 64, 122, 0.2), transparent 55%),
        radial-gradient(400px circle at 60% 80%, rgba(168, 85, 247, 0.12), transparent 60%);
    pointer-events: none;
}

.hero-glass {
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 50px rgba(15, 30, 58, 0.35);
}

/* ==================== SECTION ANCHORS ==================== */
.section-anchor {
    scroll-margin-top: 110px;
}

/* ==================== VALUES ROW LAYOUT ==================== */
.values-row {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.values-card {
    min-width: 0;
}

@media (min-width: 640px) {
    .values-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .values-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .values-row {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

/* ==================== SECTION GRADIENTS ==================== */
.section-gradient-white {
    background:
        radial-gradient(900px circle at 12% 15%, rgba(0, 188, 212, 0.16), transparent 60%),
        radial-gradient(900px circle at 88% 15%, rgba(236, 64, 122, 0.16), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfd 55%, #ffffff 100%);
}

.section-gradient-sand {
    background:
        radial-gradient(800px circle at 15% 20%, rgba(0, 188, 212, 0.18), transparent 60%),
        radial-gradient(700px circle at 85% 15%, rgba(236, 64, 122, 0.18), transparent 60%),
        linear-gradient(180deg, #F7F4F0 0%, #ffffff 100%);
}

.section-gradient-sand-alt {
    background:
        radial-gradient(700px circle at 10% 80%, rgba(236, 64, 122, 0.18), transparent 60%),
        radial-gradient(700px circle at 85% 20%, rgba(0, 188, 212, 0.18), transparent 60%),
        linear-gradient(180deg, #F7F4F0 0%, #f7fafc 100%);
}

.section-gradient-night {
    background:
        radial-gradient(600px circle at 15% 20%, rgba(0, 188, 212, 0.28), transparent 60%),
        radial-gradient(500px circle at 85% 30%, rgba(236, 64, 122, 0.3), transparent 60%),
        linear-gradient(180deg, #0F1E3A 0%, #132A4A 70%, #0F1E3A 100%);
}


/* Hero textarea formatting */
.hero-text p,
.about-text p {
    margin-bottom: 0.75rem;
}

.hero-text p:last-child,
.about-text  p:last-child {
    margin-bottom: 0;
}


/* ==================== SERVICES SLIDER ==================== */
.service-card-modern {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 460px;
}

.service-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(26, 54, 93, 0.65);
    margin-bottom: 0.6rem;
}

/* ==================== WHAT WE DO ==================== */
.role-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: 0 10px 22px rgba(15, 30, 58, 0.06);
}

.role-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A365D;
}

.role-card p {
    margin-top: 0.5rem;
    color: #64748B;
}

.what-we-do-image {
    height: 340px;
    border-radius: 24px;
    border: 1px solid rgba(26, 54, 93, 0.08);
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(236, 64, 122, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(26, 54, 93, 0.7);
    font-weight: 600;
}

.what-we-do-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.what-we-do-rows {
    display: grid;
    gap: 3rem;
}

.what-we-do-row {
    border-radius: 28px;
    padding: 0.25rem;
    column-gap: 3.5rem;
    row-gap: 2rem;
}

@media (min-width: 1024px) {
    .what-we-do-row:nth-child(even) .what-we-do-image {
        order: 2;
    }

    .what-we-do-row:nth-child(even) .space-y-4 {
        order: 1;
    }
}

.what-we-do-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1A365D;
}

.what-we-do-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #64748B;
    display: grid;
    gap: 0.6rem;
}

.what-we-do-list li {
    position: relative;
    padding-left: 1.5rem;
}

.what-we-do-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #00BCD4;
}

/* ==================== PLAN INCLUSION ==================== */
.plan-callout {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: 0 12px 24px rgba(15, 30, 58, 0.08);
}

.plan-callout h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A365D;
    margin-bottom: 0.75rem;
}

.plan-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
    color: #64748B;
}

.plan-list li {
    position: relative;
    padding-left: 1.5rem;
}

.plan-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #EC407A;
}

.plan-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: 0 10px 20px rgba(15, 30, 58, 0.06);
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.3), rgba(236, 64, 122, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.plan-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A365D;
    margin-bottom: 0.5rem;
}

.plan-card p {
    color: #64748B;
    line-height: 1.6;
}

/* ==================== PLAN INCLUSION LAYOUT ==================== */
.plan-inclusion-hero {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.plan-inclusion-text {
    display: grid;
    gap: 1.25rem;
}

.plan-inclusion-image {
    min-height: 280px;
    border-radius: 28px;
    border: 1px solid rgba(26, 54, 93, 0.08);
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.16), rgba(236, 64, 122, 0.14));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(26, 54, 93, 0.7);
    font-weight: 600;
}

.plan-inclusion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.plan-inclusion-grid {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .plan-inclusion-hero {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3.5rem;
    }

    .plan-inclusion-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* ==================== ENDORSEMENT SECTION ==================== */
.endorse-hero {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.endorse-text {
    max-width: 560px;
}

.endorse-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.endorse-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 40px rgba(10, 20, 40, 0.35);
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

.endorse-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.4), rgba(236, 64, 122, 0.35));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.endorse-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.endorse-card ul {
    display: grid;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 20px;
}

.endorse-card li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.endorse-card li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #00BCD4;
    border-radius: 999px;
    margin-top: 8px;
    flex-shrink: 0;
}

.endorse-script {
    margin-top: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(236, 64, 122, 0.12));
    border-radius: 28px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 36px rgba(10, 20, 40, 0.35);
    backdrop-filter: blur(14px);
}

.endorse-script h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.endorse-script p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 12px;
}

@media (min-width: 1024px) {
    .endorse-hero {
        grid-template-columns: 1fr;
    }

    .endorse-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ==================== CONSENT METHODS ==================== */
.consent-hero {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.consent-grid {
    display: grid;
    gap: 1.5rem;
}

.consent-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: 0 12px 24px rgba(15, 30, 58, 0.08);
    position: relative;
    overflow: hidden;
}

.consent-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.3), rgba(236, 64, 122, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.consent-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A365D;
    margin-bottom: 0.5rem;
}

.consent-card p {
    color: #64748B;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .consent-hero {
        grid-template-columns: 1fr;
    }

    .consent-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.service-card-modern:hover {
    transform: translateY(-6px);
    border-color: rgba(236, 64, 122, 0.35);
    box-shadow: none;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00BCD4;
    background: rgba(0, 188, 212, 0.12);
    box-shadow: 0 8px 18px rgba(0, 188, 212, 0.2);
    margin-bottom: 1.5rem;
    overflow: visible;
    line-height: 1;
}

.service-icon svg {
    width: 26px;
    height: 26px;
    display: block;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    font-weight: 700;
    color: #EC407A;
    transition: color 0.2s ease, transform 0.2s ease;
}

.service-link-bottom {
    margin-top: auto;
    padding-top: 1.5rem;
}

@media (max-width: 1024px) {
    .service-card-modern {
        min-height: 420px;
    }
}

@media (max-width: 768px) {
    .service-card-modern {
        min-height: 380px;
    }
}

.service-link:hover {
    color: #1A365D;
    transform: translateX(2px);
}

.services-swiper-wrapper .services-arrow {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    border: none;
    box-shadow: 0 10px 22px rgba(15, 30, 58, 0.12);
}

.services-swiper-wrapper .services-arrow::after {
    font-size: 16px;
    color: #EC407A;
    font-weight: 700;
}

.services-swiper-wrapper .services-arrow:hover {
    box-shadow: 0 16px 32px rgba(15, 30, 58, 0.16);
}

.services-swiper-wrapper .services-arrow:focus-visible {
    outline: 3px solid rgba(0, 188, 212, 0.4);
    outline-offset: 2px;
}

.services-swiper-container .swiper-wrapper {
    align-items: stretch;
}

.services-swiper-container .swiper-slide {
    height: auto;
    display: flex;
}

/* ==================== SERVICES TABS ==================== */
.services-tabs {
    display: grid;
    gap: 2.5rem;
}

.services-tablist {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    background: rgba(255, 255, 255, 0.75);
    border-radius: 24px;
    padding: 0.9rem;
    border: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: 0 12px 30px rgba(15, 30, 58, 0.08);
}

.services-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(26, 54, 93, 0.12);
    color: #1A365D;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: left;
}

@media (max-width: 768px) {
    .services-tablist {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .services-tab {
        flex: 1 1 150px;
        justify-content: center;
        text-align: center;
        padding: 0.65rem 1rem;
    }
}

@media (max-width: 480px) {
    .services-tab {
        flex-basis: 100%;
    }
}

.services-tab.active,
.services-tab[aria-selected="true"] {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(236, 64, 122, 0.2));
    border-color: rgba(0, 188, 212, 0.35);
    box-shadow: 0 18px 30px rgba(15, 30, 58, 0.12);
}


.services-panels {
    position: relative;
}

.services-panel {
    display: none;
    gap: 2rem;
    align-items: center;
    background: #ffffff;
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: 0 24px 50px rgba(15, 30, 58, 0.12);
}

.services-panel.active {
    display: grid;
}

.services-panel-image {
    min-height: 320px;
    border-radius: 24px;
    border: 1px solid rgba(26, 54, 93, 0.08);
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(236, 64, 122, 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(26, 54, 93, 0.7);
    font-weight: 600;
}

.services-panel-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: inherit;
}

@media (min-width: 1024px) {
    .services-panel {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .services-tablist {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .services-panel {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .services-tablist {
        display: flex;
        overflow-x: auto;
        gap: 0.75rem;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }

    .services-tablist::-webkit-scrollbar {
        display: none;
    }

    .services-tab {
        min-width: 220px;
    }
}

/* ==================== TESTIMONIALS SLIDER ==================== */
.testimonial-card-modern {
    box-shadow: none;
    height: 100%;
}

.testimonials-swiper-wrapper .custom-arrow-base {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(15, 30, 58, 0.12);
}

.testimonials-swiper-wrapper .custom-arrow-base::after {
    font-size: 16px;
    color: #00BCD4;
    font-weight: 700;
}

.testimonials-swiper-wrapper .custom-arrow-base:hover {
    box-shadow: 0 16px 32px rgba(15, 30, 58, 0.16);
}

.testimonials-swiper-wrapper .custom-arrow-base:focus-visible {
    outline: 3px solid rgba(0, 188, 212, 0.35);
    outline-offset: 2px;
}

.testimonials-swiper-container .swiper-wrapper {
    align-items: stretch;
}

.testimonials-swiper-container .swiper-slide {
    height: auto;
    display: flex;
}

/* Allow card shadows to render fully */
.services-swiper-container .swiper-wrapper {
    padding: 8px 0 24px;
}

.contact-info-card {
    min-width: 0;
}

.contact-info-text {
    min-width: 0;
}

.contact-info-link {
    display: block;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* ==================== SIGN UP / REFERRAL FORM ==================== */
.signup-form fieldset {
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(26, 54, 93, 0.08);
}

.signup-form fieldset:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
}

.signup-form legend {
    margin-bottom: 0.25rem;
}

.signup-form .grid {
    row-gap: 1rem;
    column-gap: 1rem;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
    min-height: 44px;
}

.signup-form textarea {
    resize: vertical;
}

.signup-form-footer p {
    max-width: 520px;
}

.signup-form-intro {
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.signup-form-note {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.signup-form-footer button {
    width: auto;
    padding: 0.65rem 1.75rem;
}

.signup-form-errors {
    display: none;
    background: rgba(231, 61, 181, 0.08);
    border: 1px solid rgba(231, 61, 181, 0.25);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    color: #1A365D;
}

.signup-form-errors.is-visible {
    display: block;
}

.signup-form-errors ul {
    margin-top: 0.5rem;
    padding-left: 1.1rem;
    list-style: disc;
}

.signup-form .has-error input,
.signup-form .has-error select,
.signup-form .has-error textarea {
    border-color: #E73DB5;
    box-shadow: 0 0 0 2px rgba(231, 61, 181, 0.18);
}

.signup-form .field-error {
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: #E73DB5;
}

/* ==================== ACTIVE NAV LINK ==================== */
header nav a.is-active {
    color: #FF4D8B;
    font-weight: 700;
}

header nav a.is-active::after {
    content: '';
    display: block;
    height: 2px;
    background: #FF4D8B;
    border-radius: 999px;
    margin-top: 4px;
}

#mobile-menu-panel a.is-active {
    background: rgba(255, 77, 139, 0.15);
    color: #1A365D;
}

.signup-form :is(input, select, textarea):invalid:focus {
    border-color: #E73DB5;
    box-shadow: 0 0 0 2px rgba(231, 61, 181, 0.18);
}

@media (max-width: 640px) {
    .signup-form-footer {
        text-align: left;
    }

    .signup-form-footer button {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .hero-screenshot {
        min-height: 70vh;
    }

    .hero-glass {
        padding: 2rem;
    }

    .hero-screenshot .max-w-7xl {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    .hero-screenshot .hero-text {
        margin-top: 0.5rem;
    }

    .hero-screenshot .hero-text p {
        margin-top: 0.75rem;
    }

    .hero-screenshot .flex.flex-wrap.gap-4.mt-8 {
        margin-top: 1.25rem;
    }

    .section-anchor {
        scroll-margin-top: 96px;
    }

    .section-anchor:not(.hero-screenshot) {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-screenshot.section-anchor {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
