/* =========================================
   CSS RESET & VARIABLES
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Scalelytic Color Theme */
    --clr-bg: #FDFDFD;
    /* Main canvas */
    --clr-bg-secondary: #CDD1D0;
    /* Secondary sections/cards */

    --clr-text-main: #05141B;
    /* Darkest slate/black */
    --clr-text-muted: #475867;
    /* Medium slate gray */

    --clr-primary: #203242;
    /* Main brand blue */
    --clr-primary-dark: #111E2C;
    /* Darker brand blue for hover */

    --clr-accent: #111E2C;
    /* Accent emphasis */
    --clr-accent-hover: #05141B;

    --clr-highlight-bg: #CDD1D0;
    /* Underlines/highlights */

    --clr-white: #ffffff;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-serif-accent: 'Fraunces', serif;
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 5rem;
    --space-xl: 10rem;
    /* Huge vertical spacing per live site */

    /* Styling */
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 100px;

    /* Specific soft, large shadow from live site */
    --shadow-main-btn: 0px 30px 60px -15px rgba(224, 216, 208, 0.8);
    --shadow-card: 0px 20px 40px -10px rgba(26, 26, 26, 0.05);

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--clr-text-main);
    background-color: var(--clr-bg);
    line-height: 1.5;
    font-size: 19px;
    /* Slightly larger base font */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    color: var(--clr-text-main);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.serif-accent {
    font-family: var(--font-serif-accent);
    font-weight: 600;
    font-style: italic;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-wrap: balance;
}

.hero-headline {
    color: var(--clr-primary);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-wrap: balance;
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--clr-text-main);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--clr-text-main);
    opacity: 0.85;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.4;
}

.lead {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.5;
}

.text-muted {
    opacity: 0.7;
}

.highlight {
    color: var(--clr-accent);
    position: relative;
    display: inline-block;
}

/* Hand-drawn underline effect */
.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: 4px;
    left: 0;
    background-color: var(--clr-highlight-bg);
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
}

.highlight-bg {
    background-color: var(--clr-highlight-bg);
    padding: 0 0.5rem;
    border-radius: 4px;
}

.highlight-text {
    color: #F97316;
    /* Vibrant orange to pop against the dark navy theme */
}

strong {
    font-weight: 700;
}

.center-text {
    text-align: center;
}

/* =========================================
   LAYOUT UTILS
   ========================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.slim-container {
    max-width: 800px;
    margin: 0 auto;
}

.section {
    padding: 3.5rem 0;
}

.bg-light {
    background-color: var(--clr-bg);
}

.bg-beige {
    background-color: var(--clr-bg-secondary);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.align-center {
    align-items: center;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* =========================================
   COMPONENTS
   ========================================= */
.badge-wrapper {
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background-color: var(--clr-bg-secondary);
    color: var(--clr-text-main);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(26, 26, 26, 0.1);
}

/* BUTTONS */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: var(--transition-fast);
    position: relative;
    cursor: pointer;
    border: none;
    letter-spacing: 0.02em;
}

.cta-button.primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: var(--shadow-main-btn);
}

.cta-button.primary:hover {
    background-color: var(--clr-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0px 40px 70px -15px rgba(205, 209, 208, 0.5);
}

.cta-button.secondary {
    background-color: var(--clr-white);
    color: var(--clr-text-main);
    border: 2px solid var(--clr-bg-secondary);
}

.cta-button.secondary:hover {
    border-color: var(--clr-highlight-bg);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 1.4rem 4rem;
    font-size: 1.3rem;
}

/* HERO SECTION */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 0 5rem;
    /* Reduced padding to match standard sections */
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* VSL Player Placeholder */
.vsl-container {
    max-width: 800px;
    /* Increased from 600px to fill space */
    width: 100%;
    margin: 1.5rem auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
    position: relative;
}

.video-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--clr-white);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(26, 26, 26, 0.05);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background: var(--clr-bg-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 90px;
    height: 90px;
    background-color: var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    transition: var(--transition-fast);
    box-shadow: 0 10px 20px -5px rgba(17, 30, 44, 0.4);
}

.play-button svg {
    width: 40px;
    height: 40px;
    margin-left: 6px;
}

.video-wrapper:hover .play-button {
    transform: scale(1.05);
    background-color: var(--clr-accent-hover);
}

.vsl-text-overlay {
    color: var(--clr-text-main);
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 2;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
    color: var(--clr-text-main);
    opacity: 0.8;
    font-size: 1.1rem;
    font-weight: 600;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item .icon {
    width: 24px;
    height: 24px;
    color: var(--clr-primary);
}

.quote-block {
    background-color: var(--clr-bg-secondary);
    padding: 2rem;
    margin: 2rem 0 0 0;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px dashed rgba(26, 26, 26, 0.1);
}

.quote-block p {
    font-family: var(--font-serif-accent);
    font-size: 1.75rem;
    line-height: 1.4;
    color: var(--clr-text-main);
    margin: 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: var(--clr-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(26, 26, 26, 0.05);
    box-shadow: var(--shadow-card);
}

.list-icon {
    font-size: 2rem;
    line-height: 1;
    background: var(--clr-bg-secondary);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Mock Video Element in Trojan Section */
.glass-card {
    background: var(--clr-white);
    border: 1px solid rgba(26, 26, 26, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.card-header {
    background: var(--clr-bg-secondary);
    padding: 1rem 1.5rem;
    display: flex;
    gap: 8px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.dot.red {
    background-color: #ff5f56;
}

.dot.yellow {
    background-color: #ffbd2e;
}

.dot.green {
    background-color: #27c93f;
}

.card-body {
    padding: 1.5rem;
}

.mock-video {
    background: var(--clr-bg-secondary);
    aspect-ratio: 9/16;
    border-radius: var(--radius-md);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    max-width: 320px;
}

.play-btn-small {
    width: 70px;
    height: 70px;
    background: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.video-container {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9/16;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius-md);
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trojan-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hide play button when video is playing */
.video-container.is-playing .play-btn-small {
    opacity: 0;
    pointer-events: none;
}

.play-btn-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: 10;
}

.mute-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(5, 20, 27, 0.6);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 15;
    opacity: 0;
    transition: var(--transition-fast);
    backdrop-filter: blur(4px);
}

.mute-btn svg {
    width: 20px;
    height: 20px;
}

.video-container.is-playing .mute-btn {
    opacity: 1;
}

.mute-btn:hover {
    background: rgba(5, 20, 27, 0.9);
}

.video-context-badge {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.play-btn-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: 10;
}

.mock-stats {
    display: flex;
    justify-content: space-around;
    padding: 0 1rem;
    font-weight: 700;
    color: var(--clr-text-main);
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.mock-caption {
    font-size: 1.1rem;
    color: var(--clr-text-main);
    text-align: center;
    margin: 0;
    font-family: var(--font-serif-accent);
}

/* Feature Cards (Protocol Section) */
.feature-card {
    border-radius: var(--radius-md);
    padding: 3rem 2.5rem;
    text-align: center;
    color: var(--clr-text-main);
}

.feature-card-1 {
    background-color: var(--clr-bg-secondary);
}

.feature-card-2 {
    background-color: var(--clr-text-muted);
    color: var(--clr-white);
}

.feature-card-2 p,
.feature-card-2 h3 {
    color: var(--clr-white);
}

.feature-card-3 {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.feature-card-3 p,
.feature-card-3 h3 {
    color: var(--clr-white);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    background: var(--clr-white);
    border-radius: 50%;
    box-shadow: 0 10px 20px -5px rgba(26, 26, 26, 0.05);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--clr-text-main);
    opacity: 0.8;
    margin: 0;
}

/* Specificity overrides for dark cards */
.feature-card.feature-card-2 h3,
.feature-card.feature-card-2 p,
.feature-card.feature-card-3 h3,
.feature-card.feature-card-3 p {
    color: var(--clr-white);
}

/* Statement Box */
.statement-box {
    background: var(--clr-white);
    padding: 4rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(26, 26, 26, 0.05);
}

.statement-box h3 {
    margin: 0;
    font-size: 2.5rem;
    color: var(--clr-text-main);
}

/* Content Cards (Final Pitch Section) */
.content-card {
    background: var(--clr-bg-secondary);
    border-radius: var(--radius-lg);
    padding: 4rem;
    height: 100%;
    transition: var(--transition-normal);
    position: relative;
}

.card-tag {
    display: inline-block;
    background: var(--clr-white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--clr-text-main);
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(26, 26, 26, 0.03);
}

.card-title {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px dashed rgba(26, 26, 26, 0.1);
}

.styled-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.styled-list li {
    margin-bottom: 1rem;
    color: var(--clr-text-main);
}

.urgency-box {
    background: var(--clr-white);
    color: var(--clr-text-main);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(26, 26, 26, 0.1);
    font-weight: 700;
}

/* Final CTA Section */
.final-cta-section {
    background-color: var(--clr-bg-secondary);
}

/* Footer */
.footer {
    background: var(--clr-bg);
    color: var(--clr-text-main);
    opacity: 0.7;
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid rgba(26, 26, 26, 0.05);
}

/* Animations Removed */

/* =========================================
   MODAL POPUP
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--clr-bg);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    padding: 3rem 2rem;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition-normal);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--clr-accent);
}

/* iframe placeholder for calendly/booking */
.booking-frame {
    width: 100%;
    height: 400px;
    background: var(--clr-bg-secondary);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(26, 26, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    color: var(--clr-text-muted);
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   FUNNEL SPECIFIC STYLES (Phase 5)
   ========================================= */

.funnel-body {
    background-color: var(--clr-bg);
    display: flex;
    justify-content: center;
    padding: 1rem;
    min-height: 100vh;
    overflow-x: hidden;
}

.funnel-container {
    width: 100%;
    max-width: 800px;
}

/* Funnel Header */
.funnel-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.05);
    margin-bottom: 1.5rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--clr-text-main);
}

/* Back Link */
.back-link {
    position: absolute;
    left: 10px;
    top: -5px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.back-link:hover {
    color: var(--clr-text-main);
    transform: translateX(-3px);
}

/* Transition Overlay */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--clr-bg);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.transition-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Progress Bar */
.progress-wrapper {
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 3px;
    width: 100%;
    background: linear-gradient(to right,
            var(--clr-primary) 0%,
            var(--clr-primary) 62.5%,
            #d1d5db 62.5%,
            #d1d5db 100%);
    z-index: 1;
}

.progress-line.final-line {
    background: var(--clr-primary);
}

.progress-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    z-index: 2;
    background-color: #d1d5db;
    transition: var(--transition-normal);
}

.progress-dot.filled {
    background-color: var(--clr-primary);
    box-shadow: 0 0 0 4px var(--clr-bg);
}

.progress-dot.empty {
    background-color: #d1d5db;
    box-shadow: 0 0 0 4px var(--clr-bg);
}

/* Funnel Typography */
.funnel-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-wrap: balance;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.funnel-subtitle {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.emoji {
    display: inline-block;
    animation: wave 2s infinite;
    transform-origin: bottom right;
}

.emoji-header {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(14deg);
    }

    40% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Funnel Form */
.funnel-form {
    max-width: 550px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

.funnel-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: var(--clr-text-main);
    border: 1px solid rgba(26, 26, 26, 0.15);
    border-radius: var(--radius-sm);
    background: var(--clr-white);
    transition: var(--transition-fast);
}

.funnel-input:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 4px rgba(116, 198, 134, 0.15);
}

.phone-group {
    display: flex;
}

.flag-icon {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background: var(--clr-bg-secondary);
    border: 1px solid rgba(26, 26, 26, 0.15);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-size: 1.1rem;
    white-space: nowrap;
}

.phone-input {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Multi-Step Visibility */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Controls */
.form-controls {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

#prevBtn,
#nextBtn,
#submitBtn {
    flex: 1;
}

/* Custom Radio Cards */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.radio-card {
    position: relative;
    display: block;
    cursor: pointer;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-content {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(26, 26, 26, 0.1);
    border-radius: var(--radius-sm);
    background: var(--clr-white);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--clr-text-main);
    transition: var(--transition-fast);
}

.radio-card:hover .radio-content {
    background: var(--clr-bg-secondary);
    border-color: rgba(26, 26, 26, 0.2);
}

.radio-card input[type="radio"]:checked~.radio-content {
    border-color: var(--clr-primary);
    background: rgba(116, 198, 134, 0.05);
    box-shadow: 0 4px 15px -5px rgba(116, 198, 134, 0.3);
}

/* Custom Radio Dot */
.radio-content::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 15px;
    border-radius: 50%;
    border: 2px solid rgba(26, 26, 26, 0.2);
    background: var(--clr-white);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.radio-card input[type="radio"]:checked~.radio-content::before {
    border-color: var(--clr-primary);
    border-width: 6px;
    /* Creates the active inner dot effect */
}


.full-width {
    width: 100%;
    font-size: 1.35rem;
}

/* Arrow Hover Animation */
.cta-button .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

/* Booking Widget Override Placeholder */
.large-frame {
    height: 500px;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 900px) {

    .grid-2-col,
    .grid-3-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-br {
        display: none;
    }
}

@media (max-width: 600px) {
    .cta-button {
        width: 100%;
        display: block;
    }

    .trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .section {
        padding: 5rem 0;
    }
}