/* ============================================
   SLEEKTEAK FLORIDA — Main Stylesheet
   Design inspired by Nauka luxury yacht template
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --navy: #0a1f3c;
    --navy-light: #0e2a4f;
    --gold: #c8a855;
    --gold-hover: #b8983f;
    --gold-light: rgba(200, 168, 85, 0.15);
    --teal: #0891b2;
    --teal-hover: #0e7490;
    --white: #ffffff;
    --light-bg: #f4f7fa;
    --light-gray: #e8ecf1;
    --dark-overlay: rgba(10, 31, 60, 0.50);
    --text-dark: #0a1f3c;
    --text-body: #4a5568;
    --text-muted: #8896a6;
    --text-light: rgba(255, 255, 255, 0.8);

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-pill: 50px;

    --shadow-sm: 0 2px 8px rgba(10, 31, 60, 0.06);
    --shadow-md: 0 4px 20px rgba(10, 31, 60, 0.1);
    --shadow-lg: 0 8px 40px rgba(10, 31, 60, 0.12);
    --shadow-xl: 0 15px 60px rgba(10, 31, 60, 0.15);
    --shadow-gold: 0 4px 20px rgba(200, 168, 85, 0.3);

    --transition-fast: 0.25s ease;
    --transition-base: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ---- Section Patterns ---- */
.stk-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stk-bg-light {
    background: var(--light-bg);
}

.stk-bg-dark {
    background: var(--navy);
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label-light {
    color: var(--gold);
}

.section-title {
    margin-bottom: 50px;
}

.section-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.light-heading {
    color: var(--white);
}

.section-desc {
    font-size: 18px;
    color: var(--text-body);
    max-width: 700px;
    margin: 0 auto;
}

.gold-text {
    color: var(--gold);
}

/* ---- Buttons ---- */
.stk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.stk-btn-primary {
    background: var(--navy);
    color: var(--white);
}

.stk-btn-primary:hover {
    background: var(--navy-light);
    color: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stk-btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.stk-btn-gold:hover {
    background: var(--gold-hover);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.stk-btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.stk-btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.stk-btn-white {
    background: var(--white);
    color: var(--navy);
}

.stk-btn-white:hover {
    background: var(--light-bg);
    color: var(--navy);
    transform: translateY(-2px);
}

.stk-btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.stk-btn-lg {
    padding: 18px 40px;
    font-size: 17px;
}

.btn-ripple {
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(200, 168, 85, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}

.stk-btn:hover .btn-ripple {
    width: 300%;
    height: 600px;
}

/* ---- TOP BAR ---- */
.stk-top-bar {
    background: var(--navy);
    padding: 10px 0;
    text-align: center;
    position: relative;
    z-index: 1001;
}

.top-bar-link {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
}

.top-bar-link:hover {
    color: var(--gold);
}

.top-bar-arrow {
    color: var(--gold);
    font-weight: 600;
    margin-left: 4px;
}

/* ---- HEADER ---- */
.stk-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

.stk-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
}

.stk-header.scrolled .header-inner {
    padding: 8px 0;
}

.stk-header.scrolled .logo-img {
    height: 50px;
    width: auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    transition: padding var(--transition-base);
}

.header-logo .logo-img {
    height: 60px;
    width: auto;
    transition: height var(--transition-base);
}

.header-nav .nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.header-nav .nav-menu .menu-item a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    position: relative;
    padding: 4px 0;
}

.header-nav .nav-menu .menu-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.header-nav .nav-menu .menu-item a:hover::after {
    width: 100%;
}

.header-nav .nav-menu .menu-item a:hover {
    color: var(--gold);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 60, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: var(--white);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: right var(--transition-base);
    box-shadow: var(--shadow-xl);
}

.mobile-nav-overlay.active .mobile-nav-panel {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.mobile-nav-header .logo-img {
    height: 50px;
    width: auto;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--navy);
    cursor: pointer;
    padding: 8px;
}

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

.mobile-menu-list li a {
    display: block;
    padding: 16px 0;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1px solid var(--light-gray);
    transition: color var(--transition-fast);
}

.mobile-menu-list li a:hover {
    color: var(--gold);
}

.mobile-nav-cta {
    margin-top: auto;
    padding-top: 24px;
}

.mobile-nav-cta .stk-btn {
    width: 100%;
    justify-content: center;
}

/* ---- HERO SECTION ---- */
.stk-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh; /* Safari-safe viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg wistia-player {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
}

/* Mobile image fallback — hidden on desktop */
.hero-mobile-bg {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
    z-index: 1;
}

.hero-decorative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 168, 85, 0.15);
}

.deco-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.deco-circle-2 {
    width: 250px;
    height: 250px;
    bottom: 100px;
    left: -80px;
}

.deco-circle-3 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -100px;
    border-color: rgba(200, 168, 85, 0.1);
}

.deco-circle-4 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    border-color: rgba(200, 168, 85, 0.1);
}

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

.hero-content {
    text-align: center;
    padding: 120px 0 80px;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid rgba(200, 168, 85, 0.4);
    border-radius: var(--radius-pill);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.stk-hero .hero-h2,
h2.hero-h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: #ffffff !important;
    margin-bottom: 55px;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 12px;
}

.hero-small {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    min-width: 200px;
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
}

/* ---- MARQUEE ---- */
.stk-marquee {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
    border-top: 1px solid var(--light-gray);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 12px;
    flex-shrink: 0;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.marquee-check {
    color: var(--gold);
    font-size: 18px;
}

.marquee-dot {
    color: var(--text-muted);
    font-size: 20px;
}

/* ---- INTRO TEXT ---- */
.stk-intro {
    padding: 40px 0 80px;
    margin-top: -2px;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-lead {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.8;
}

/* ---- PREMIUM BRAND ---- */
.stk-premium-brand {
    padding: 100px 0;
}

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

.premium-text .section-label {
    margin-bottom: 20px;
}

.premium-text .section-heading {
    font-size: 34px;
    line-height: 1.3;
}

.premium-image {
    position: relative;
    text-align: center;
}

.floating-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.image-deco-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    opacity: 0.2;
    top: -30px;
    right: -30px;
    z-index: 0;
}

/* ---- YOUR ROLE ---- */
.stk-your-role {
    padding: 100px 0;
}

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

.role-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 1px solid var(--light-gray);
    transition: all var(--transition-base);
}

.role-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.role-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold-light);
    margin-bottom: 24px;
}

.role-icon i {
    font-size: 28px;
    color: var(--gold);
}

.role-content p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.6;
}

.role-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(10, 31, 60, 0.05);
    line-height: 1;
}

/* ---- BUILD SERIOUS INCOME ---- */
.stk-income {
    padding: 100px 0;
    position: relative;
}

.section-deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.income-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.income-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: all var(--transition-base);
}

.income-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.income-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.income-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
}

.income-note {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- WEBINAR SECTION ---- */
.stk-webinar {
    padding: 25px 0;
    background: var(--white);
}

.webinar-video-wrapper {
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.webinar-video-wrapper wistia-player {
    border-radius: var(--radius-lg);
}

/* ---- FEATURES (Video Background) ---- */
.stk-features {
    padding: 100px 0;
}

.stk-features-video {
    position: relative;
    overflow: hidden;
}

.features-video-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.features-video-bg wistia-player {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Hide all Wistia player chrome in the background video */
.features-video-bg wistia-player::part(big-play-button),
.features-video-bg wistia-player::part(loading-indicator) {
    display: none !important;
}

.features-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
    pointer-events: none;
}

.stk-features-video .container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--light-gray);
    transition: all var(--transition-base);
}

.feature-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.feature-check {
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
}

.features-closing {
    text-align: center;
    font-size: 20px;
    color: var(--navy);
    line-height: 1.6;
}

/* ---- GALLERY ---- */
.stk-gallery {
    padding: 100px 0;
}

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

.gallery-grid .gallery-item:nth-child(4) {
    grid-column: span 1;
}

.gallery-grid .gallery-item:nth-child(5) {
    grid-column: span 2;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 60, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 32px;
    color: var(--white);
}

/* ---- VIDEO SECTION ---- */
.stk-video-section {
    padding: 100px 0;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-wrapper wistia-player {
    border-radius: var(--radius-lg);
}

.video-duo {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 480px;
    margin: 0 auto 15px;
}

.video-duo-item {
    flex: 1;
    max-height: 75vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-duo-item wistia-player {
    border-radius: var(--radius-lg);
}

.video-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

/* ---- WHAT'S INCLUDED ---- */
.stk-included {
    padding: 100px 0;
}

.included-list {
    max-width: 650px;
    margin: 0 auto;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    border: 1px solid var(--light-gray);
    transition: all var(--transition-base);
}

.included-item:last-child {
    margin-bottom: 0;
}

.included-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.included-check {
    color: var(--gold);
    font-size: 22px;
    flex-shrink: 0;
}

.included-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
}

/* ---- ZERO RISK ---- */
.stk-zero-risk {
    padding: 100px 0;
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.risk-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--light-gray);
    transition: all var(--transition-base);
}

.risk-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.risk-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light-gray);
}

.risk-card-dont .risk-card-title {
    border-bottom-color: #ef4444;
}

.risk-card-do .risk-card-title {
    border-bottom-color: var(--gold);
}

.risk-list {
    list-style: none;
}

.risk-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-body);
    font-weight: 500;
}

.risk-x {
    color: #ef4444;
    font-size: 20px;
    flex-shrink: 0;
}

.risk-check {
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
}

/* ---- IS THIS RIGHT FOR YOU? ---- */
.stk-right-for-you {
    padding: 100px 0;
}

.fit-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.fit-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 24px;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: all var(--transition-base);
}

.fit-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.fit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-light);
    margin-bottom: 20px;
}

.fit-icon i {
    font-size: 26px;
    color: var(--gold);
}

.fit-card p {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.5;
}

.fit-video-wrapper {
    max-width: 900px;
    margin: 40px auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.fit-video-wrapper wistia-player {
    border-radius: var(--radius-lg);
}

.fit-closing {
    text-align: center;
    font-size: 18px;
    color: var(--navy);
}

/* ---- URGENCY CTA ---- */
.stk-urgency {
    padding: 80px 0;
}

.urgency-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.urgency-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
}

.urgency-content .light-heading {
    font-size: 36px;
    margin-bottom: 20px;
}

.urgency-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---- FINAL CTA ---- */
.stk-final-cta {
    padding: 100px 0;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-card .section-heading {
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- VETERAN OWNED BADGE ---- */
.stk-veteran-badge {
    text-align: center;
    padding: 20px 0;
    background: var(--white);
}

.stk-veteran-badge .veteran-logo {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
}

/* ---- FOOTER ---- */
.stk-footer {
    background: var(--navy);
    padding: 80px 0 0;
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-subscribe {
    display: flex;
    gap: 0;
    border-radius: var(--radius-pill);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-subscribe input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--white);
    font-size: 14px;
    outline: none;
}

.footer-subscribe input::placeholder {
    color: var(--text-muted);
}

.subscribe-btn {
    padding: 12px 18px;
    background: var(--gold);
    border: none;
    color: var(--navy);
    cursor: pointer;
    font-size: 16px;
    transition: background var(--transition-fast);
}

.subscribe-btn:hover {
    background: var(--gold-hover);
}

.footer-widget-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.footer-menu li a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-menu li a i {
    font-size: 10px;
    color: var(--gold);
}

.footer-contact-info {
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(200, 168, 85, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-icon i {
    font-size: 14px;
    color: var(--gold);
}

.footer-contact-text {
    font-size: 14px;
    color: var(--text-light);
}

.footer-contact-text a {
    color: var(--text-light);
}

.footer-contact-text a:hover {
    color: var(--gold);
}

.footer-contact-text p {
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ---- BACK TO TOP ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.back-to-top:hover {
    color: var(--navy);
    background: var(--gold-hover);
    transform: translateY(-4px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ---- 404 PAGE ---- */
.stk-404 {
    padding: 120px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
}

.error-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.error-desc {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- GENERIC PAGE ---- */
.stk-page,
.stk-fallback-page {
    padding: 80px 0;
    min-height: 60vh;
}

.page-title {
    font-size: 40px;
    margin-bottom: 32px;
}

.entry-content {
    font-size: 16px;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.entry-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

/* ---- INTRO SECTION ---- */
.stk-intro-bg {
    background: var(--light-bg);
}

/* ---- PREMIUM BRAND — Decorative Palm Image ---- */
.premium-deco-img {
    position: absolute;
    bottom: -20px;
    left: -40px;
    width: 200px;
    border-radius: var(--radius-lg);
    opacity: 0.7;
    z-index: 0;
    box-shadow: var(--shadow-md);
}

/* ---- TERRITORY SECTION ---- */
.stk-territories {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(rgba(10, 31, 60, 0.80), rgba(10, 31, 60, 0.80)),
                url('../images/banner-territories.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.stk-territories .section-label {
    color: var(--gold);
}

.stk-territories .section-heading {
    color: var(--white);
}

.stk-territories .section-desc {
    color: var(--text-light);
}

.territory-body {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.territory-body p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.territory-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.territory-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.territory-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.territory-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold-light);
    margin-bottom: 24px;
}

.territory-card-icon i {
    font-size: 28px;
    color: var(--gold);
}

.territory-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.territory-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.territory-closing {
    text-align: center;
    font-size: 20px;
    color: var(--gold);
    font-weight: 600;
}

/* ---- URGENCY — Background Image ---- */
.stk-urgency-bg {
    background: linear-gradient(rgba(10, 31, 60, 0.85), rgba(10, 31, 60, 0.85)),
                url('../images/banner-urgency.png');
    background-size: cover;
    background-position: center;
}

/* ---- ROI CALCULATOR ---- */
.stk-roi-section {
    padding: 100px 0;
}

.roi-calculator {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.roi-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.roi-field {
    text-align: center;
}

.roi-field label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.roi-field select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--white);
    background-color: var(--navy);
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    outline: none;
    transition: all var(--transition-fast);
    text-align: center;
    text-align-last: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23c8a855' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 42px;
}

.roi-field select:hover {
    border-color: var(--gold-hover);
    box-shadow: 0 0 0 3px var(--gold-light);
}

.roi-field select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-light);
}

.roi-field select option {
    background-color: var(--navy);
    color: var(--white);
}

/* ROI Results */
.roi-results-wrapper {
    margin-top: 40px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ROI Earnings Card */
.roi-earnings-card {
    background: var(--navy);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(10, 31, 60, 0.3);
}

.roi-earnings-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 32px;
}

.roi-earnings-title i {
    margin-right: 8px;
}

.roi-earnings-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.roi-earnings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-earnings-row:last-of-type {
    border-bottom: none;
}

.roi-earnings-label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roi-earnings-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.roi-earnings-dollar {
    color: var(--gold);
    font-size: 28px;
}

.roi-earnings-highlight {
    background: rgba(200, 168, 85, 0.1);
    margin: 0 -40px;
    padding: 16px 40px;
    border-bottom: 1px solid rgba(200, 168, 85, 0.2);
}

.roi-earnings-highlight:last-of-type {
    border-bottom: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.roi-earnings-highlight .roi-earnings-value {
    color: var(--gold);
    font-size: 30px;
}

/* ROI Note */
.roi-note {
    text-align: center;
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin: 20px 0 0;
    padding: 14px 20px;
    background: rgba(200, 168, 85, 0.1);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}

/* ROI Apply Button */
.roi-apply-btn {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.roi-apply-btn.visible {
    display: inline-flex;
    opacity: 1;
}

/* ---- ZERO RISK — Background Image ---- */
.stk-zero-risk-bg {
    background: linear-gradient(rgba(10, 31, 60, 0.80), rgba(10, 31, 60, 0.80)),
                url('../images/banner-zero-risk.png');
    background-size: cover;
    background-position: center;
}

.stk-zero-risk-bg .section-heading {
    color: var(--white);
}

.stk-zero-risk-bg .risk-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.stk-zero-risk-bg .risk-card-title {
    color: var(--white);
}

.stk-zero-risk-bg .risk-list li {
    color: var(--text-light);
}

/* ---- TYPEFORM WRAPPER ---- */
.typeform-wrapper {
    max-width: 700px;
    margin: 0 auto 32px;
    min-height: 500px;
}
