/* General Body & Font Styles */
:root {
    --color-custom-dark: #0d1117;
    --color-text-primary: #c9d1d9;
    --color-text-secondary: #9FA6B2; /* Increased contrast */
    --color-text-tertiary: #c9d1d9; /* Increased contrast */
    --color-border-custom: rgba(255, 255, 255, 0.1);
    --color-custom-card: rgba(22, 27, 34, 0.5);
    --color-bg-black: #000000;
    --carousel-item-width-mobile: 180px;
    --carousel-item-width-desktop: 250px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-custom-dark);
    color: var(--color-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Reusable Components */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }
@media (min-width: 1536px) { .container { max-width: 1536px; } }

.text-gradient {
    background: linear-gradient(135deg,#dc2626,#ef4444,#f87171,#3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.bg-gradient {
    background: linear-gradient(135deg, #dc2626, #ef4444, #f87171, #3b82f6);
}
.bg-gradient:hover {
    background: linear-gradient(135deg, #b91c1c, #d93737, #f46262, #2563eb);
}
.hidden { display: none; }
.text-center { text-align: center; }

.section-heading {
    font-size: 1.875rem; /* 30px */
    line-height: 2.25rem; /* 36px */
    font-weight: 700;
    color: white;
}
@media (min-width: 768px) {
    .section-heading {
        font-size: 2.25rem; /* 36px */
        line-height: 2.5rem; /* 40px */
    }
}
.section-subheading {
    margin-top: 0.75rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem; /* 18px */
    line-height: 1.75rem; /* 28px */
    color: var(--color-text-tertiary);
}
.section-header-wrapper {
    margin-bottom: 4rem;
}


/* Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-custom);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.logo-link { display: block; width: 10rem; }
.logo-img { height: 100%; width: auto; }
.desktop-nav-group { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .desktop-nav-group { display: flex; } }
.desktop-nav { display: flex; align-items: center; gap: 2rem; }
.nav-link { font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-link:hover, .nav-link.active {
    background: linear-gradient(135deg,#dc2626,#ef4444,#f87171,#3b82f6);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.get-started-btn {
    color: white; font-size: 0.875rem; font-weight: 600;
    padding: 0.625rem 1.25rem; border-radius: 0.375rem; transition: background-color 0.2s;
}
.mobile-menu-btn { display: block; color: white; background: none; border: none; cursor: pointer; }
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }
.hamburger-icon { height: 1.5rem; width: 1.5rem; }
.mobile-menu { background-color: rgba(13, 17, 23, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
@media (min-width: 768px) { .mobile-menu { display: none; } }
.mobile-menu-link { display: block; text-align: center; padding: 0.75rem 1.5rem; font-size: 0.875rem; }
.mobile-menu-link:hover { background-color: rgba(255, 255, 255, 0.05); }
.mobile-menu-btn-container { padding: 1rem; }
.mobile-get-started { display: block; text-align: center; }

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 5rem;
    text-align: center;
    overflow: hidden;
}
@media (min-width: 768px) {
    .hero-section { padding-top: 12rem; padding-bottom: 8rem; }
}
.hero-section::before { /* bg-glow-blue */
    content: ''; position: absolute; top: 50%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(52, 114, 245, 0.1), transparent 70%);
    transform: translateY(-50%); z-index: -1; pointer-events: none;
}
.hero-section::after { /* bg-glow-red */
    content: ''; position: absolute; top: 50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(248, 81, 73, 0.1), transparent 70%);
    transform: translateY(-50%); z-index: -1; pointer-events: none;
}
.hero-heading {
    font-size: 2.25rem; line-height: 1.1; font-weight: 900;
    letter-spacing: -0.025em; color: white;
}
@media (min-width: 768px) { .hero-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-heading { font-size: 4.5rem; } }
.hero-subheading {
    margin-top: 1rem; max-width: 42rem; margin-left: auto; margin-right: auto;
    font-size: 1.125rem; line-height: 1.75rem; color: var(--color-text-tertiary);
}
@media (min-width: 768px) { .hero-subheading { font-size: 1.25rem; } }
.hero-cta {
    margin-top: 2rem; font-size: 1.125rem; display: inline-flex; align-items: center;
    gap: 0.5rem; background: linear-gradient(135deg, #dc2626, #ef4444, #f87171, #3b82f6);
    color: white; font-weight: 600; padding: 0.75rem 2rem; border-radius: 0.375rem;
    transition: all 0.2s;
}
.hero-cta:hover { transform: scale(1.05); }
.hero-cta-icon { width: 1rem; height: 1rem; }

/* Counter */
.counter-section { margin-top: 4rem; }
.counter-wrapper { display: inline-block; }
.counter-number {
    font-size: 3rem; line-height: 1; font-weight: 700;
    letter-spacing: 0.05em;
}
@media (min-width: 768px) { .counter-number { font-size: 4.5rem; } }
.counter-label {
    margin-top: 2rem; color: var(--color-text-tertiary); font-size: 0.875rem;
    letter-spacing: 0.1em; text-transform: uppercase;
}

/* Trusted By & Carousel */
.trusted-by-section { padding-top: 5rem; padding-bottom: 5rem; }
.trusted-by-container { display: flex; flex-direction: column; justify-content: center; align-items: center; }
.carousel-container {
    margin-top: 3rem; width: 75%; overflow: hidden; position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 3rem, black calc(100% - 3rem), transparent);
    mask-image: linear-gradient(to right, transparent, black 2rem, black calc(100% - 2rem), transparent);
}
.carousel-track {
    display: flex; width: max-content;
    animation: scroll 30s linear infinite;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (min-width: 768px) { .carousel-track { animation-duration: 40s; } }
.carousel-item {
    flex-shrink: 0; width: var(--carousel-item-width-mobile);
    padding: 1rem 0.5rem 0; box-sizing: border-box; text-align: center;
}
@media (min-width: 768px) { .carousel-item { width: var(--carousel-item-width-desktop); } }
.performer-image-wrapper {
    padding: 0.25rem; border-radius: 9999px; display: inline-block; transition: all 0.3s ease-in-out;
}
.performer-image {
    width: 10rem; height: 10rem; border-radius: 9999px; object-fit: cover;
    border: 2px solid var(--color-border-custom); transition: transform 0.3s ease-in-out;
}
.performer-name { margin-top: 1rem; font-size: 1.5rem; font-weight: 600; color: white; }
.carousel-item:hover .performer-image-wrapper {
    background: linear-gradient(135deg,#dc2626,#ef4444,#f87171,#3b82f6);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5), 0 0 20px rgba(239, 68, 68, 0.4);
}
.carousel-item:hover .performer-image { transform: scale(1.05); border-color: transparent; }

/* Our Work Section */
.our-work-section { padding-top: 6rem; padding-bottom: 6rem; }
.video-grid {
    margin-top: 3rem; display: grid; grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}
@media (min-width: 768px) { .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .video-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.video-container {
    position: relative; padding-top: 177.77%; /* aspect-[9/16] */
    border-radius: 0.75rem; overflow: hidden;
    border: 1px solid var(--color-border-custom);
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}
.video-container.red-glow:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 1.25rem rgba(239, 68, 68, 0.2);
}
.video-container.blue-glow:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 1.25rem rgba(59, 130, 246, 0.2);
}
.video-iframe, .lazy-youtube {
    position: absolute; inset: 0; width: 100%; height: 100%;
}
.lazy-youtube {
    background-size: cover; background-position: center; cursor: pointer;
}
.play-button {
    width: 68px; height: 48px; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z" fill="%23212121" fill-opacity="0.8"></path><path d="M 45,24 27,14 27,34" fill="%23fff"></path></svg>') no-repeat;
    transition: transform 0.1s;
}
.lazy-youtube:hover .play-button { transform: translate(-50%, -50%) scale(1.1); }
.view-work-link-container { margin-top: 3rem; }
.view-work-link {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background-color: var(--color-custom-card); border: 1px solid var(--color-border-custom);
    color: white; font-weight: 600; padding: 0.75rem 2rem; border-radius: 0.375rem;
    transition: all 0.2s; transform-origin: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}
.view-work-link:hover {
    border-color: rgba(239, 68, 68, 0.5); transform: scale(1.05);
}
.arrow-icon { width: 1.25rem; height: 1.25rem; transition: transform 0.2s; }
.view-work-link:hover .arrow-icon { transform: translateX(0.25rem); }

/* Right for You Section */
.right-for-you-section { padding: 5rem 0; background-color: var(--color-custom-card); border-top: 1px solid var(--color-border-custom); border-bottom: 1px solid var(--color-border-custom); }
.section-icon-wrapper { margin-bottom: 1.5rem; }
.section-icon-inner { display: inline-block; padding: 0.75rem; background-color: rgba(31, 41, 55, 0.5); border-radius: 9999px; border: 2px solid rgba(239, 68, 68, 0.5); }
.section-icon-svg { height: 2rem; width: 2rem; color: #f87171; }
.checklist-outer-wrapper {
    margin-top: 2.5rem; max-width: 42rem; margin-left: auto; margin-right: auto;
    text-align: left; background-color: rgba(0,0,0,0.2); border: 1px solid var(--color-border-custom);
    border-radius: 0.5rem; padding: 1.5rem; position: relative; transition: border-color 0.4s ease;
}
@media (min-width: 768px) { .checklist-outer-wrapper { padding: 2rem; } }
.checklist-outer-wrapper:hover { border-color: transparent; }
.checklist-outer-wrapper::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, #dc2626, #ef4444, #f87171, #3b82f6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s ease-in-out; pointer-events: none;
}
.checklist-outer-wrapper:hover::before { opacity: 1; }
.checklist-items-wrapper { display: flex; flex-direction: column; gap: 1rem; }
.checklist-item { display: flex; align-items: center; cursor: pointer; padding: 0.5rem; border-radius: 0.375rem; }
.checklist-item:hover { background-color: rgba(255, 255, 255, 0.05); }
.custom-checkbox {
    flex-shrink: 0; height: 1.5rem; width: 1.5rem; border-radius: 0.25rem;
    border: 2px solid rgba(239, 68, 68, 0.5); display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.checklist-input:checked + .custom-checkbox { background-color: #34d399; border-color: #34d399; }
.checklist-input:checked + .custom-checkbox .checkmark { display: block; }
.checkmark { display: none; width: 1rem; height: 1rem; color: white; }
.checklist-text { margin-left: 1rem; color: #d1d5db; transition: color 0.3s; }
.checklist-input:checked ~ .checklist-text { color: #a7f3d0; text-shadow: 0 0 5px rgba(52, 211, 153, 0.5); }
.perfect-match-message {
    overflow: hidden; max-height: 0; opacity: 0; margin-top: 0; padding: 0;
    transition: all 0.5s ease-in-out;
    background-color: rgba(5, 150, 105, 0.2); border: 1px solid rgba(16, 185, 129, 0.5);
    border-radius: 0.5rem; text-align: center; color: #6ee7b7;
}
.perfect-match-message.visible { max-height: 150px; opacity: 1; margin-top: 1.5rem; padding: 1rem; }
.perfect-match-message p { font-weight: 600; }
.match-cta { margin-top: 1rem; font-size: 0.875rem; background: rgb(0 158 80); }

/* Toolkit Section */
.toolkit-section { padding: 6rem 0; }
.toolkit-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .toolkit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .toolkit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.toolkit-card {
    height: 100%; background-color: var(--color-custom-card); padding: 1.5rem;
    border-radius: 0.5rem; border: 1px solid var(--color-border-custom);
    display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
    position: relative; overflow: hidden; transition: all 0.4s ease;
}
.toolkit-card-icon-wrapper {
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    height: 3rem; width: 3rem; border-radius: 0.375rem; background-color: #1f2937;
}
.toolkit-card-icon { height: 1.5rem; width: 1.5rem; }
.toolkit-card-title { font-size: 1.25rem; font-weight: 700; color: white; }
.toolkit-card-text { margin-top: 0.5rem; color: var(--color-text-tertiary); flex-grow: 1; }
.toolkit-card::after {
    content: ''; position: absolute; top: var(--y, 0); left: var(--x, 0);
    width: 300px; height: 300px; transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.4s ease-in-out; pointer-events: none;
}
.toolkit-card::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
    background: radial-gradient(400px circle at var(--x, 0) var(--y, 0), rgba(239, 68, 68, 0.5), rgba(59, 130, 246, 0.5), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s ease-in-out; pointer-events: none;
}
@media (min-width: 1024px) {
    #toolkit-grid:hover .toolkit-card { border-color: transparent; }
    #toolkit-grid:hover .toolkit-card::before, #toolkit-grid:hover .toolkit-card::after { opacity: 1; }
}

/* Team Section */
.team-section { padding: 6rem 0; background-color: var(--color-custom-card); border-top: 1px solid var(--color-border-custom); border-bottom: 1px solid var(--color-border-custom); }
.team-subheading { max-width: 48rem; }
.team-card {
    background-color: var(--color-custom-card); border: 1px solid var(--color-border-custom);
    border-radius: 0.5rem; padding: 2rem; position: relative; overflow: hidden;
    max-width: 64rem; margin-left: auto; margin-right: auto;
}
.team-card:hover { border-color: transparent; }
.team-card::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, #dc2626, #ef4444, #f87171, #3b82f6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity 0.4s ease-in-out; pointer-events: none;
}
.team-card:hover::before { opacity: 1; }
.team-card-content {
    display: flex; flex-direction: column; align-items: center;
    gap: 2rem; position: relative; z-index: 10;
}
@media (min-width: 768px) { .team-card-content { flex-direction: row; gap: 3rem; } }
.team-member-image-wrapper { flex-shrink: 0; display: flex; justify-content: center; }
.gtc-cards-item { cursor: pointer; }
.gtc-pfp-wrapper {
    width: 12rem; height: 12rem; border-radius: 9999px; padding: 0.25rem;
    background: linear-gradient(135deg,#dc2626,#ef4444,#f87171,#3b82f6); flex-shrink: 0;
}
.gtc-cards-item:hover .performer-image-wrapper { box-shadow: 0px 0px 15px 4px rgb(255 255 255 / 50%), 0 0 0px rgb(255 255 255 / 0%); }
.team-member-image {
    width: 100%; height: 100%; border-radius: 9999px; object-fit: cover;
    border: 2px solid var(--color-border-custom); transition: transform 0.3s ease-in-out;
}
.gtc-cards-item:hover .team-member-image { transform: scale(1.07); border-color: transparent; }
.team-member-info { flex-grow: 1; text-align: center; }
@media (min-width: 768px) { .team-member-info { text-align: left; } }
.team-member-name { font-size: 1.5rem; font-weight: 700; color: white; }
.team-member-title { display: block; font-size: 0.875rem; font-weight: 400; margin-top: 0.25rem; background: linear-gradient(135deg,#dc2626,#ef4444,#f87171,#3b82f6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.social-proof-wrapper { display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0.5rem; justify-content: center; margin-top: 1rem; overflow-x: auto; }
@media (min-width: 768px) { .social-proof-wrapper { gap: 1rem; justify-content: flex-start; overflow-x: visible; } }
.social-proof-stat {
    display: flex; align-items: center; gap: 0.5rem; background-color: rgba(31, 41, 55, 0.5);
    padding: 0.5rem 0.75rem; border-radius: 0.375rem; border: 1px solid var(--color-border-custom);
    flex-shrink: 0;
}
@media (min-width: 768px) { .social-proof-stat { padding: 0.5rem 1rem; } }
.social-proof-icon { width: 1.25rem; height: 1.25rem; }
.youtube-icon { color: #ff0000; }
.views-icon { color: #60a5fa; }
.social-proof-value { font-weight: 600; color: white; font-size: 0.875rem; }
.social-proof-label { color: var(--color-text-tertiary); font-size: 0.75rem; }
@media (min-width: 768px) { .social-proof-value { font-size: 1rem; } .social-proof-label { font-size: 0.875rem; } }
.team-member-bio { margin-top: 1.5rem; color: #d1d5db; }
.team-member-bio:last-of-type { margin-top: 1rem; }

/* Pricing Section */
.pricing-section { padding: 6rem 0; }
.pricing-grid {
    margin-top: 4rem; display: grid; gap: 2rem;
    max-width: 72rem; margin-left: auto; margin-right: auto; text-align: left;
}
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.pricing-card {
    background-color: var(--color-custom-card); padding: 2rem; border-radius: 0.5rem;
    border: 1px solid var(--color-border-custom); display: flex; flex-direction: column;
    transition: transform 0.3s ease-in-out;
}
.pricing-card:not(.featured-plan):hover { transform: translateY(-8px); }
.pricing-accent-border { border: 2px solid transparent; background: linear-gradient(var(--color-custom-card), var(--color-custom-card)) padding-box, linear-gradient(135deg, #dc2626, #ef4444, #f87171, #3b82f6) border-box; }
.gradient-border-yellow { border: 2px solid transparent; background: linear-gradient(var(--color-custom-card), var(--color-custom-card)) padding-box, linear-gradient(to bottom right, #fdd835, #ffb300) border-box; }
.featured-plan { transform: scale(1); }
@media (min-width: 1024px) { .featured-plan { transform: scale(1.05); } }
.featured-plan:hover { transform: scale(1.05) translateY(-8px); }
.pricing-card-icon-wrapper { text-align: center; margin-bottom: 1.5rem; }
.pricing-card-icon-inner { display: inline-block; padding: 0.75rem; background-color: rgba(31, 41, 55, 0.5); border-radius: 9999px; }
.pricing-card-header { display: flex; justify-content: space-between; align-items: center; }
.pricing-card-title { font-size: 1.875rem; font-weight: 700; color: white; text-align: left; }
.top-pick-badge {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    background: linear-gradient(135deg,#dc2626,#ef4444,#f87171,#3b82f6); color: white;
    padding: 0.25rem 0.75rem; border-radius: 9999px;
}
.pricing-card-description { margin-top: 1rem; color: var(--color-text-tertiary); text-align: left; min-height: 4rem; }
.pricing-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; color: #d1d5db; flex-grow: 1; }
.pricing-feature-item { display: flex; align-items: flex-start; }
.feature-checkmark { width: 1.25rem; height: 1.25rem; color: #4ade80; margin-right: 0.5rem; flex-shrink: 0; }

/* How it Works */
.how-it-works-section { padding: 6rem 0; background-color: var(--color-custom-card); border-top: 1px solid var(--color-border-custom); border-bottom: 1px solid var(--color-border-custom); }
.how-it-works-grid {
    display: grid; gap: 2rem; position: relative;
}
@media (min-width: 768px) { .how-it-works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .how-it-works-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.how-it-works-grid::before {
    content: ''; display: none; position: absolute; top: 2.5rem; left: 0;
    width: 100%; height: 2px; z-index: 0;
    background-image: linear-gradient(to right, #4a5568 50%, transparent 50%);
    background-size: 16px 2px;
}
@media (min-width: 1024px) { .how-it-works-grid::before { display: block; } }
.how-it-works-step { position: relative; text-align: center; z-index: 10; }
.step-number-wrapper { width: 5rem; height: 5rem; margin: 0 auto; border-radius: 9999px; padding: 0.25rem; background: linear-gradient(135deg,#dc2626,#ef4444,#f87171,#3b82f6); }
.step-number-inner {
    width: 100%; height: 100%; background-color: var(--color-custom-card); border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.5rem; font-weight: 700;
}
.step-title { margin-top: 1rem; font-weight: 700; color: white; font-size: 1.25rem; }
.step-description { margin-top: 0.5rem; color: var(--color-text-tertiary); }

/* Final CTA */
.final-cta-section { padding: 6rem 0; }

/* Footer */
.site-footer {
    background-color: var(--color-bg-black);
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-custom);
}
.footer-container {}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
    font-size: 0.875rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.footer-about { grid-column: span 1 / span 1; }
@media (min-width: 768px) { .footer-about { grid-column: span 2 / span 2; } }
.footer-logo-wrapper { width: 9rem; }
.footer-logo-img { width: 100%; height: auto; }
.footer-description { margin-top: 1rem; line-height: 1.5; color: var(--color-text-tertiary); max-width: 28rem; }
.footer-heading { font-weight: 600; color: #e5e7eb; }
.footer-links { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; color: var(--color-text-tertiary); }
.footer-links li:hover { color: white; }
.footer-socials { margin-top: 1rem; display: flex; gap: 1rem; }
.social-icon { width: 1.25rem; height: 1.25rem; color: var(--color-text-tertiary); transition: color 0.2s; }
.social-icon:hover { color: white; }
.footer-copyright-container {
    margin-top: 1.5rem; padding: 1.5rem 0;
    border-top: 1px solid var(--color-border-custom);
    text-align: center;
}
.footer-copyright { color: var(--color-text-secondary); font-size: 0.75rem; }
