/* ============================================
   MSTIMAJ HOMEPAGE STYLES
   Extracted from page-home.php inline <style>
   Variables and fonts loaded via design-system.css
   ============================================ */

/* Force images visible */
img {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

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

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

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 157, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 157, 0.6); }
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes counter {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

/* ============================================
   GSAP + SCROLLTRIGGER ANIMATION STATES
   ============================================ */

/* Split text characters - only when GSAP ready */
.gsap-ready .split-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px) rotateX(-80deg);
    transform-origin: center bottom;
}

.split-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    padding-bottom: 0.1em;
}

/* Reveal line for text */
.reveal-line {
    overflow: hidden;
    display: block;
}

.gsap-ready .reveal-line-inner {
    display: block;
    transform: translateY(100%);
}

/* Enhanced magnetic effect */
.magnetic-wrap {
    display: inline-block;
    position: relative;
}

/* Parallax layers */
.parallax-layer {
    will-change: transform;
}

/* Animated gradient text enhancement */
.gradient-text-animated {
    background: linear-gradient(
        90deg,
        var(--accent-green) 0%,
        var(--accent-cyan) 25%,
        var(--accent-green) 50%,
        var(--accent-cyan) 75%,
        var(--accent-green) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card reveal states - GSAP will add .gsap-ready when initialized */
.gsap-ready .gsap-reveal {
    opacity: 0;
    transform: translateY(60px);
    will-change: transform, opacity;
}

/* Stagger line decoration */
.stagger-line {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan));
}

/* Hero elements initial state - only when GSAP ready */
.gsap-ready .hero-tagline-gsap,
.gsap-ready .hero-desc-gsap,
.gsap-ready .hero-cta-gsap,
.gsap-ready .skills-ticker-gsap {
    opacity: 0;
    transform: translateY(40px);
}

/* Section header reveal - only when GSAP ready */
.gsap-ready .section-reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Process step enhanced - only when GSAP ready */
.gsap-ready .process-number-gsap {
    transform: scale(0);
}

/* Value prop icons - only when GSAP ready */
.gsap-ready .value-icon-gsap {
    transform: scale(0) rotate(-180deg);
}

/* Marquee pause on hover */
.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

/* Image reveal mask */
.image-reveal-wrap {
    overflow: hidden;
    position: relative;
}

/* Image mask only shows when GSAP will animate it away */
.image-reveal-mask {
    position: absolute;
    inset: 0;
    background: var(--accent-green);
    transform-origin: right;
    transform: scaleX(0);
}

.gsap-ready .image-reveal-mask {
    transform: scaleX(1);
}

/* Enhanced button hover states */
.btn-gsap {
    overflow: hidden;
    position: relative;
}

.btn-gsap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-gsap:hover::before {
    left: 100%;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    z-index: 10;
}

.scroll-indicator-text {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--white-50);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-indicator-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-green), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .split-char,
    .gsap-reveal,
    .hero-tagline-gsap,
    .hero-desc-gsap,
    .hero-cta-gsap,
    .skills-ticker-gsap,
    .section-reveal,
    .process-number-gsap,
    .value-icon-gsap {
        opacity: 1;
        transform: none;
    }

    .scroll-indicator-line {
        animation: none;
    }
}

/* ============================================
   HERO SECTION - VIDEO BACKGROUND
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

/* Video background layer */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark gradient overlay for text readability */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        linear-gradient(90deg, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.6) 50%, rgba(10, 10, 15, 0.25) 100%),
        linear-gradient(180deg, rgba(10, 10, 15, 0.5) 0%, rgba(10, 10, 15, 0.3) 50%, rgba(10, 10, 15, 0.8) 100%);
    z-index: 1;
}

/* Faint grid pattern on top of video */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0 auto 0 5%;
    padding: 120px 0 80px 0;
    text-align: left;
}

.hero-tagline {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--accent-green);
    background: rgba(0, 255, 157, 0.1);
    padding: 8px 16px;
    border-radius: 4px;
    border-left: 3px solid var(--accent-green);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
    word-break: keep-all;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 4s ease infinite;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--white-70);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-desc em {
    color: var(--accent-cyan);
    font-style: normal;
}

.hero-desc strong {
    color: var(--accent-cyan);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-bottom: 35px;
}

.btn {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--black);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 157, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white-30);
}

.btn-ghost:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.skills-ticker {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.skill-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    padding: 5px 10px;
    border-radius: 15px;
    border: 1px solid var(--white-30);
    color: var(--white-50);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.skill-tag:nth-child(even):hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Mobile: static image, no video download */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
}

/* Reduced motion: static image */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
}

/* ============================================
   MARQUEE - GREEN BREAK
   ============================================ */
.marquee-section {
    background: var(--accent-green);
    padding: 16px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    padding: 0 30px;
    white-space: nowrap;
}

.marquee-item::after {
    content: ' \25C6';
    margin-left: 30px;
    opacity: 0.5;
}

/* ============================================
   SERVICES - WITH DEPTH AND TEXTURE
   ============================================ */
.services {
    padding: 100px 50px;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(0, 255, 157, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--grey-blue) 0%, var(--grey-dark) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: left;
    margin-bottom: 0;
}

.section-header-image {
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    max-width: 100%;
}

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

.section-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white-50);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.service-card {
    background: var(--grey-dark);
    border: 1px solid var(--white-10);
    border-radius: 16px;
    padding: 28px 32px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 157, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(0, 255, 157, 0.1);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-green);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.service-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white-50);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    padding: 4px 8px;
    background: var(--white-10);
    border-radius: 4px;
    color: var(--accent-green);
}

.service-link {
    display: inline-block;
    margin-top: 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-green);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent-cyan);
    transform: translateX(4px);
}

/* ============================================
   PROCESS SECTION - HOW I WORK
   ============================================ */
.process {
    padding: 100px 50px;
    background:
        linear-gradient(135deg, rgba(0, 255, 157, 0.03) 0%, transparent 40%),
        linear-gradient(315deg, rgba(0, 212, 255, 0.03) 0%, transparent 40%),
        var(--grey-dark);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.process-container {
    max-width: 1100px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-cyan), var(--accent-green), var(--accent-cyan));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--grey-mid);
    border: 2px solid var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-green);
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    background: var(--accent-green);
    color: var(--black);
    transform: scale(1.1);
}

.process-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.process-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--white-50);
    line-height: 1.5;
}

/* ============================================
   THOUGHTS - WITH ATMOSPHERE
   ============================================ */
.thoughts {
    padding: 100px 50px;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, var(--grey-mid) 0%, var(--grey-dark) 100%);
    position: relative;
}

.thoughts::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
}

.thoughts-container {
    max-width: 1100px;
    margin: 0 auto;
}

.thoughts-header {
    text-align: center;
    margin-bottom: 50px;
}

.thoughts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.thought-card {
    background: var(--grey-dark);
    border: 1px solid var(--white-10);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.thought-card::after {
    content: '\2192';
    position: absolute;
    bottom: 28px;
    right: 28px;
    font-size: 1.2rem;
    color: var(--accent-cyan);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.thought-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.thought-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.thought-category {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.thought-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.35;
}

.thought-excerpt {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--white-50);
    line-height: 1.55;
}

.thoughts-cta {
    text-align: center;
    margin-top: 40px;
}

.thoughts-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent-cyan);
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid var(--accent-cyan);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.thoughts-link:hover {
    background: var(--accent-cyan);
    color: var(--black);
}

/* ============================================
   VALUE PROPS - REFINED
   ============================================ */
.value-props {
    padding: 80px 50px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    position: relative;
    overflow: hidden;
}

.value-props::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.value-props-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.value-item {
    text-align: center;
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    border: 2px solid rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.value-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--black);
    stroke-width: 2;
    fill: none;
}

.value-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.value-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(0,0,0,0.7);
    line-height: 1.5;
}

/* ============================================
   TESTIMONIALS - DISTINCT SECTION
   ============================================ */
.testimonials {
    padding: 100px 50px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 255, 157, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        var(--grey-mid);
    position: relative;
    border-top: 1px solid var(--white-10);
    border-bottom: 1px solid var(--white-10);
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

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

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--grey-mid);
    border: 1px solid var(--white-10);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--accent-green);
    opacity: 0.2;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
}

.testimonial-content {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--white-70);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--black);
    font-size: 0.85rem;
}

.testimonial-info h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--white-50);
}

/* Testimonial star ratings */
.testimonial-stars {
    margin-bottom: 12px;
    color: #FFD700;
}

/* Share experience CTA */
.testimonials-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-share-experience {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.15), rgba(0, 255, 157, 0.05));
    border: 1px solid rgba(0, 255, 157, 0.4);
    border-radius: 8px;
    color: var(--accent-green);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-share-experience:hover {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.25), rgba(0, 255, 157, 0.1));
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 120px 50px;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.1), transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 18px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white-50);
    margin-bottom: 30px;
    line-height: 1.65;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   WHO THIS IS FOR SECTION
   ============================================ */
.who-section {
    padding: 80px 20px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        var(--grey-dark);
}

.who-container {
    max-width: 900px;
    margin: 0 auto;
}

.who-section .section-header {
    margin-bottom: 50px;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.who-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
}

.who-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.who-icon--green {
    background: rgba(0, 255, 157, 0.1);
}

.who-icon--cyan {
    background: rgba(0, 212, 255, 0.1);
}

.who-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.5rem;
}

.who-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white-50);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   EMAIL CAPTURE / NEWSLETTER
   ============================================ */
.email-capture {
    padding: 80px 5%;
    background: #0d0d14;
    position: relative;
    overflow: hidden;
}

.email-capture::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,255,157,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.email-capture-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.email-capture-content {
    flex: 1;
}

.email-capture-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-green);
    display: block;
    margin-bottom: 12px;
}

.email-capture-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0 0 12px 0;
}

.email-capture-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
}

.email-capture-form-wrap {
    flex: 1;
    max-width: 400px;
}

.email-capture-input-group {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--white-10);
}

.email-capture-input {
    flex: 1;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white);
    background: rgba(255,255,255,0.05);
    border: none;
    outline: none;
}

.email-capture-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.email-capture-input:focus {
    background: rgba(255,255,255,0.08);
}

.email-capture-btn {
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    background: var(--accent-green);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.email-capture-btn:hover {
    background: #00e68a;
}

.email-capture-btn:disabled {
    background: #64748b;
    cursor: not-allowed;
}

.email-capture-msg {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-align: center;
}

.email-capture-msg.success {
    background: rgba(0,255,157,0.1);
    color: var(--accent-green);
    border: 1px solid rgba(0,255,157,0.2);
}

.email-capture-msg.error {
    background: rgba(220,38,38,0.1);
    color: #f87171;
    border: 1px solid rgba(220,38,38,0.2);
}

.email-capture-fine {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--white-30);
    margin: 10px 0 0 0;
    text-align: center;
}

/* ============================================
   HOMEPAGE RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .services-container { grid-template-columns: 1fr; }
    .section-header { text-align: center; margin-bottom: 40px; }
}

@media (max-width: 1024px) {
    .hero-container {
        padding: 100px 30px 60px;
    }

    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-grid::before { display: none; }
    .thoughts-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .value-props-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-container, .services, .process, .thoughts, .testimonials, .cta, .value-props {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-container {
        margin-left: 20px;
        margin-right: 20px;
        padding: 100px 0 60px;
    }

    .hero .hero-title {
        font-size: 2.2rem;
    }

    .hero-cta { flex-direction: column; flex-wrap: wrap; }
    .hero-cta .btn { width: 100%; text-align: center; }

    .process-grid { grid-template-columns: 1fr; }
    .value-props-container { grid-template-columns: 1fr; gap: 30px; }

    .email-capture { padding: 60px 5%; }
    .email-capture-container {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    .email-capture-form-wrap { max-width: 100%; width: 100%; }
    .email-capture-title { font-size: 1.6rem; }
}
