/* 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;
}

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: 5; }
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 {
    color: var(--primary-teal);
    text-shadow: 0 0 20px 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;
}

/* 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;
    color: var(--primary-teal);
    line-height: 1;
    font-family: var(--font-body);
    text-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 {
    color: var(--primary-teal);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.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;
}

.faq-item.active .faq-icon {
    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: 3rem 0;
    border-bottom: 1px solid rgba(0, 242, 254, 0.1);
    position: relative;
}

.back-home {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    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: 4rem auto;
    background: var(--bg-card);
    padding: 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-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;
}

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

.modal-content {
    background: var(--bg-card);
    padding: 3.5rem 2.5rem 3rem;
    border-radius: 28px;
    width: 100%;
    max-width: 480px; /* 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: 2.5rem;
}

.optin-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem); /* Slightly smaller */
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    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: 1.25rem;
    position: relative;
}

.optin-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 22px;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    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);
}

.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;
}

.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;
    }
}

/* 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: var(--primary-teal);
    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);
}

/* 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-content {
        padding: 2.5rem 1.5rem 2rem;
        border-radius: 20px;
        width: 100%;
        max-width: 400px;
    }

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

    .optin-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

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

    .optin-form input {
        padding: 15px 18px;
        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;
    }
}
