/* Reset and Base Styles */
:root {
    --primary-teal: #00F2FE; /* Vibrant hypnotic teal */
    --secondary-teal: #0D9488; /* Darker teal for gradients */
    --text-primary: #F8F5F2; /* Cream/off-white for contrast */
    --text-secondary: #94A3B8; /* Muted slate for body */
    --bg-dark: #000000; /* Pure black background */
    --bg-card: #0A0F1E; /* Very deep navy for cards */
    --accent-glow: rgba(0, 242, 254, 0.5);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1100px;
}

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

/* Smooth anchor scrolling (so #offer animates instead of teleporting) */
html {
    scroll-behavior: smooth;
}

/* Offset for fixed top bar so the section isn't hidden under it */
.starter-pack-page #offer {
    scroll-margin-top: 90px;
}

body {
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--text-secondary);
    background-color: #000000;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(0, 242, 254, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 90% 90%, rgba(0, 242, 254, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(0, 242, 254, 0.08) 0%, rgba(0, 0, 0, 1) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 45px; /* Offset for top bar */
}

@media (max-width: 768px) {
    body { padding-top: 35px; } /* Slightly smaller for mobile */
}

.cf-content-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.sct-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px; /* Increased side padding */
}

a {
    text-decoration: none;
    color: var(--primary-teal);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 4rem; }
.mb-4 { margin-bottom: 2.5rem; }
.shadow-lg { box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5); }
.rounded { border-radius: 12px; }
.hide { display: none !important; }

#valid-msg {
    color: #10B981; /* Emerald green */
    font-size: 0.85rem;
    margin-top: 8px;
    font-weight: 600;
}

#error-msg {
    color: #EF4444; /* Red */
    font-size: 0.85rem;
    margin-top: 8px;
    font-weight: 600;
}

.iti { width: 100%; }
.iti__flag-container { z-index: 100; }
input.error { border-color: #EF4444 !important; }

/* Buttons */
.btn-primary {
    background-color: var(--primary-teal);
    color: var(--bg-dark);
    padding: 20px 40px; /* Larger padding */
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 35px var(--accent-glow);
    background-color: #fff;
    color: var(--bg-dark);
}

.btn-large {
    font-size: 1.25rem;
    padding: 24px 60px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-pulse {
    animation: pulse-teal 2s infinite;
}

@keyframes pulse-teal {
    0% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(0, 242, 254, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); }
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    background: var(--primary-teal);
    color: var(--bg-dark);
    text-align: center;
    padding: 12px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.7rem;
        padding: 10px 15px;
        letter-spacing: 1px;
    }
}

.cta-open-modal {
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 50px 20px 60px; /* Sweet spot padding */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    transform: translateY(-20px); /* The "sweet spot" shift */
}

.hero-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-logo img {
    max-width: 160px; /* Slightly smaller logo */
    filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.3));
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 4rem); /* Slightly smaller to fit */
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-primary);
    max-width: 1000px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.hero-subheadline {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 800px;
    margin-bottom: 1rem;
}

.hero-secondary-subheadline {
    font-size: 1rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.highlight-text {
    background: linear-gradient(135deg, #00F2FE 0%, #0D9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none; /* gradient text can't use text-shadow */
    filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.35));
}

/* Reusable gradient text utility */
.teal-gradient-text {
    background: linear-gradient(135deg, #00F2FE 0%, #0D9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.3));
}

.hero-arrow {
    margin-top: 2rem;
    color: var(--primary-teal);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Sections */
section {
    padding: 6rem 0; /* Slightly reduced from 7rem for tighter flow */
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sub-heading {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 5rem;
    line-height: 1.8;
}

.section-label {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-teal);
    margin-bottom: 0.75rem;
}

/* Countdown */
.countdown-wrapper {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem; /* Reduced from 4rem */
    border-radius: 20px;
    backdrop-filter: blur(20px);
    margin-bottom: 4rem; /* Reduced from 6rem */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.time-block {
    text-align: center;
}

.time-block .time {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00F2FE 0%, #0D9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: var(--font-body);
    filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.3));
}

.time-block .label {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-top: 0.5rem;
    display: block;
}

.event-details h3 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.event-details p {
    font-size: 1.25rem;
    color: var(--primary-teal);
}

/* Discover Box */
.discover-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 4rem; /* Reduced from 5rem */
    max-width: 950px;
    margin: 0 auto;
}

.discovery-list {
    display: grid;
    gap: 2.5rem;
}

.discovery-list li {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.discovery-list i {
    color: var(--primary-teal);
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 5px;
    filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.3));
}

.discovery-list strong {
    color: var(--text-primary);
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.reason-card {
    background: var(--bg-card);
    padding: 3rem; /* Reduced from 3.5rem */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.reason-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 30px 60px -15px rgba(0, 242, 254, 0.1);
}

.reason-card h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* About Host */
.about-section {
    background: rgba(15, 23, 42, 0.3);
}

.about-section .sct-container {
    max-width: 1200px;
}

.about-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 4rem;
    align-items: center;
}

.host-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
}

.host-meta {
    margin-top: 2rem;
    text-align: center;
}

.host-meta h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
}

.host-meta span {
    background: linear-gradient(135deg, #00F2FE 0%, #0D9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.3));
}

.host-story h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem; /* Balanced from 2.5rem */
    color: var(--text-primary);
    margin-bottom: 1.5rem; /* More compact spacing */
    line-height: 1.3;
}

.host-story p {
    margin-bottom: 1.25rem; /* Reduced from 1.5rem */
    font-size: 1.1rem; /* Slightly more compact */
    line-height: 1.6;
}

.host-story .mt-4 {
    text-align: left;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 24px;
    border-left: 4px solid var(--primary-teal);
    font-style: italic;
    font-size: 1.2rem;
}

.testimonial-card cite {
    display: block;
    margin-top: 2rem;
    font-style: normal;
    font-weight: 700;
    color: var(--text-primary);
    text-align: right;
    font-family: var(--font-heading);
}

/* FAQ */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    color: var(--primary-teal);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
    font-size: 0.95rem;
}

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

/* FAQ question text + inline chevron (works without icon font) */
.faq-question-text {
    flex: 1;
    padding-right: 1rem;
    line-height: 1.35;
}

.faq-chevron-wrap {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    background: rgba(0, 242, 254, 0.12);
    border: 1px solid rgba(0, 242, 254, 0.25);
    color: var(--primary-teal);
    transition: background 0.35s ease, border-color 0.35s ease;
}

.faq-chevron-svg {
    width: 1.15rem;
    height: 1.15rem;
    display: block;
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-chevron-wrap {
    background: rgba(0, 242, 254, 0.2);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

/* Footer */
/* Legal Pages */
.legal-header {
    padding: 1rem 0; /* Reduced further */
    border-bottom: 1px solid rgba(0, 242, 254, 0.1);
    position: relative;
    background: rgba(10, 15, 30, 0.4); /* Slight tint */
    backdrop-filter: blur(10px);
}

.legal-header .hero-logo {
    margin-bottom: 0; /* Remove hero margin */
}

.back-home {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem; /* Slightly smaller */
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.back-home:hover {
    color: var(--primary-teal);
    transform: translateY(-50%) translateX(-5px);
}

.legal-container {
    max-width: 800px;
    margin: 2rem auto 4rem; /* Reduced top margin from 4rem */
    background: var(--bg-card);
    padding: 3rem; /* Reduced from 4rem */
    border-radius: 24px;
    border: 1px solid rgba(0, 242, 254, 0.1);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.legal-container h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-container h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--primary-teal);
    padding-left: 15px;
}

.legal-container h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-teal);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.legal-container li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-container hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 2.5rem 1.5rem;
        margin: 2rem 15px;
    }
    
    .legal-container h1 {
        font-size: 2.2rem;
    }
}

.footer {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-links {
    margin: 2rem 0;
}

.footer-links a {
    color: var(--primary-teal);
    transition: all 0.3s;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Thank You Page Specifics */
.thankyou-header {
    min-height: auto !important;
    padding: 15px 20px 10px !important; /* Extremely tight to bring it up */
}

.thankyou-header .hero-content {
    transform: translateY(-10px); /* Subtle shift up */
}

.thankyou-header .hero-title {
    margin-bottom: 0.8rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.thankyou-header .success-badge {
    margin-bottom: 0.8rem;
    padding: 6px 16px;
}

.thankyou-header .hero-logo {
    margin-bottom: 1rem;
}

.thankyou-section {
    padding: 120px 0 60px;
}

.success-badge {
    background: var(--primary-teal);
    color: var(--bg-dark);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(0,242,254,0.2);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0,242,254,0.1);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--primary-teal);
    opacity: 0.8;
}

.faq-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-breakout-section .sct-container {
    max-width: 1200px;
}

.faq-breakout-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 100%;
}

.faq-breakout-grid .faq-video-card {
    min-width: 0;
    overflow: hidden;
}

.faq-breakout-grid .faq-video-info h4 {
    font-size: 0.9rem;
    line-height: 1.35;
    margin: 0;
}

.faq-breakout-grid .faq-video-thumb {
    aspect-ratio: 16/9;
}

@media (max-width: 992px) {
    .faq-breakout-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .faq-breakout-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.faq-video-card {
    background: var(--bg-dark);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.faq-video-card:hover {
    transform: scale(1.02);
}

.faq-video-thumb {
    aspect-ratio: 16/9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.faq-video-thumb iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-teal);
    font-size: 3.5rem; /* Larger, prominent arrow */
    transition: all 0.3s ease;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
    pointer-events: none;
}

.faq-video-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.15);
    /* No color change to white as requested */
}

.faq-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 242, 254, 0.3);
}

.faq-video-thumb i {
    font-size: 3rem;
    color: var(--primary-teal);
    opacity: 0.8;
}

.faq-video-info {
    padding: 15px;
}

.faq-video-info h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.results-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    grid-auto-flow: dense;
}

.gallery-item {
    background: var(--bg-dark);
    border-radius: 8px;
    min-height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item.tall {
    grid-row: span 2;
    min-height: 300px;
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
}

.modal-overlay.active {
    display: flex !important;
}

.modal-content {
    background: var(--bg-card);
    padding: 2.5rem 2rem 2rem;
    border-radius: 24px;
    width: 100%;
    max-width: 450px; /* Reduced for better viewport fit */
    position: relative;
    border: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 242, 254, 0.1);
    margin: auto;
}

.modal-content.calendar-modal-content {
    max-width: 600px;
    padding: 4rem 2rem 2rem;
    min-height: 400px;
    background: #fff; /* Force white background for AddEvent */
    color: #000;
}

.addevent-event-embed {
    margin: 0 auto;
    width: 100% !important;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0.5;
}

.modal-content.calendar-modal-content .modal-close {
    color: #000;
}

.modal-content.calendar-modal-content .modal-close:hover {
    color: var(--primary-teal);
    background: rgba(0, 0, 0, 0.05);
}

.optin-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.optin-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2rem); /* Slightly smaller */
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.optin-header h3 {
    font-size: 0.9rem;
    color: var(--primary-teal);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.optin-form .form-group {
    margin-bottom: 0.8rem;
    position: relative;
}

.optin-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.optin-form input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.optin-form input:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 1rem !important;
    text-align: left;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    margin-top: 2px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    flex-shrink: 0;
    -webkit-appearance: checkbox; /* Ensure default checkbox appearance if custom styling is tricky cross-browser */
}

/* Disclaimer Styles */
.optin-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
    opacity: 0.7;
}

.optin-disclaimer p {
    margin-bottom: 0.5rem;
}

.optin-disclaimer a {
    color: var(--text-secondary);
    text-decoration: underline;
    transition: color 0.3s;
}

.optin-disclaimer a:hover {
    color: var(--primary-teal);
    text-decoration: none;
}

.iti {
    width: 100%;
}

.inline-error {
    color: #EF4444;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
    font-weight: 500;
}

#valid-msg, #error-msg {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    font-size: 0.9rem;
    font-weight: 600;
    pointer-events: none; /* Make sure they don't block input clicks */
}

#valid-msg {
    color: #10B981;
}

#error-msg {
    color: #EF4444;
}

.iti__country-list {
    background: #0F172A !important; /* Solid dark background */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #F8F5F2 !important; /* Bright primary text */
    border-radius: 12px !important;
    margin-top: 10px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
    padding: 10px 0 !important;
    z-index: 100000 !important;
}

.iti__country {
    padding: 12px 15px !important;
    transition: background 0.2s ease;
}

.iti__country:hover, .iti__country.iti__highlight {
    background: rgba(0, 242, 254, 0.1) !important;
}

.iti__country-name {
    color: #F8F5F2 !important;
    font-size: 0.95rem !important;
}

.iti__dial-code {
    color: var(--primary-teal) !important;
    font-weight: 600 !important;
}

.iti__divider {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.form-success-container {
    text-align: center;
    padding: 3rem 0;
}

.form-success-container i {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.3));
}

.form-success-container h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .thankyou-section {
        padding: 100px 0 40px;
    }
    
    .video-placeholder i {
        font-size: 3.5rem;
    }
    
    .faq-video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .modal-content.calendar-modal-content {
        padding: 2.5rem 1.5rem 1.5rem;
        min-height: 350px;
        margin: 15px; /* Ensure margin on small screens */
    }
    
    .survey-modal-content {
        height: 80vh; /* Use viewport height on mobile */
        max-height: 600px;
        padding: 2rem 1rem 1rem;
    }
}

/* Step Cards */
.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.step-card {
    background: var(--bg-card);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.4s ease;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 242, 254, 0.1);
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00F2FE 0%, #0D9488 100%);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.step-card h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.survey-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-weight: 700;
    text-decoration: underline;
    color: var(--primary-teal);
}

/* Survey Modal Specifics */
.survey-modal-content {
    height: 600px;
    max-height: 90vh;
    padding: 2.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.survey-modal-content [data-tf-live] {
    flex: 1;
    width: 100%;
    height: 100%;
}

/* Calendar Modal Specifics - Ensure visibility */
.calendar-modal-content {
    width: 100%;
    max-width: 600px;
    background: #fff;
    color: #000;
    min-height: 400px;
    position: relative;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    margin: auto; 
}

.calendar-modal-content .modal-close {
    color: #000;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    z-index: 10;
}

.calendar-modal-content .modal-close:hover {
    color: #cc0000;
}

/* Ensure AddEvent embed takes full width */
.addevent-event-embed {
    width: 100% !important;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .host-image-wrapper { max-width: 400px; margin: 0 auto; }
    .host-story .mt-4 { text-align: center; }
    .reasons-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .next-steps-grid { grid-template-columns: 1fr; }
    .about-grid { gap: 3rem; }
    
    .host-meta h3 {
        font-size: 1.5rem;
    }
    
    .host-story h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    :root {
        --container-width: 100%;
    }
    
    .sct-container { padding: 0 24px; }
    
    section { padding: 3.5rem 0; }
    
    .hero-section {
        padding: 50px 20px 40px;
    }
    
    .thankyou-header {
        padding: 10px 20px 10px !important;
    }

    .thankyou-header .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    
    .hero-content {
        transform: none;
    }

    .hero-logo img {
        max-width: 130px;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-large {
        padding: 20px 32px;
        font-size: 1.1rem;
        width: 100%;
    }

    .countdown-wrapper {
        padding: 2rem 1.5rem;
    }

    .countdown-timer {
        gap: 1.5rem;
    }

    .time-block .time {
        font-size: 2rem;
    }

    .time-block .label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .discover-box {
        padding: 2.5rem 1.5rem;
    }

    .discovery-list {
        gap: 2rem;
    }

    .discovery-list li {
        gap: 1.2rem;
    }

    .discovery-list strong {
        font-size: 1.15rem;
    }

    .reason-card {
        padding: 2.5rem 1.5rem;
    }

    .host-story h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-card {
        padding: 2.5rem 1.5rem;
        font-size: 1.1rem;
    }

    .modal-overlay {
        padding: 10px;
    }

    /* Modal adjustments for small screens (Tablets/Large Phones) */
    .modal-content {
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 20px;
        width: 100%;
        max-width: 420px;
    }

    .optin-header {
        margin-bottom: 1.2rem;
    }

    .optin-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .optin-form .form-group {
        margin-bottom: 0.7rem;
    }

    .optin-form input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        font-size: 1.2rem;
    }

    .step-card {
        padding: 2.5rem 1.5rem;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .optin-header h2 {
        font-size: 1.4rem;
    }
    
    .btn-large {
        padding: 18px 24px;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .time-block .time {
        font-size: 1.75rem;
    }
    
    .btn-primary {
        padding: 18px 24px;
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    /* Modal adjustments for small screens */
    .modal-content {
        padding: 1.5rem 1.25rem 1.25rem;
        border-radius: 16px;
        max-width: 100%;
        margin: 10px;
    }

    .optin-header {
        margin-bottom: 1rem;
    }

    .optin-header h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .optin-header h3 {
        font-size: 0.8rem;
    }

    .modal-close {
        top: 8px;
        right: 8px;
        font-size: 1.2rem;
        background: rgba(0, 0, 0, 0.2);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        opacity: 0.8;
    }

    /* Form adjustments for small screens */
    .optin-form input {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .optin-form .form-group {
        margin-bottom: 0.6rem;
    }

    .checkbox-container {
        gap: 8px;
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }

    .checkbox-container input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
    }

    .optin-disclaimer {
        font-size: 0.7rem;
        margin-top: 1.2rem;
    }
}

/* ========== Starter pack page (Hugeicons + card hovers) ========== */
body.starter-pack-page {
    padding-top: 45px;
}

.starter-pack-hero {
    min-height: auto;
    padding: 3rem 20px 4rem;
}

.starter-pack-hero .hero-content {
    transform: none;
}

/* Outlined teal pill — hero badge is source of truth; offer pill matches */
.starter-pack-badge,
.sp-offer-save-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-teal);
    border: 1px solid rgba(0, 242, 254, 0.35);
    background: rgba(0, 242, 254, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
}

.starter-pack-badge {
    margin-bottom: 1.25rem;
}

.sp-offer-save-pill {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.sp-skip-link {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.25s ease;
}

.sp-skip-link:hover {
    color: var(--primary-teal);
}

/* Shared card hover */
.sp-product-card,
.sp-module-card,
.sp-why-card,
.sp-proof-card,
.sp-offer-frame {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.35s ease;
    will-change: transform;
}

.sp-product-card:hover,
.sp-module-card:hover,
.sp-why-card:hover,
.sp-proof-card:hover,
.sp-offer-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px -16px rgba(0, 242, 254, 0.18), 0 0 0 1px rgba(0, 242, 254, 0.12);
    border-color: rgba(0, 242, 254, 0.35);
}

.sp-product-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 242, 254, 0.12);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.sp-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-teal), var(--secondary-teal));
}

.sp-product-tagline {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.sp-modules {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sp-module-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: rgba(10, 15, 30, 0.55);
    border: 1px solid rgba(0, 242, 254, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
}

.sp-module-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 242, 254, 0.1);
    border-radius: 12px;
    color: var(--primary-teal);
}

.sp-module-icon svg {
    width: 28px;
    height: 28px;
}

.sp-module-body h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.sp-module-body p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.sp-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.sp-why-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 242, 254, 0.1);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
}

.sp-why-card .sp-why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-teal);
    background: rgba(0, 242, 254, 0.08);
    border-radius: 12px;
}

.sp-why-card .sp-why-icon svg {
    width: 26px;
    height: 26px;
}

.sp-why-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.sp-why-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.sp-proof-strip {
    background: rgba(0, 242, 254, 0.03);
    border-top: 1px solid rgba(0, 242, 254, 0.08);
    border-bottom: 1px solid rgba(0, 242, 254, 0.08);
    padding: 4rem 0;
}

.sp-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
    text-align: center;
}

.sp-proof-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 242, 254, 0.1);
    border-radius: 16px;
    padding: 1.75rem 1rem;
}

.sp-proof-card .sp-proof-num {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.35rem;
}

.sp-proof-card .sp-proof-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--text-secondary);
}

/* Offer card — premium frame + inner surface */
.sp-offer-section {
    position: relative;
    padding: 4rem 0 5rem;
}

/* Soft ambient light behind the card only — no harsh horizontal band */
.sp-offer-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(1200px, 100vw);
    height: min(70vh, 520px);
    background: radial-gradient(
        ellipse 75% 50% at 50% 42%,
        rgba(0, 242, 254, 0.035) 0%,
        rgba(0, 242, 254, 0.012) 45%,
        transparent 68%
    );
    pointer-events: none;
    z-index: 0;
}

.sp-offer-section .sct-container {
    position: relative;
    z-index: 1;
}

.sp-offer-frame {
    max-width: min(640px, 100%);
    margin: 0 auto;
    padding: 2px;
    border-radius: 28px;
    background: linear-gradient(
        145deg,
        rgba(0, 242, 254, 0.55) 0%,
        rgba(13, 148, 136, 0.35) 45%,
        rgba(0, 242, 254, 0.2) 100%
    );
    box-shadow: 0 0 0 1px rgba(0, 242, 254, 0.15), 0 32px 64px -24px rgba(0, 0, 0, 0.75);
}

.sp-offer-surface {
    position: relative;
    text-align: center;
    border-radius: 26px;
    padding: 2.5rem 1.5rem 2.25rem;
    background: linear-gradient(168deg, rgba(15, 22, 40, 0.98) 0%, rgba(6, 10, 18, 0.99) 55%, #04060d 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.sp-offer-surface::before {
    content: '';
    position: absolute;
    top: -35%;
    right: -15%;
    width: 50%;
    height: 75%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.045) 0%, transparent 68%);
    pointer-events: none;
}

.sp-offer-surface::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.25), transparent);
}

.sp-offer-surface .section-label {
    position: relative;
    z-index: 1;
    margin-bottom: 0.65rem;
}

.sp-offer-surface .section-title {
    position: relative;
    z-index: 1;
    margin-bottom: 1.25rem;
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    line-height: 1.2;
}

/* Mobile: stacked; desktop: two columns */
.sp-offer-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.sp-offer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sp-offer-price-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.sp-offer-actions {
    margin-top: 0.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.sp-offer-actions .sp-guarantee {
    margin-top: 1.1rem;
}

.sp-offer-actions .sp-skip-link {
    margin-top: 1.35rem;
}

.sp-offer-actions .sp-offer-lifetime {
    margin-top: 0.65rem;
}

.sp-offer-lifetime {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    text-align: center;
    line-height: 1.45;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
}

.sp-offer-lifetime svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--primary-teal);
    opacity: 0.95;
}

.sp-offer-price-block {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: 100%;
    max-width: 22rem;
    padding: 1.35rem 1.25rem 1.5rem;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 242, 254, 0.12);
    backdrop-filter: blur(8px);
}

.sp-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}

.sp-price-strike {
    font-size: 1.35rem;
    font-weight: 700;
    color: #64748b;
    text-decoration: line-through;
    opacity: 0.85;
}

.sp-price-main {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 8vw, 3.75rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #e0fffe 0%, var(--primary-teal) 40%, var(--secondary-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 28px rgba(0, 242, 254, 0.35));
}

.sp-offer-price-note {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 28rem;
    margin: 0 auto;
}

.sp-offer-includes {
    text-align: left;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    position: relative;
    z-index: 1;
}

.sp-offer-includes--quad {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0.95rem;
    align-content: start;
}

.sp-offer-includes li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.8rem 0.85rem;
    min-height: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.sp-offer-includes--quad li:hover {
    border-color: rgba(0, 242, 254, 0.22);
    background: rgba(0, 242, 254, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -12px rgba(0, 242, 254, 0.25);
}

.sp-offer-includes li svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    padding: 5px;
    margin-top: 1px;
    border-radius: 50%;
    color: var(--bg-dark);
    background: linear-gradient(145deg, var(--primary-teal), var(--secondary-teal));
    box-shadow: 0 0 16px rgba(0, 242, 254, 0.25);
}

.sp-offer-cta {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(100%, 26rem);
    margin: 0 auto;
}

/*
 * Starter pack CTAs — Pathway-style treatment (reference: pathway landing primary buttons).
 * Rounded rect ~16px, vertical teal gradient, inset top highlight, soft drop shadow.
 */
.starter-pack-page .btn-pulse.btn-primary {
    animation: none;
}

.starter-pack-page a.btn-primary.btn-large {
    border-radius: 16px;
    padding: 1.05rem 2.25rem;
    min-width: min(100%, 22rem);
    font-size: clamp(0.82rem, 2vw, 0.95rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, #8ff7ff 0%, #40e4dd 38%, #14b8a6 72%, #0d9488 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 12px 32px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(0, 242, 254, 0.06),
        0 0 24px rgba(0, 242, 254, 0.1);
    overflow: visible;
    transform: translateZ(0);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), filter 0.38s ease, box-shadow 0.38s ease;
}

.starter-pack-page a.btn-primary.btn-large:hover {
    transform: translateY(-3px) scale(1.015);
    filter: brightness(1.04);
    background: linear-gradient(180deg, #a8fbff 0%, #5eead4 40%, #2dd4bf 75%, #0f766e 100%);
    color: var(--bg-dark);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        0 18px 44px rgba(0, 0, 0, 0.52),
        0 0 0 1px rgba(0, 242, 254, 0.22),
        0 0 36px rgba(0, 242, 254, 0.28),
        0 0 72px rgba(0, 242, 254, 0.12);
}

.starter-pack-page a.btn-primary.btn-large:active {
    transform: translateY(-1px) scale(1.008);
    transition-duration: 0.12s;
}

.starter-pack-page a.btn-primary.btn-large:focus-visible {
    outline: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 12px 32px rgba(0, 0, 0, 0.48),
        0 0 0 2px rgba(0, 242, 254, 0.45),
        0 0 32px rgba(0, 242, 254, 0.2);
}

/* Offer card CTA — same language, two lines (label + price) */
.starter-pack-page .sp-offer-actions a.btn-primary.sp-offer-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-size: 0;
    line-height: 1.15;
    letter-spacing: normal;
    color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, #8ff7ff 0%, #40e4dd 38%, #14b8a6 72%, #0d9488 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 12px 32px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(0, 242, 254, 0.06),
        0 0 24px rgba(0, 242, 254, 0.1);
    overflow: visible;
    transform: translateZ(0);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), filter 0.38s ease, box-shadow 0.38s ease;
    -webkit-font-smoothing: antialiased;
}

.starter-pack-page .sp-offer-actions a.btn-primary.sp-offer-btn:hover {
    transform: translateY(-3px) scale(1.015);
    filter: brightness(1.04);
    color: var(--bg-dark);
    background: linear-gradient(180deg, #a8fbff 0%, #5eead4 40%, #2dd4bf 75%, #0f766e 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        0 18px 44px rgba(0, 0, 0, 0.52),
        0 0 0 1px rgba(0, 242, 254, 0.22),
        0 0 36px rgba(0, 242, 254, 0.28),
        0 0 72px rgba(0, 242, 254, 0.12);
}

.starter-pack-page .sp-offer-actions a.btn-primary.sp-offer-btn:active {
    transform: translateY(-1px) scale(1.008);
    transition-duration: 0.12s;
}

.starter-pack-page .sp-offer-actions a.btn-primary.sp-offer-btn:focus-visible {
    outline: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 12px 32px rgba(0, 0, 0, 0.48),
        0 0 0 2px rgba(0, 242, 254, 0.45),
        0 0 32px rgba(0, 242, 254, 0.2);
}

.sp-offer-btn-label {
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
    max-width: 24ch;
}

.sp-offer-btn-price {
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 480px) {
    .starter-pack-page a.btn-primary.btn-large {
        padding: 0.95rem 1.5rem;
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .starter-pack-page .sp-offer-actions a.btn-primary.sp-offer-btn {
        padding: 0.9rem 1.5rem;
    }

    .sp-offer-btn-label {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }

    .sp-offer-btn-price {
        font-size: 1.2rem;
    }
}

.sp-guarantee {
    position: relative;
    z-index: 1;
    margin-top: 1.35rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.sp-guarantee svg {
    width: 14px;
    height: 14px;
    color: var(--primary-teal);
    opacity: 0.9;
}

@media (min-width: 900px) {
    .sp-offer-frame {
        max-width: min(1100px, calc(100% - 1.5rem));
    }

    .sp-offer-surface {
        padding: 2.75rem 2.5rem 2.35rem;
        text-align: left;
    }

    .sp-offer-grid {
        display: grid;
        grid-template-columns: minmax(280px, 1.12fr) minmax(240px, 0.88fr);
        grid-template-rows: auto auto;
        gap: 1.75rem 2.5rem;
        align-items: start;
    }

    .sp-offer-header {
        grid-column: 1 / -1;
        align-items: flex-start;
        text-align: left;
    }

    .sp-offer-header .section-label {
        text-align: left;
    }

    .sp-offer-header .section-title {
        font-size: clamp(1.45rem, 2.2vw, 1.95rem);
        margin-bottom: 0;
    }

    .sp-offer-includes--quad {
        grid-column: 1;
        grid-row: 2;
        gap: 1rem 1.15rem;
    }

    .sp-offer-includes--quad li {
        font-size: 0.9rem;
        padding: 0.95rem 1rem;
    }

    .sp-offer-price-aside {
        grid-column: 2;
        grid-row: 2;
        align-self: stretch;
        align-items: stretch;
        justify-content: center;
    }

    .sp-offer-price-aside .sp-offer-price-block {
        margin: 0;
        max-width: none;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .sp-offer-price-aside .sp-price-row {
        justify-content: center;
    }

    .sp-offer-price-aside .sp-offer-price-note {
        text-align: center;
    }

    .sp-offer-actions {
        margin-top: 0.5rem;
        padding-top: 1.75rem;
        flex-direction: column;
        align-items: center;
    }

    .sp-offer-actions .sp-offer-cta {
        width: 100%;
        max-width: min(440px, 100%);
    }

    .sp-offer-actions .sp-guarantee {
        margin-top: 1.1rem;
        justify-content: center;
    }

    .sp-offer-actions .sp-skip-link {
        margin-top: 1.25rem;
        text-align: center;
    }
}

@media (min-width: 1100px) {
    .sp-offer-grid {
        grid-template-columns: minmax(320px, 1.15fr) minmax(260px, 0.85fr);
        gap: 2rem 3rem;
    }
}

@media (max-width: 420px) {
    .sp-offer-includes--quad {
        gap: 0.65rem 0.72rem;
    }

    .sp-offer-includes--quad li {
        font-size: 0.8rem;
        padding: 0.7rem 0.65rem;
    }
}

.starter-pack-section {
    padding: 4rem 0;
}

.starter-pack-section.sp-offer-section {
    padding: 4rem 0 5rem;
}

.sp-faq-section .faq-grid {
    max-width: 800px;
    margin: 2rem auto 0;
}

.starter-pack-page .faq-item {
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.starter-pack-page .faq-item:hover {
    border-color: rgba(0, 242, 254, 0.18);
    box-shadow: 0 16px 40px -16px rgba(0, 242, 254, 0.12);
    transform: translateY(-3px);
}

@media (max-width: 640px) {
    .sp-module-card {
        flex-direction: column;
    }
}

/* ========== FanBasis embedded checkout modal (starter-pack) ========== */
.fanbasis-checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.fanbasis-checkout-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fanbasis-checkout-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 12, 0.82);
    backdrop-filter: blur(6px);
}

.fanbasis-checkout-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(560px, 96vw);
    height: min(92vh, 900px);
    max-height: min(92vh, 900px);
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, rgba(15, 22, 40, 0.98) 0%, rgba(6, 10, 18, 0.99) 100%);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 242, 254, 0.08);
    overflow: hidden;
}

.fanbasis-checkout-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.fanbasis-checkout-modal__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.04em;
}

.fanbasis-checkout-modal__close {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.fanbasis-checkout-modal__close:hover {
    background: rgba(0, 242, 254, 0.12);
    color: var(--primary-teal);
}

.fanbasis-checkout-modal__status {
    padding: 2rem 1.25rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.fanbasis-checkout-modal__status[hidden] {
    display: none !important;
}

.fanbasis-checkout-modal__embed {
    flex: 1 1 0%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0 0.5rem 1rem;
    align-self: stretch;
}

.fanbasis-checkout-modal__embed:not([hidden]) {
    padding-top: 0.35rem;
}

/* FanBasis injects an iframe — stretch it to fill the modal body */
.fanbasis-checkout-modal__embed > * {
    flex: 1 1 auto;
    min-height: 0;
    width: 100% !important;
    max-width: 100% !important;
}

.fanbasis-checkout-modal__embed iframe {
    flex: 1 1 auto;
    width: 100% !important;
    min-height: min(78vh, 760px) !important;
    height: 100% !important;
    max-height: none !important;
    border: none;
    border-radius: 12px;
}

.fanbasis-checkout-modal__fallback {
    padding: 1.5rem 1.25rem 1.75rem;
    text-align: center;
}

.fanbasis-checkout-modal__fallback-text {
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.fanbasis-checkout-modal__fallback-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
}

body.fanbasis-modal-open {
    overflow: hidden;
}

@media (max-width: 540px) {
    .fanbasis-checkout-modal__panel {
        height: min(94vh, 900px);
        max-height: min(94vh, 900px);
        border-radius: 16px;
    }

    .fanbasis-checkout-modal__embed iframe {
        min-height: min(70vh, 680px) !important;
    }
}
