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

:root {
    --tsa-violet: #6B2ECE;
    --tsa-pink: #FF2D8F;
    --tsa-mint: #00E1A0;
    --tsa-lavender: #E9D6FF;
    --tsa-dark: #1a1a1a;
    --tsa-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--tsa-violet);
    color: var(--tsa-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== Typography ===== */
.font-display {
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

/* ===== Grain Overlay ===== */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(107, 46, 206, 0.9);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--tsa-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--tsa-violet);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--tsa-white);
}

.cta-button {
    display: none;
    background: var(--tsa-mint);
    color: var(--tsa-dark);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--tsa-white);
}

.cta-button.large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--tsa-white);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--tsa-violet);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-link {
    color: var(--tsa-white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
}

.mobile-cta {
    display: block;
    margin-top: 1rem;
}

/* ===== Sections ===== */
.section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.section-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 1.5rem 3rem;
    position: relative;
    z-index: 2;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 20vw;
    font-weight: 900;
    text-transform: uppercase;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.06);
    color: transparent;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
}

.section-headline {
    font-size: clamp(2rem, 6vw, 5rem);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-headline span {
    display: block;
}

.highlight {
    color: var(--tsa-mint);
}

.highlight-mint {
    color: var(--tsa-mint);
}

.highlight-pink {
    color: var(--tsa-pink);
}

.section-subheadline {
    color: var(--tsa-lavender);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ===== Hero Section ===== */
.hero {
    background: var(--tsa-pink);
    min-height: 100vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(107, 46, 206, 0.3) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 7rem 1.5rem 3rem;
    position: relative;
    z-index: 2;
}

.hero-headline {
    font-size: clamp(2.5rem, 8vw, 6rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.headline-line {
    display: block;
}

.hero-subheadline {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    max-width: 400px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.6rem 1rem;
    color: var(--tsa-white);
    font-size: 0.85rem;
    font-weight: 500;
}

.pill svg {
    color: var(--tsa-mint);
}

/* Hero Phones */
.hero-phones {
    display: none;
    position: relative;
    height: 400px;
}

.phone {
    position: absolute;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    border: 6px solid #1a1a1a;
}

.phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-a {
    width: 140px;
    left: 0;
    top: 50px;
    transform: rotate(-8deg);
    z-index: 1;
}

.phone-b {
    width: 160px;
    left: 100px;
    top: 0;
    z-index: 3;
}

.phone-c {
    width: 140px;
    left: 200px;
    top: 50px;
    transform: rotate(8deg);
    z-index: 2;
}

.section-wipe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--tsa-violet);
    transform: translateY(100%);
    z-index: 10;
}

/* ===== Attract Section ===== */
.attract-section {
    background: var(--tsa-violet);
}

.attract-section .section-content {
    text-align: center;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    perspective: 1000px;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.25rem;
    text-align: left;
    transform: rotateY(var(--rotate, 0deg));
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: rotateY(var(--rotate, 0deg)) translateY(-8px);
}

.card-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 225, 160, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--tsa-mint);
}

.service-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--tsa-white);
}

.service-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* ===== Transform Section ===== */
.transform-section {
    background: var(--tsa-violet);
}

.transform-section .section-content.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.body-text {
    margin-bottom: 2rem;
}

.body-text p {
    color: var(--tsa-lavender);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.ceo-info {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ceo-name {
    color: var(--tsa-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.ceo-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.clients-section {
    margin-top: 2rem;
}

.clients-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.client-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}

.client-tag.more {
    background: rgba(0, 225, 160, 0.2);
    border-color: rgba(0, 225, 160, 0.3);
    color: var(--tsa-mint);
}

.feature-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Why Choose Section ===== */
.why-section {
    background: var(--tsa-pink);
}

.why-section .section-content.split-reverse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.list-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem;
}

.reason-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 225, 160, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tsa-mint);
    flex-shrink: 0;
}

.reason-text {
    display: flex;
    flex-direction: column;
}

.reason-number {
    color: var(--tsa-mint);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
}

.reason-text p {
    color: var(--tsa-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.why-content .section-headline {
    margin-bottom: 1rem;
}

.why-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.proof-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.proof-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem;
}

.proof-card.highlight {
    background: rgba(0, 225, 160, 0.2);
    border-color: rgba(0, 225, 160, 0.3);
}

.proof-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--tsa-white);
}

.proof-card.highlight .proof-icon {
    background: rgba(0, 225, 160, 0.3);
    color: var(--tsa-mint);
}

.proof-card p {
    color: var(--tsa-white);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* ===== Content Series Section ===== */
.content-series-section {
    background: var(--tsa-violet);
    padding: 4rem 1.5rem;
}

.section-header {
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--tsa-lavender);
    font-size: 0.95rem;
}

.content-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.content-icon {
    width: 36px;
    height: 36px;
    background: rgba(107, 46, 206, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: var(--tsa-violet);
}

.content-card span {
    color: var(--tsa-violet);
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1.3;
}

/* ===== Reels Section ===== */
.reels-section {
    background: var(--tsa-pink);
    padding: 4rem 1.5rem;
    overflow: hidden;
}

.reels-content {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.reels-header h2 {
    font-size: clamp(3rem, 10vw, 8rem);
    text-transform: uppercase;
    line-height: 0.85;
    margin-bottom: 0.5rem;
}

.reels-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.reels-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    max-width: 350px;
    margin-bottom: 1.5rem;
}

.reels-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--tsa-white);
    color: var(--tsa-pink);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.reels-cta:hover {
    background: var(--tsa-mint);
    color: var(--tsa-white);
}

.reels-phone {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 180px;
    aspect-ratio: 9/19;
    background: #1a1a1a;
    border-radius: 28px;
    padding: 8px;
    transform: rotate(-6deg);
    position: relative;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.play-overlay {
    position: absolute;
    inset: 8px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tsa-pink);
}

.reels-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.reel-item {
    aspect-ratio: 9/16;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.reel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.play-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tsa-pink);
}

.reel-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--tsa-white);
    font-size: 0.7rem;
    font-weight: 500;
}

/* ===== Podcast Section ===== */
.podcast-section {
    background: var(--tsa-violet);
    padding: 4rem 1.5rem;
}

.podcast-banner {
    max-width: 1400px;
    margin: 0 auto 2rem;
    background: linear-gradient(to right, rgba(255, 45, 143, 0.3), transparent);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mic-icon {
    width: 50px;
    height: 50px;
    background: var(--tsa-pink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tsa-white);
}

.banner-left h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
}

.banner-subtitle {
    color: var(--tsa-mint);
    font-size: 0.8rem;
    font-weight: 600;
}

.banner-desc {
    color: var(--tsa-lavender);
    font-size: 0.85rem;
    max-width: 400px;
}

.featured-episode {
    max-width: 1400px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}

.featured-content {
    padding: 1.5rem;
}

.featured-label {
    color: var(--tsa-mint);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.featured-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.featured-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--tsa-mint);
    color: var(--tsa-dark);
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.listen-btn:hover {
    background: var(--tsa-white);
}

.featured-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.episode-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-4px);
}

.episode-image {
    position: relative;
    aspect-ratio: 16/9;
}

.episode-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.episode-card:hover .episode-overlay {
    opacity: 1;
}

.play-btn-small {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tsa-violet);
}

.episode-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--tsa-pink);
    color: var(--tsa-white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.episode-card h4 {
    padding: 0.75rem;
    font-size: 0.8rem;
    color: var(--tsa-white);
    transition: color 0.3s ease;
}

.episode-card:hover h4 {
    color: var(--tsa-mint);
}

.podcast-more {
    max-width: 1400px;
    margin: 2rem auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.podcast-more span {
    color: var(--tsa-mint);
    font-weight: 600;
}

/* ===== Final CTA Section ===== */
.final-cta {
    background: var(--tsa-pink);
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0;
}

.cta-content {
    text-align: center;
    padding: 4rem 1.5rem;
    width: 100%;
}

.cta-headline {
    font-size: clamp(2.5rem, 10vw, 7rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cta-headline span {
    display: block;
}

.cta-subheadline {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.value-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.value-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.6rem 1rem;
}

.chip-icon {
    width: 28px;
    height: 28px;
    background: rgba(0, 225, 160, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tsa-mint);
}

.value-chip span {
    color: var(--tsa-white);
    font-size: 0.8rem;
    font-weight: 500;
}

.cta-banner {
    width: 100%;
    background: var(--tsa-violet);
    padding: 2rem 1.5rem;
    margin-top: auto;
}

.banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.banner-words {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-words span {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
}

.banner-words .mint {
    color: var(--tsa-mint);
}

.banner-action p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--tsa-violet);
    padding: 4rem 1.5rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tsa-mint);
    flex-shrink: 0;
}

.contact-item p {
    color: var(--tsa-white);
    font-size: 0.85rem;
}

.contact-item .secondary {
    color: rgba(255, 255, 255, 0.5);
}

.contact-item .address {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--tsa-white);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--tsa-mint);
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tsa-white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--tsa-mint);
    color: var(--tsa-dark);
}

.qr-code {
    display: inline-block;
}

.qr-placeholder {
    width: 80px;
    height: 80px;
    background: var(--tsa-white);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.qr-pattern {
    width: 50px;
    height: 50px;
    background: repeating-linear-gradient(
        0deg,
        var(--tsa-violet) 0px,
        var(--tsa-violet) 5px,
        transparent 5px,
        transparent 10px
    ),
    repeating-linear-gradient(
        90deg,
        var(--tsa-violet) 0px,
        var(--tsa-violet) 5px,
        transparent 5px,
        transparent 10px
    );
    margin-bottom: 0.25rem;
}

.qr-placeholder span {
    font-size: 0.5rem;
    color: var(--tsa-violet);
    font-weight: 700;
}

.qr-code p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--tsa-white);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Responsive Styles ===== */
@media (min-width: 640px) {
    .service-cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .content-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .reels-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .episodes-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .proof-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .cta-button {
        display: inline-block;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        padding-top: 6rem;
    }

    .hero-phones {
        display: block;
    }

    .transform-section .section-content.split {
        grid-template-columns: 1fr 1fr;
    }

    .why-section .section-content.split-reverse {
        grid-template-columns: 1fr 1fr;
    }

    .reels-content {
        grid-template-columns: 1fr 1fr;
    }

    .featured-episode {
        grid-template-columns: 1fr 1fr;
    }

    .featured-image img {
        height: 100%;
    }

    .cta-banner {
        padding: 2.5rem 1.5rem;
    }

    .banner-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .section-content {
        padding: 4rem 3rem;
    }

    .content-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .phone-a {
        width: 180px;
        left: 0;
    }

    .phone-b {
        width: 200px;
        left: 140px;
    }

    .phone-c {
        width: 180px;
        left: 280px;
    }

    .hero-phones {
        height: 500px;
    }

    .podcast-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2rem;
    }
}

/* ===== Scroll Reveal Animation Classes ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
