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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}
html {
    scroll-padding-top: 110px; /* Offsets anchor links so they don't hide behind the header */
}

/* Animated gradient background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 25%, #1a0a1f 50%, #0a0a1a 75%, #000 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating accent elements */
.accent-circle {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.accent-1 {
    width: 400px;
    height: 400px;
    background: #fe2c55;
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.accent-2 {
    width: 300px;
    height: 300px;
    background: #25f4ee;
    bottom: -50px;
    left: -50px;
    animation: float 15s ease-in-out infinite reverse;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    cursor: pointer;
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.logo-canvas {
    height: 100%;
    display: block;
}

.logo-gradient-layer {
    display: none;
}

.logo-shine-layer {
    display: none;
}

.logo-container {
    position: relative;
    display: inline-block;
    isolation: isolate; /* Force stacking context for Safari */
}

.logo-trace {
    position: absolute;
    top: -8px;
    left: -6px;
    width: calc(100% + 30px);
    height: calc(100% + 16px);
    pointer-events: none;
    overflow: visible;
    z-index: 1;
}

.logo-trace path {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

/* Hide stacked trace on desktop */
.logo-trace-stacked {
    display: none;
}

.trace-line {
    stroke: url(#traceGradient);
    opacity: 0;
    stroke-dasharray: 0 650;
    stroke-dashoffset: 0;
}

.trace-line-stacked {
    stroke: url(#traceGradientStacked);
}

.trace-line.animate {
    opacity: 1;
    animation:
        traceDash 4s linear forwards,
        traceFade 4s ease-out forwards;
}

/* Using pathLength="650" for easy calculations - smooth continuous motion */
@keyframes traceDash {
    0% {
        stroke-dasharray: 0 650;
        stroke-dashoffset: 0;
    }
    10% {
        stroke-dasharray: 80 650;
        stroke-dashoffset: 0;
    }
    25% {
        stroke-dasharray: 160 650;
        stroke-dashoffset: -80;
    }
    50% {
        stroke-dasharray: 160 650;
        stroke-dashoffset: -325;
    }
    75% {
        stroke-dasharray: 120 650;
        stroke-dashoffset: -530;
    }
    90% {
        stroke-dasharray: 40 650;
        stroke-dashoffset: -610;
    }
    100% {
        stroke-dasharray: 0 650;
        stroke-dashoffset: -650;
    }
}

@keyframes traceFade {
    0% { opacity: 0; }
    3% { opacity: 1; }
    100% { opacity: 1; }
}

/* Old text-based ::after shine removed — now using .logo-shine-layer */

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #fe2c55;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
    transition: width 0.3s ease;
}

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

.cta-button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #fe2c55, #ff6b9d);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(254, 44, 85, 0.4);
}

/* New CTA Group Styles */
.cta-group {
    text-align: center;
    margin: 2rem 0;
}

.cta-primary {
    display: inline-block;
    background: #fe2c55; /* Adjusted to match brand color */
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(254, 44, 85, 0.4);
}

.cta-secondary {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #888;
}

.cta-secondary a {
    color: #aaa;
    text-decoration: underline;
}

/* AI Teaser Styles */
.ai-teaser {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.03); /* Matched to site style */
    border-top: 2px solid rgba(255,255,255,0.1);
}

.ai-teaser h2 {
    margin-bottom: 1rem;
}

.ai-teaser p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: #ccc;
    line-height: 1.6;
}

.cta-group h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 24px;
}

.cta-secondary-link {
    color: #fe2c55; /* Matched to brand color */
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.cta-secondary-link:hover {
    text-decoration: underline;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 102;
    background: none;  /* Added for button element */
    border: none;       /* Added for button element */
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fe2c55;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;  /* Added */
}

/* Hero Section */
.hero {
    padding: 70px 0 50px;
    text-align: center;
}

.hero h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-line-1 {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
}

.hero-line-2 {
    font-size: 0.6em;
    margin-top: 15px;
}

.gradient-text {
    background: linear-gradient(135deg, #fe2c55, #25f4ee, #fe2c55);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    display: inline;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero p {
    font-size: 20px;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Video mockup section */
.video-showcase {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #333;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    opacity: 0.3;
}

.phone-screen video,
.phone-screen iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

/* Social media overlays */
.social-overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    pointer-events: none;
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-overlay.slide-out {
    transform: translateX(-100%);
}

.social-overlay.slide-in {
    transform: translateX(100%);
    visibility: hidden;
}

.social-overlay.slide-out {
    visibility: visible;
}

.social-overlay.active {
    visibility: visible;
}

.social-overlay.active {
    transform: translateX(0);
}

/* TikTok overlay */
.tiktok-overlay .social-top {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
}

.tiktok-overlay .social-top span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}

.tiktok-overlay .social-top span.active-tab {
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
}

.tiktok-overlay .social-right {
    position: absolute;
    right: 12px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.tiktok-overlay .social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.tiktok-overlay .social-icon .icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.tiktok-overlay .social-icon span {
    font-size: 11px;
    color: #fff;
}

.tiktok-overlay .social-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tiktok-overlay .username {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.tiktok-overlay .caption {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
}

.tiktok-overlay .music-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #fff;
}

.tiktok-overlay .tiktok-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px 0 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 10px;
}

.tiktok-overlay .tiktok-nav span {
    font-size: 20px;
}

/* Instagram overlay */
.instagram-overlay .social-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
}

.instagram-overlay .ig-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.instagram-overlay .ig-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 2px;
}

.instagram-overlay .ig-avatar-inner {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.instagram-overlay .ig-username {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.instagram-overlay .ig-follow {
    font-size: 12px;
    color: #fff;
    background: #0095f6;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 600;
}

.instagram-overlay .social-right {
    position: absolute;
    right: 12px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.instagram-overlay .ig-icon {
    font-size: 24px;
    color: #fff;
}

.instagram-overlay .social-bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.instagram-overlay .ig-caption {
    font-size: 13px;
    color: #fff;
}

.instagram-overlay .ig-caption strong {
    font-weight: 700;
}

.instagram-overlay .ig-music {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

/* Facebook overlay */
.facebook-overlay .social-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
}

.facebook-overlay .fb-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.facebook-overlay .fb-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1877f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.facebook-overlay .fb-info {
    display: flex;
    flex-direction: column;
}

.facebook-overlay .fb-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.facebook-overlay .fb-meta {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

.facebook-overlay .fb-follow {
    font-size: 13px;
    color: #1877f2;
    font-weight: 600;
}

.facebook-overlay .social-right {
    position: absolute;
    right: 12px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.facebook-overlay .fb-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.facebook-overlay .fb-action-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.facebook-overlay .fb-action span {
    font-size: 12px;
    color: #fff;
}

.facebook-overlay .social-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.facebook-overlay .fb-caption {
    font-size: 13px;
    color: #fff;
    line-height: 1.4;
}

.facebook-overlay .fb-reactions {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.facebook-overlay .fb-reactions .emoji-stack {
    display: flex;
}

.facebook-overlay .fb-reactions .emoji-stack span {
    margin-left: -4px;
}

.facebook-overlay .fb-reactions .emoji-stack span:first-child {
    margin-left: 0;
}

/* Headshot */
.headshot-container {
    text-align: center;
    margin-bottom: 30px;
}

.headshot {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    border: 3px solid transparent;
    background: linear-gradient(#000, #000) padding-box,
                linear-gradient(135deg, #fe2c55, #25f4ee) border-box;
    box-shadow: 0 10px 40px rgba(254, 44, 85, 0.3);
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 60px 0;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-item p {
    color: #999;
    font-size: 16px;
}

/* Content sections */
.content-section {
    padding: 70px 0;
    border-top: 1px solid #222;
}

.content-section h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    max-width: 800px;
}

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

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 20px 0;
    border-bottom: 1px solid #222;
    font-size: 18px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list li:before {
    content: "";
    width: 12px;
    height: 12px;
    min-width: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    display: inline-block;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* FORCED 2x2 GRID for 4 items */
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fe2c55;
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fe2c55;
}

.service-card p {
    color: #999;
    line-height: 1.6;
}

/* Service Areas Redesign */
#areas {
    padding: 70px 0;
    border-top: 1px solid #222;
    text-align: center;
}

#areas h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.primary-areas {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.area-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 30px 40px;
    min-width: 250px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-badge:hover {
    border-color: #fe2c55;
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.area-badge h3 {
    font-size: 24px;
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.area-badge.home {
    border-color: #fe2c55;
    background: linear-gradient(135deg, rgba(254,44,85,0.1), rgba(37,244,238,0.05));
}

.badge-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fe2c55;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.also-serving {
    color: #999;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #areas h2 {
        font-size: 32px;
    }
    
    .primary-areas {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .area-badge {
        width: 100%;
        max-width: 350px;
        min-width: auto;
        padding: 25px;
    }
}

/* Footer CTA */
.footer-cta {
    text-align: center;
    padding: 70px 0;
    border-top: 1px solid #222;
}

.footer-cta h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-cta p {
    font-size: 20px;
    color: #999;
    margin-bottom: 40px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    font-size: 16px !important;
    padding: 16px 35px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials Section - Hidden by default */
.testimonials-section {
    display: none; /* Change to 'block' to show */
    padding: 70px 0;
    border-top: 1px solid #222;
    overflow: hidden;
}

.testimonials-section h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-align: center;
}

.testimonials-section > p {
    text-align: center;
    color: #999;
    font-size: 18px;
    margin-bottom: 60px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 30s linear infinite;
    width: max-content;
}

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

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px;
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    border-color: #fe2c55;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
    color: #fe2c55;
    font-size: 40px;
    font-weight: 900;
    line-height: 0;
    vertical-align: bottom;
    margin-right: 5px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-info h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-info p {
    color: #999;
    font-size: 14px;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 25px;
    }

    .testimonial-quote {
        font-size: 15px;
    }

    .testimonials-section h2 {
        font-size: 36px;
    }

    .testimonials-section {
        padding: 50px 0;
    }
}

/* How It Works Section Styles */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.hiw-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.hiw-step:hover {
    border-color: #fe2c55;
    transform: translateY(-3px);
}

.hiw-step-number {
    position: absolute;
    top: -12px;
    left: 25px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #fe2c55, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.hiw-step h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.hiw-step p {
    color: #999;
    font-size: 14px;
    line-height: 1.5;
}

.hiw-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(254,44,85,0.08), rgba(37,244,238,0.08));
    border: 1px solid rgba(254,44,85,0.3);
    text-align: center;
    padding: 35px 40px;
}

.hiw-highlight h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.hiw-highlight p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
}

.hiw-metrics {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hiw-metric {
    background: rgba(0,0,0,0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #25f4ee;
    border: 1px solid rgba(37,244,238,0.3);
}

@media (max-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hiw-step {
        padding: 25px;
    }

    .hiw-highlight {
        padding: 25px 20px;
    }

    .hiw-metrics {
        gap: 10px;
    }

    .hiw-metric {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* ROI Section Styles */
.roi-section {
    padding: 70px 0;
    border-top: 1px solid #222;
}

.roi-section h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-align: center;
}

.roi-section > .container > p {
    text-align: center;
    color: #999;
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.roi-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.roi-card:hover {
    border-color: #fe2c55;
    transform: translateY(-5px);
}

.roi-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #fff;
}

.roi-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

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

.roi-stat-label {
    color: #999;
    font-size: 15px;
}

.roi-stat-value {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roi-highlight-box {
    background: linear-gradient(135deg, rgba(254,44,85,0.1), rgba(37,244,238,0.1));
    border: 1px solid rgba(254,44,85,0.3);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    text-align: center;
}

.roi-highlight-box h4 {
    color: #fe2c55;
    font-size: 18px;
    margin-bottom: 10px;
}

.roi-highlight-box .big-stat {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.roi-highlight-box p {
    color: #999;
    font-size: 14px;
}

.roi-bar-chart {
    margin-top: 20px;
}

.roi-bar-item {
    margin-bottom: 20px;
}

.roi-bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.roi-bar-label span:first-child {
    color: #ccc;
    font-size: 14px;
}

.roi-bar-label span:last-child {
    color: #fe2c55;
    font-weight: 700;
    font-size: 14px;
}

.roi-bar {
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    overflow: hidden;
}

.roi-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #fe2c55, #ff6b9d);
    border-radius: 6px;
    transition: width 1s ease-out;
}

.roi-business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    flex-grow: 1;
}

.roi-business-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.roi-business-item h5 {
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.roi-business-item .roi-percent {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roi-business-item .roi-subtext {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .roi-section {
        padding: 50px 0;
    }

    .roi-section h2 {
        font-size: 36px;
    }

    .roi-grid {
        grid-template-columns: 1fr;
    }

    .roi-card {
        padding: 25px;
    }

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

    .roi-highlight-box .big-stat {
        font-size: 36px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; 
    }

    .hero h1 {
        /* UPDATED: Now matches the dynamic sizing of the top line */
        font-size: clamp(22px, 5.5vw, 42px);
        line-height: 1.2;
    }

    .hero-line-1 {
        height: auto;
        white-space: nowrap;
        overflow: visible;
        font-size: clamp(22px, 5.5vw, 42px);
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .hero-line-1 .gradient-text {
        display: inline;
    }
    
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .video-showcase {
        gap: 15px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 420px;
    }
    
    .content-section h2 {
        font-size: 36px;
    }

    .content-section {
        padding: 50px 0;
    }

    .stats {
        padding: 40px 0;
    }

    .footer-cta {
        padding: 50px 0;
    }

    .stats {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .stat-item {
        width: 100%;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 25px;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 99;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Mobile social overlay scaling */
    .social-overlay {
        padding: 10px;
    }

    .tiktok-overlay .social-top span {
        font-size: 11px;
    }

    .tiktok-overlay .social-right {
        right: 8px;
        bottom: 90px;
        gap: 12px;
    }

    .tiktok-overlay .social-icon .icon-circle {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .tiktok-overlay .social-icon span {
        font-size: 9px;
    }

    .tiktok-overlay .username {
        font-size: 12px;
    }

    .tiktok-overlay .caption {
        font-size: 10px;
    }

    .tiktok-overlay .music-row {
        font-size: 9px;
    }

    .tiktok-overlay .tiktok-nav {
        padding: 8px 0 4px;
    }

    .tiktok-overlay .tiktok-nav span {
        font-size: 16px;
    }

    .instagram-overlay .ig-avatar {
        width: 26px;
        height: 26px;
    }

    .instagram-overlay .ig-avatar-inner {
        font-size: 10px;
    }

    .instagram-overlay .ig-username {
        font-size: 11px;
    }

    .instagram-overlay .ig-follow {
        font-size: 9px;
        padding: 3px 8px;
    }

    .instagram-overlay .social-top {
        gap: 5px;
    }

    .instagram-overlay .ig-user {
        gap: 6px;
    }

    .instagram-overlay .social-right {
        right: 8px;
        bottom: 70px;
        gap: 14px;
    }

    .instagram-overlay .ig-icon {
        font-size: 18px;
    }

    .instagram-overlay .ig-caption {
        font-size: 10px;
    }

    .instagram-overlay .ig-music {
        font-size: 9px;
    }

    .facebook-overlay .fb-avatar {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .facebook-overlay .fb-name {
        font-size: 11px;
    }

    .facebook-overlay .fb-meta {
        font-size: 9px;
    }

    .facebook-overlay .fb-follow {
        font-size: 11px;
    }

    .facebook-overlay .social-right {
        right: 8px;
        bottom: 90px;
        gap: 14px;
    }

    .facebook-overlay .fb-action-icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .facebook-overlay .fb-action span {
        font-size: 9px;
    }

    .facebook-overlay .fb-caption {
        font-size: 10px;
    }

    .facebook-overlay .fb-reactions {
        font-size: 9px;
    }

    /* Headshot responsive */
    .headshot-container {
        text-align: center;
        margin-bottom: 20px;
    }

    .headshot {
        width: 120px;
        height: 120px;
    }

    /* Scale logo down on mobile */
    .logo {
        height: 32px;
    }

    .logo-container, .logo, .logo-canvas {
        width: auto !important;
    }

    /* Hide trace on mobile */
    .logo-trace {
        display: none;
    }

    /* Fix TikTok overlay text clipping */
    .tiktok-overlay .social-bottom {
        padding-right: 50px;
    }

    .instagram-overlay .social-bottom {
        padding-right: 50px;
    }

    .facebook-overlay .social-bottom {
        padding-right: 50px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-visual {
        display: none;
    }
}

/* AI Showcase Styles */
.ai-showcase {
    background: transparent;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.showcase-text h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.showcase-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.showcase-text .highlight {
    color: #fff;
    font-weight: 600;
}

.terminal-window {
    background: #0d1117;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.terminal-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
    font-size: 11px;
    color: #999;
    margin-left: 8px;
    letter-spacing: 0.5px;
    font-family: monospace;
}

.terminal-body {
    padding: 24px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 15px;
    line-height: 2;
}

.t-prompt { color: #25f4ee; }
.t-command { color: #fff; }
.t-result { color: #ccc; }
.t-success { color: #27c93f; }
.t-pink { color: #fe2c55; }

.cursor-blink {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: #25f4ee;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* AI Stats */
.ai-stats-row {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 30px;
}
.ai-stat {
    text-align: center;
}
.ai-stat .stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #25f4ee;
    margin-bottom: 10px;
}
.ai-stat .stat-desc {
    font-size: 14px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #fe2c55;
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-header {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #666;
    font-size: 18px;
}

.new-price {
    font-size: 36px;
    font-weight: 900;
    color: #25f4ee;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: #fe2c55;
    font-weight: bold;
}

.pricing-addons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.addon-card {
    background: linear-gradient(135deg, rgba(254,44,85,0.05), rgba(37,244,238,0.05));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px;
}

.addon-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .pricing-addons {
        grid-template-columns: 1fr;
    }
}

/* Blog Styles */
.blog-post h1 { font-size: 48px; margin-bottom: 10px; line-height: 1.1; }
.blog-meta { color: #fe2c55; margin-bottom: 40px; font-weight: 600; }
.blog-post p { font-size: 18px; line-height: 1.8; color: #ccc; margin-bottom: 25px; }
.blog-post h2 { font-size: 32px; color: #fff; margin-top: 50px; margin-bottom: 20px; }
.blog-post ul { margin-bottom: 25px; padding-left: 20px; color: #ccc; }
.blog-post li { margin-bottom: 10px; }