@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&family=Space+Grotesk:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;600;800&family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://img1.wsimg.com/blobby/go/font/LeagueSpartan/league-spartan.css');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    color: #f7f7f7;
    background-color: #161616;
    overflow-x: hidden;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-inner {
    background-color: #161616;
    min-height: 100vh;
}

/* ===== HEADER / NAV ===== */
.header {
    position: relative;
    background-color: #161616;
}

.header-body {
    background-color: #161616;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.header-col-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.header-col-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-col-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-text {
    font-family: 'League Spartan', arial, helvetica, sans-serif;
    font-size: 24px;
    color: #f7f7f7;
    font-weight: 700;
    letter-spacing: 0.063em;
    text-decoration: none;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #f7f7f7;
    cursor: pointer;
    padding: 6px;
}

.hamburger svg {
    width: 40px;
    height: 40px;
}

/* Desktop Nav */
.header-nav {
    display: flex;
    align-items: center;
}

.header-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav .nav-list > li {
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.header-nav .nav-list > li > a {
    display: block;
    padding: 8px 16px;
    color: #f7f7f7;
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    letter-spacing: 0.063em;
    line-height: 1.5em;
    transition: color 0.3s;
    font-weight: 400;
    text-decoration: none;
}

.header-nav .nav-list > li > a:hover,
.header-nav .nav-list > li > a.active {
    color: #ffffff;
}

.header-nav .nav-list > li > a.active {
    border-bottom: 1px solid #f7f7f7;
    padding-bottom: 4px;
    margin-bottom: -5px;
}

/* Header Phone */
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.header-phone svg {
    width: 18px;
    height: 18px;
    fill: #a4a4a4;
    flex-shrink: 0;
}

.header-phone a {
    color: #f7f7f7;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.header-phone a:hover {
    color: #ffffff;
}

/* Header CTA */
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 6px 24px;
    background-color: #ffffff;
    color: #303030;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 13px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.header-cta:hover {
    background-color: #333;
    color: #ffffff;
}

@media (min-width: 1024px) {
    .hamburger {
        display: none !important;
    }
    .header-nav {
        display: flex !important;
    }
    .header-phone {
        display: flex !important;
    }
    .header-cta {
        display: inline-flex !important;
    }
}

@media (max-width: 1023px) {
    .header-nav {
        display: none !important;
    }
    .header-phone {
        display: none !important;
    }
    .header-cta {
        display: none !important;
    }
    .hamburger {
        display: flex !important;
    }
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 8px 32px;
    background-color: #ffffff;
    color: #303030;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-shadow: none;
    box-shadow: 0 3px 6px 3px rgba(0,0,0,0.24);
    transition: all 0.3s;
}

.cta-btn:hover {
    background-color: #ffffff;
    box-shadow: inset 0 0 0 2px;
    color: #ffffff;
    background-color: transparent;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    background-color: #161616;
    transform: translateX(-249vw);
    transition: transform 0.3s ease-in-out;
    overscroll-behavior: contain;
    box-shadow: 0 2px 6px 0px rgba(0,0,0,0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    padding: 24px;
}

.close-btn {
    background: none;
    border: none;
    color: #f7f7f7;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

.close-btn svg {
    width: 40px;
    height: 40px;
}

.mobile-nav-list {
    padding: 0 24px;
    overflow-x: hidden;
    overscroll-behavior: none;
    flex: 1;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(76, 76, 76, 0.5);
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: #f7f7f7;
    font-family: 'Quicksand', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3em;
}

.mobile-nav-list li a:hover {
    color: rgb(198, 198, 198);
}

.mobile-nav-list li a.active {
    font-weight: 700;
}

.mobile-cta {
    padding: 24px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 500px;
    padding: 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 16px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 800px;
}

.hero-title .outline {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #ffffff;
}

.hero-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 600px;
    margin-bottom: 32px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta:hover {
    background: #ffffff;
    color: #161616;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 80px 24px;
    background-color: #ffffff;
    color: #000000;
}

.section-dark {
    background-color: #161616;
    color: #ffffff;
}

.section-padding {
    padding: 80px 24px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 62px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a4a4a4;
    margin-bottom: 16px;
}

.section-desc {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #a4a4a4;
    max-width: 800px;
}

.text-white {
    color: #ffffff;
}

.text-dark {
    color: #161616;
}

.text-gray {
    color: #a4a4a4;
}

/* ===== PIONEER SECTION ===== */
.pioneer-section {
    background-color: #ffffff;
    padding: 80px 24px;
}

.pioneer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pioneer-image {
    flex: 1;
    min-width: 300px;
}

.pioneer-image img {
    width: 100%;
    border-radius: 8px;
}

.pioneer-content {
    flex: 1;
    min-width: 300px;
}

.pioneer-content .section-label {
    color: #999;
}

.pioneer-content .section-title {
    color: #161616;
}

.pioneer-content .section-desc {
    color: #666;
}

/* ===== ANALYTICS DASHBOARD ===== */
.analytics-section {
    background-color: #ffffff;
    padding: 80px 24px;
}

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

.analytics-header {
    text-align: center;
    margin-bottom: 48px;
}

.analytics-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #161616;
}

.analytics-header p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #666;
    margin-top: 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.stat-card {
    background: #f8f8f8;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.stat-card .stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #161616;
}

.stat-card .stat-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.stat-card .stat-platform {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: 8px;
}

.analytics-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.chart-container {
    background: #f8f8f8;
    padding: 24px;
    border-radius: 12px;
}

.chart-container h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    color: #161616;
    margin-bottom: 16px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 200px;
    padding-top: 20px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #4f46e5, #818cf8);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    position: relative;
    transition: height 0.5s ease;
}

.chart-bar .bar-value {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    color: #666;
    white-space: nowrap;
}

.chart-bar .bar-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    color: #666;
}

.performance-index {
    background: #f8f8f8;
    padding: 24px;
    border-radius: 12px;
}

.performance-index h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    color: #161616;
    margin-bottom: 16px;
}

.perf-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.perf-item:last-child {
    border-bottom: none;
}

.perf-item .perf-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #666;
}

.perf-item .perf-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #161616;
}

/* ===== BRAND EFFECT SECTION ===== */
.brand-effect {
    background-color: #161616;
    padding: 80px 24px;
    color: #ffffff;
}

.brand-effect .container {
    max-width: 1200px;
    margin: 0 auto;
}

.brand-effect h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 62px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.brand-quote {
    font-family: 'League Spartan', arial, helvetica, sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    text-align: center;
    color: #ffffff;
    margin-bottom: 32px;
    font-style: italic;
}

.brand-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #a4a4a4;
    max-width: 800px;
    margin: 0 auto 24px;
    text-align: center;
}

.brand-metric {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 48px;
}

.brand-metric span {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #a4a4a4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.brand-card {
    background: rgba(255,255,255,0.05);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.brand-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.brand-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #a4a4a4;
}

/* ===== VIDEO PLAYER ===== */
.video-player-section {
    background-color: #000000;
    padding: 40px 24px;
    position: relative;
}

.video-player-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.video-player-container iframe,
#youtube-player {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 12px;
}

.video-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.video-btn {
    padding: 10px 24px;
    background: #ffffff;
    color: #161616;
    border: none;
    border-radius: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.video-btn:hover {
    background: #333;
    color: #ffffff;
}

/* ===== SERVICES PAGE ===== */
.services-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #161616;
    text-align: center;
    padding: 80px 24px;
}

.services-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.services-hero .tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #a4a4a4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.services-hero .booking-email {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin-top: 16px;
}

.services-hero .booking-email a {
    color: #ffffff;
    text-decoration: underline;
}

.services-grid-section {
    background-color: #ffffff;
    padding: 80px 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-card .badge {
    display: inline-block;
    padding: 4px 12px;
    background: #161616;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #161616;
    margin-bottom: 12px;
}

.service-card p {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    background-color: #ffffff;
    padding: 80px 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: #161616;
    margin-bottom: 16px;
}

.contact-info p {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

.contact-email {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    color: #161616;
    margin-bottom: 32px;
}

.contact-email a {
    color: #161616;
    text-decoration: underline;
}

.rate-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #161616;
    color: #ffffff;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rate-card-btn:hover {
    background: #333;
}

.ratecard-section .rate-card-btn {
    background: #ffffff;
    color: #161616;
}

.ratecard-section .rate-card-btn:hover {
    background: #e0e0e0;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.social-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f8f8;
    border-radius: 8px;
    color: #161616;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.social-link-card:hover {
    background: #e0e0e0;
}

.social-link-card .social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Form */
.contact-form-wrapper {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
}

.contact-form-wrapper h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    color: #161616;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    color: #333;
    background: #ffffff;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #161616;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #161616;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #333;
}

.form-message {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #161616;
    text-align: center;
    padding: 80px 24px;
}

.about-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.about-hero p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #a4a4a4;
    max-width: 600px;
    line-height: 1.6;
}

.about-content {
    background-color: #ffffff;
    padding: 80px 24px;
    color: #161616;
}

.about-content .container {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* ===== INSIGHTS PAGE ===== */
.insights-page {
    background-color: #ffffff;
    min-height: 100vh;
    padding: 80px 24px;
}

/* ===== GALLERY PAGE ===== */
.gallery-page {
    background-color: #ffffff;
    padding: 80px 24px;
    min-height: 100vh;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    background: #f0f0f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* ===== FOOTER ===== */
.footer {
    background-color: #161616;
    padding: 40px 24px;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-social a {
    color: #a4a4a4;
    font-size: 24px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #ffffff;
}

.footer-name {
    font-family: 'League Spartan', arial, helvetica, sans-serif;
    font-size: 18px;
    color: #a4a4a4;
    margin-bottom: 8px;
    letter-spacing: 0.063em;
}

.footer-copy {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    color: #a4a4a4;
}

/* ===== COOKIES ===== */
.cookie-consent {
    position: fixed;
    bottom: -500px;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgb(241, 241, 241);
    box-shadow: 0 2px 6px 0px rgba(0,0,0,0.3);
    contain: content;
    transition: all 1s ease-in;
    padding: 24px;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    color: #111;
    flex: 1;
    min-width: 250px;
}

.cookie-accept {
    padding: 10px 24px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-accept:hover {
    background: #333;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1024px) {
    .hero-content {
        padding: 80px 48px;
    }
}

@media (max-width: 1023px) {
    .mobile-nav-overlay {
        display: flex;
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding: 32px 16px;
        min-height: 400px;
    }
    .hero-title {
        font-size: 36px;
    }
    .section {
        padding: 60px 16px;
    }
    .analytics-bottom {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .pioneer-grid {
        flex-direction: column;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Page specific */
.page-title-area {
    background-color: #161616;
    padding: 120px 24px 60px;
    text-align: center;
}

.page-title-area h1 {
    font-family: 'League Spartan', arial, helvetica, sans-serif;
    font-size: clamp(36px, 5vw, 62px);
    color: #ffffff;
    font-weight: 700;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #161616;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.is-loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-ball {
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    margin: 0 auto 12px;
    animation: preloaderBounce 0.8s ease-in-out infinite;
}

.preloader-shadow {
    width: 30px;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    margin: -6px auto 24px;
    animation: preloaderShadow 0.8s ease-in-out infinite;
}

.preloader-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    color: #a4a4a4;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@keyframes preloaderBounce {
    0%, 100% { transform: translateY(0) scale(1, 1); }
    50% { transform: translateY(-24px) scale(1, 0.8); }
}

@keyframes preloaderShadow {
    0%, 100% { transform: scale(1, 1); opacity: 0.15; }
    50% { transform: scale(0.4, 1); opacity: 0.4; }
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot,
.cursor-ring {
    pointer-events: none;
    position: fixed;
    z-index: 99999;
    transform: translate(-50%, -50%);
    display: none;
}

body.custom-cursor .cursor-dot,
body.custom-cursor .cursor-ring {
    display: block;
}

body.custom-cursor {
    cursor: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    transition: opacity 0.15s;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.3s,
                background 0.3s;
}

.cursor-ring.hover {
    width: 56px;
    height: 56px;
    border-color: #ffffff;
    background: rgba(255,255,255,0.08);
}

/* ===== ENHANCED DYNAMIC HOVER EFFECTS ===== */
.header-cta,
.cta-btn,
.hero-cta,
.submit-btn,
.rate-card-btn,
.video-btn,
.cookie-accept {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.3s ease,
                color 0.3s ease !important;
    will-change: transform;
}

.header-cta:hover,
.cta-btn:hover,
.hero-cta:hover,
.submit-btn:hover,
.rate-card-btn:hover,
.video-btn:hover,
.cookie-accept:hover {
    transform: translateY(-2px);
}

.header-cta:hover,
.hero-cta:hover,
.submit-btn:hover,
.video-btn:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

.cookie-accept:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cursor-ring-active a:not(.no-cursor):hover,
.cursor-ring-active button:not(.no-cursor):hover {
    cursor: none;
}

/* ===== INSTAGRAM FEED ===== */
.insta-feed-section {
    background: #000000;
    padding: 60px 0;
    overflow: hidden;
}

.insta-feed-header {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 0 24px;
}

.insta-feed-header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.insta-feed-header-inner svg {
    color: #ffffff;
}

.insta-feed-header-inner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.insta-follow-btn {
    margin-left: auto;
    padding: 8px 20px;
    background: #ffffff;
    color: #000000;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.insta-follow-btn:hover {
    background: #a4a4a4;
    transform: translateY(-1px);
}

.insta-handle {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    color: #a4a4a4;
    margin-top: 4px;
}

.insta-carousel-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.insta-carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: instaScroll 40s linear infinite;
}

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

.insta-card {
    width: 280px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #111;
    transition: transform 0.3s;
}

.insta-card:hover {
    transform: scale(1.03);
}

.insta-card img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    display: block;
}

.insta-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.insta-card-overlay svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

.insta-card-overlay span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

@keyframes instaScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 767px) {
    .insta-card {
        width: 200px;
    }
    .insta-card img {
        height: 230px;
    }
    .insta-carousel-track {
        gap: 10px;
        animation-duration: 25s;
    }
}

/* ===== RATE CARD ===== */
.ratecard-section {
    padding: 80px 24px;
    background: #161616;
    max-width: 1200px;
    margin: 0 auto;
}

.ratecard-header {
    text-align: center;
    margin-bottom: 48px;
}

.ratecard-header h2 {
    font-family: 'League Spartan', arial, helvetica, sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    color: #f7f7f7;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.ratecard-subtitle {
    color: #a4a4a4;
    font-size: 16px;
    font-family: 'Quicksand', sans-serif;
}

.ratecard-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.ratecard-platforms h3,
.ratecard-ambassador h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    color: #f7f7f7;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.ratecard-table {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.ratecard-row {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    align-items: center;
    transition: background 0.3s;
}

.ratecard-row:last-child {
    border-bottom: none;
}

.ratecard-row-header {
    background: rgba(255,255,255,0.05);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a4a4a4;
}

.ratecard-row:hover {
    background: rgba(255,255,255,0.03);
}

.ratecard-row-highlight {
    background: rgba(255,255,255,0.06);
    font-weight: 700;
}

.ratecard-row-highlight .ratecard-price {
    color: #ffffff;
}

.ratecard-platform {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    color: #f7f7f7;
}

.ratecard-platform svg {
    width: 18px;
    height: 18px;
    color: #a4a4a4;
    flex-shrink: 0;
}

.ratecard-price {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #f7f7f7;
}

.ratecard-note {
    color: #a4a4a4;
    font-size: 13px;
    margin-top: 16px;
    font-style: italic;
}

.ratecard-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.ratecard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ratecard-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.8) 100%);
    color: #ffffff;
    font-family: 'League Spartan', arial, helvetica, sans-serif;
    font-size: 20px;
    letter-spacing: 0.05em;
}

.ratecard-ambassador {
    margin-bottom: 48px;
}

.ratecard-ambassador .ratecard-row {
    grid-template-columns: 1fr auto auto;
}

.ratecard-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .ratecard-layout {
        grid-template-columns: 1fr;
    }
    .ratecard-image {
        min-height: 300px;
        order: -1;
    }
    .ratecard-ambassador .ratecard-row {
        grid-template-columns: 1fr auto auto;
        font-size: 14px;
    }
    .ratecard-row {
        padding: 12px 16px;
    }
}
