/* ============================================
   FPP CREATIVE DESIGN SYSTEM
   Shared styles for all pages (except home)
   ============================================ */

:root {
    /* Core Colors */
    --ink: #141933;
    --slate: #3D4F6F;
    --ivory: #FFFFFF;
    --pearl: #F1F4FB;
    --accent: #0E5BE0;
    
    /* Creative Palette */
    --coral: #FF6B6B;
    --teal: #2DD4BF;
    --amber: #F59E0B;
    --purple: #8B5CF6;
    --mint: #10B981;
    
    /* Header Required Variables */
    --color-primary: #141933;
    --color-primary-light: #2d2d44;
    --color-accent: #0E5BE0;
    --color-accent-hover: #0A4FC4;
    --color-text: #141933;
    --color-text-light: #3D4F6F;
    --color-text-muted: #8a8a9a;
    --color-background: #ffffff;
    --color-background-alt: #f8f9fa;
    --color-background-dark: #141933;
    --color-border: #e5e7eb;
    --color-border-light: #f0f1f3;
    
    /* Spacing */
    --space-xs: 0.3rem;
    --space-sm: 0.5rem;
    --space-md: 1.15rem;
    --space-lg: 1.5rem;
    --space-xl: 1.75rem;
    --space-2xl: 2.25rem;
    --space-3xl: 3rem;
    
    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    
    /* Borders & Transitions */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ============================================
   BASE STYLES
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--ivory);
    color: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
h1, h2, h3 { font-family: 'Poppins', sans-serif; font-weight: 600; }
.nav-text { display: block; line-height: 1.2; min-width: 130px; }

/* ============================================
   NAVIGATION OVERRIDE (Dark Hero)
   ============================================ */
.site-header { background: rgba(20, 25, 51, 0.95) !important; backdrop-filter: blur(10px); }
.site-header .logo-img { filter: brightness(0) invert(1); }
.site-header .nav-menu .nav-link,
.site-header .nav-menu .nav-dropdown-trigger { color: rgba(255,255,255,0.9) !important; background-color: transparent !important; }
.site-header .nav-menu .nav-link:hover,
.site-header .nav-menu .nav-dropdown-trigger:hover { color: #fff !important; background-color: rgba(255,255,255,0.15) !important; }
.site-header .hamburger,
.site-header .hamburger::before,
.site-header .hamburger::after { background-color: #fff !important; }
.site-header .nav-dropdown-menu { background: #fff !important; }
.site-header .nav-dropdown-menu .nav-dropdown-link-title { color: #141933 !important; }
.site-header .nav-dropdown-menu .nav-dropdown-link-desc { color: #5a5a6e !important; }
.site-header.scrolled { background: rgba(255,255,255,0.98) !important; }
.site-header.scrolled .logo-img { filter: none; }
.site-header.scrolled .nav-menu .nav-link,
.site-header.scrolled .nav-menu .nav-dropdown-trigger { color: var(--ink) !important; }
.site-header.scrolled .hamburger,
.site-header.scrolled .hamburger::before,
.site-header.scrolled .hamburger::after { background-color: var(--ink) !important; }

/* ============================================
   HERO - With diagonal bottom
   ============================================ */
.creative-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
    box-sizing: border-box;
}
.creative-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.creative-hero-bg img,
.creative-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.creative-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 25, 51, 0.85) 0%, rgba(14, 91, 224, 0.7) 100%);
}
.creative-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 8rem 10rem;
    max-width: 900px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--coral);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}
.hero-badge.teal { background: var(--teal); }
.hero-badge.amber { background: var(--amber); color: var(--ink); }
.hero-badge.purple { background: var(--purple); }
.creative-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.5rem;
}
.creative-hero h1 span.gradient {
    background: linear-gradient(90deg, var(--teal), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.creative-hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 650px;
}
.creative-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--coral) 0%, #ff8a80 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.creative-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}
.creative-hero-cta.teal {
    background: linear-gradient(135deg, var(--teal) 0%, #34D399 100%);
}
.creative-hero-cta.teal:hover {
    box-shadow: 0 15px 40px rgba(45, 212, 191, 0.4);
}
.creative-hero-cta svg { width: 18px; height: 18px; }

/* Diagonal divider */
.creative-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--ivory);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 2;
}

/* ============================================
   STATS - Floating circles
   ============================================ */
.stats-circles {
    padding: 0.5rem 2rem 3rem;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
}
.stats-circles-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.stat-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s ease;
    color: white;
}
.stat-circle:hover { transform: scale(1.1) rotate(5deg); }
.stat-circle.blue { background: linear-gradient(135deg, var(--accent) 0%, #3B82F6 100%); }
.stat-circle.teal { background: linear-gradient(135deg, var(--teal) 0%, #34D399 100%); }
.stat-circle.amber { background: linear-gradient(135deg, var(--amber) 0%, #FBBF24 100%); color: var(--ink); }
.stat-circle.purple { background: linear-gradient(135deg, var(--purple) 0%, #A78BFA 100%); }
.stat-circle.coral { background: linear-gradient(135deg, var(--coral) 0%, #ff8a80 100%); }
.stat-circle .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}
.stat-circle .stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* ============================================
   CONTENT CARD - Rounded with rainbow top
   ============================================ */
.content-card-section {
    padding: 3rem 2rem 6rem;
    background: linear-gradient(180deg, var(--ivory) 0%, var(--pearl) 100%);
}
.content-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 40px;
    padding: 4rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}
.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--coral), var(--amber), var(--teal));
}
.content-card-label {
    display: inline-block;
    background: var(--coral);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
.content-card-label.teal { background: var(--teal); }
.content-card-label.amber { background: var(--amber); color: var(--ink); }
.content-card-label.purple { background: var(--purple); }
.content-card h2 {
    font-size: 2.2rem;
    color: var(--ink);
    margin-bottom: 1.5rem;
}
.content-card p {
    font-size: 1.1rem;
    color: var(--slate);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Pills list */
.pills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}
.pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pearl);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 500;
}
.pill::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
}
.pill.coral::before { background: var(--coral); }
.pill.amber::before { background: var(--amber); }
.pill.purple::before { background: var(--purple); }

/* ============================================
   DIAGONAL SECTION - Dark with clip-path
   ============================================ */
.diagonal-section {
    padding: 8rem 2rem;
    background: var(--ink);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: -3rem 0;
    position: relative;
    z-index: 1;
}
.diagonal-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}
.diagonal-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.diagonal-section .section-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}
.diagonal-section .section-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

/* ============================================
   COLOR-CODED CARDS
   ============================================ */
.color-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    overflow: hidden;
}
.color-cards-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}
.color-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.color-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}
.color-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
}
.color-card.coral::before { background: var(--coral); }
.color-card.teal::before { background: var(--teal); }
.color-card.amber::before { background: var(--amber); }
.color-card.purple::before { background: var(--purple); }
.color-card.blue::before { background: var(--accent); }
.color-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}
.color-card.coral .color-card-icon { background: var(--coral); }
.color-card.teal .color-card-icon { background: var(--teal); }
.color-card.amber .color-card-icon { background: var(--amber); color: var(--ink); }
.color-card.purple .color-card-icon { background: var(--purple); }
.color-card.blue .color-card-icon { background: var(--accent); }
.color-card h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.color-card p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================
   FEATURE CARDS - Light background
   ============================================ */
.feature-section {
    padding: 6rem 2rem;
    background: var(--ivory);
}
.feature-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.feature-section .section-header {
    margin-bottom: 3rem;
}
.feature-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--ink);
    margin-bottom: 1rem;
}
.feature-section .section-header h2 span { color: var(--accent); }
.feature-section .section-header p {
    font-size: 1.15rem;
    color: var(--slate);
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature-card {
    padding: 2rem;
    background: var(--pearl);
    border-radius: 20px;
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}
.feature-card:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.feature-card:nth-child(1) { border-left-color: var(--coral); }
.feature-card:nth-child(2) { border-left-color: var(--teal); }
.feature-card:nth-child(3) { border-left-color: var(--amber); }
.feature-card:nth-child(4) { border-left-color: var(--purple); }
.feature-card:nth-child(5) { border-left-color: var(--accent); }
.feature-card:nth-child(6) { border-left-color: var(--mint); }
.feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}
.feature-card:nth-child(1) .feature-card-icon { background: linear-gradient(135deg, var(--coral), #ff8a80); }
.feature-card:nth-child(2) .feature-card-icon { background: linear-gradient(135deg, var(--teal), #34D399); }
.feature-card:nth-child(3) .feature-card-icon { background: linear-gradient(135deg, var(--amber), #FBBF24); }
.feature-card:nth-child(4) .feature-card-icon { background: linear-gradient(135deg, var(--purple), #A78BFA); }
.feature-card:nth-child(5) .feature-card-icon { background: linear-gradient(135deg, var(--accent), #3B82F6); }
.feature-card:nth-child(6) .feature-card-icon { background: linear-gradient(135deg, var(--mint), #34D399); }
.feature-card h3 {
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 0.75rem;
}
.feature-card p {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.7;
}

/* ============================================
   LOCATION CARDS - Grid with hover
   ============================================ */
.locations-section {
    padding: 6rem 2rem;
    background: var(--pearl);
}
.locations-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.location-card {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    transition: all 0.4s ease;
    border-top: 4px solid var(--accent);
}
.location-card:nth-child(2) { border-top-color: var(--teal); }
.location-card:nth-child(3) { border-top-color: var(--coral); }
.location-card:nth-child(4) { border-top-color: var(--amber); }
.location-card:nth-child(5) { border-top-color: var(--purple); }
.location-card:nth-child(6) { border-top-color: var(--mint); }
.location-card:nth-child(7) { border-top-color: var(--coral); }
.location-card:nth-child(8) { border-top-color: var(--teal); }
.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.location-card h3 {
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}
.location-card p {
    font-size: 0.9rem;
    color: var(--slate);
}

/* ============================================
   TESTIMONIAL - Gradient background
   ============================================ */
.testimonial-section {
    background: linear-gradient(135deg, #141933 0%, #1e2a4a 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}
.testimonial-section::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 4rem;
    font-size: 12rem;
    font-family: Georgia, serif;
    color: rgba(255,255,255,0.05);
    line-height: 1;
}
.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}
.testimonial-quote {
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    font-style: italic;
    margin-bottom: 2rem;
}
.testimonial-author {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}
.testimonial-author strong { color: white; }

/* ============================================
   CTA - Gradient wave
   ============================================ */
.creative-cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--ink) 0%, #1e3a5f 50%, var(--accent) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.creative-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--pearl);
    clip-path: ellipse(70% 100% at 50% 0%);
}
.creative-cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.creative-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}
.creative-cta h2 span {
    background: linear-gradient(90deg, var(--coral), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.creative-cta p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
}
.creative-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--ink);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.creative-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.creative-cta-button svg { width: 18px; height: 18px; }

/* ============================================
   IMAGE CAROUSEL
   ============================================ */
.image-carousel {
    padding: 0;
    overflow: hidden;
    background: var(--ivory);
}
.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}
.carousel-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.carousel-item {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   DARK FOOTER
   ============================================ */
.site-footer-dark {
    background: var(--ink);
    padding: 4rem 8rem;
}
.site-footer-dark .footer-tagline {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.site-footer-dark .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}
.site-footer-dark .footer-links { display: flex; gap: 3rem; }
.site-footer-dark .footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-footer-dark .footer-links a:hover { color: #fff; }
.site-footer-dark .footer-social { display: flex; gap: 1rem; align-items: center; }
.site-footer-dark .footer-social a { color: rgba(255,255,255,0.8); transition: opacity 0.3s ease; }
.site-footer-dark .footer-social a:hover { opacity: 0.7; }
.site-footer-dark .footer-social svg { width: 24px; height: 24px; }
.site-footer-dark .footer-social .tsw-link { display: flex; align-items: center; }
.site-footer-dark .footer-social .tsw-link img { vertical-align: middle; display: block; position: relative; top: -3px; }
.site-footer-dark .footer-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .creative-hero-content { padding: 0 4rem 8rem; }
    .color-cards-grid, .color-cards-grid.three-col { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer-dark { padding: 4rem 3rem; }
    .site-footer-dark .footer-tagline { font-size: 1.75rem; }
    .site-footer-dark .footer-content { flex-direction: column; text-align: center; }
}

@media (max-width: 1024px) {
    .stats-circles-container { gap: 1.5rem; }
    .stat-circle { width: 140px; height: 140px; }
    .stat-circle .stat-number { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .creative-hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
    .creative-hero-content { padding: 0 2rem 2rem; }
    .creative-hero h1 { font-size: 2.2rem; line-height: 1.1; }
    .creative-hero::before { height: 60px; }
    .color-cards-grid, .color-cards-grid.three-col { grid-template-columns: 1fr !important; }
    .stat-circle { width: 120px; height: 120px; }
    .stat-circle .stat-number { font-size: 1.6rem; }
    .content-card { padding: 2.5rem; border-radius: 24px; }
    .diagonal-section { clip-path: none; margin: 0; padding: 6rem 2rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .testimonial-section { padding: 4rem 1.5rem; }
    .testimonial-quote { font-size: 1.1rem; }
    .testimonial-section::before { font-size: 6rem; left: 1rem; }
    .carousel-item { width: 200px; height: 133px; }
    .site-footer-dark { padding: 3rem 2rem; }
    .site-footer-dark .footer-tagline { font-size: 1.25rem; margin-bottom: 1.5rem; }
    .site-footer-dark .footer-links { flex-direction: column; gap: 1rem; }
}

@media (max-width: 600px) {
    .creative-hero { padding-top: 90px; padding-bottom: 50px; }
    .creative-hero-content { padding: 0 1.5rem 1.5rem; }
    .creative-hero h1 { font-size: 1.8rem; line-height: 1.08; }
    .stats-circles-container { gap: 1rem; }
    .stat-circle { width: 100px; height: 100px; }
    .stat-circle .stat-number { font-size: 1.4rem; }
    .stat-circle .stat-label { font-size: 0.6rem; }
    .pills-list { flex-direction: column; }
    .creative-cta h2 { font-size: 2rem; }
}

/* ============================================
   FLOATING CTA BUTTON
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #0E5BE0 0%, #3B82F6 100%);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(14, 91, 224, 0.4);
    transition: all 0.3s ease;
}

.floating-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(14, 91, 224, 0.5);
}

.floating-cta svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .floating-cta a {
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* ─── Video Section ─────────────────────────────────────── */
.video-section {
    padding: 5rem 2rem;
    background: #f5f8fa;
}

.video-section-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-section {
        padding: 3rem 1.25rem;
    }
}
