/* variables and resets */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@1,700&display=swap');

:root {
    --bg-dark: #fcfcfc;
    --bg-darker: #f5f5f5;
    --bg-card: #ffffff;
    --text-main: #111111;
    --text-muted: #555555;
    --accent-red: #ff2033;
    --accent-red-hover: #e01c2c;
    
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    --transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1) all;
    --theme-glow: rgba(59, 130, 246, 0); /* Dynamic theme color */
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 1.2s ease;
}

body::after {
    content: '';
    position: fixed;
    top: 50%; left: 50%;
    width: 60vw; height: 60vh;
    background: radial-gradient(circle, var(--theme-glow), transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
    transition: background 1.2s ease;
}

/* Typography elements */
h1, h2, h3, h4, h5 {
    color: var(--text-main);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.bg-darker {
    background-color: var(--bg-darker);
    max-width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.aesthetic-text {
    background: linear-gradient(135deg, #111 10%, rgba(17, 17, 17, 0.7) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.perform-highlight {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #111;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(17, 17, 17, 0.1);
}

.dark-section {
    --bg-dark: #000000;
    --bg-darker: #050505;
    --bg-card: #0a0a0a;
    --text-main: #fdfdfd;
    --text-muted: #a0a0a0;
    background-color: var(--bg-darker);
    color: var(--text-main);
}

.dark-section .aesthetic-text {
    background: linear-gradient(135deg, #fff 10%, rgba(255, 255, 255, 0.7) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-section .perform-highlight {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.dark-section .secondary-aesthetic {
    background: rgba(255, 255, 255, 0.02);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-section .secondary-aesthetic:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Curves for light sections to simulate dark section bleeding over */
.section:not(.dark-section):not(.premium-hero) {
    position: relative;
}

.section:not(.dark-section):not(.premium-hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #050505;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    z-index: 0;
    pointer-events: none;
}

.section:not(.dark-section):not(.premium-hero)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #050505;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    z-index: 0;
    pointer-events: none;
}

/* Ensure content stays above the curve */
.section:not(.dark-section):not(.premium-hero) > * {
    position: relative;
    z-index: 2;
}

/* Fix Insight top curve color for Hero section transition */
#insight::before {
    background-color: #000;
}

/* Stat Reveal Animation */
.stat-item {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    opacity: 0;
    transform: translateY(20px);
}

.is-visible .stat-item {
    opacity: 1;
    transform: translateY(0);
}
.is-visible .stat-item:nth-child(2) { transition-delay: 0.2s; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-main);
}

.btn-primary {
    background-color: var(--accent-red);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 32, 51, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border-bottom: 2px solid var(--accent-red);
    padding: 12px 10px;
    border-radius: 0;
}

.btn-secondary:hover {
    color: var(--accent-red);
}

.btn-outline {
    border: 1px solid var(--text-muted);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--text-main);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Aesthetic Buttons */
.about-cta-group {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-aesthetic {
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-aesthetic {
    background: var(--accent-red);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(255, 32, 51, 0.1);
}

.primary-aesthetic:hover {
    background: var(--accent-red-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 32, 51, 0.4);
    letter-spacing: 1.5px;
}

.secondary-aesthetic {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.secondary-aesthetic:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.3);
}

.btn-aesthetic i {
    transition: transform 0.3s ease;
}

.primary-aesthetic:hover i {
    transform: translateX(8px);
}

@media (max-width: 600px) {
    .about-cta-group { flex-direction: column; width: 100%; }
    .btn-aesthetic { justify-content: center; width: 100%; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    padding: 20px 40px;
    background: transparent;
    backdrop-filter: blur(0px);
    z-index: 1000;
    border-radius: 0;
    border-bottom: 1px solid transparent;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    top: 10px;
    width: 85%;
    max-width: 980px;
    border-radius: 40px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 25px;
}

.navbar .logo,
.navbar .hamburger {
    color: #fff;
}

.navbar .logo {
    display: inline-block;
    white-space: nowrap;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
}

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

.nav-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
}

.navbar .btn-primary {
    background-color: var(--accent-red);
    color: #fff;
    border-radius: 50px;
    padding: 10px 28px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 32, 51, 0.15);
}

.navbar .btn-primary:hover {
    background-color: var(--accent-red-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 32, 51, 0.3);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
    background: transparent;
    padding: 6px;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.navbar.scrolled .nav-links {
    /* Optional: subtle inner background if desired, but parent handles it */
}

.nav-links a {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    background: #fff;
    color: #111;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== Hero Animations ===== */
@keyframes premiumReveal {
    0% { transform: translateY(110%); opacity: 0; filter: blur(12px); }
    100% { transform: translateY(0); opacity: 1; filter: blur(0); }
}

.reveal-mask {
    overflow: hidden;
    display: block;
    padding: 2px 0; /* Prevents clipping of descenders */
    margin-bottom: -2px;
}

.reveal-content {
    display: block;
    opacity: 0;
}

.is-visible .reveal-content {
    animation: premiumReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroZoomIn {
    from { opacity: 0; transform: scale(1.08); }
    to { opacity: 1; transform: scale(1.02); }
}
@keyframes heroFooterIn {
    from { opacity: 0; transform: translateY(25px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== Hero Section ===== */
.premium-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: #000;
    overflow: hidden;
}
.premium-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, #000 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

/* Glow — hidden per user preference */
.hero-halo {
    display: none;
}

/* Portrait fills the entire hero */
.hero-center-portrait {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    animation: heroZoomIn 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transition: transform 0.2s ease-out;
}
.hero-center-portrait::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 6%; /* Dynamic width relative to video size */
    height: 4%;
    background: #000;
    z-index: 10;
    pointer-events: none;
}
.hero-center-portrait, .premium-hero-content {
    will-change: transform, opacity;
}
.hero-img-blend {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Text — positioned above footer */
.premium-hero-content {
    position: absolute;
    z-index: 5;
    bottom: 110px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 5%;
    box-sizing: border-box;
    transition: transform 0.2s ease-out;
}

/* Left text */
.hero-left-text {
    max-width: 580px;
}
.hero-eyebrow {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    margin-bottom: 6px;
    font-style: italic;
    display: block;
}
.hero-massive-title {
    font-size: clamp(4rem, 7vw, 7.5rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -3px;
    color: #fff;
    margin: 0;
}

/* Specific Staggering */
.hero-left-text .reveal-mask:nth-child(1) .reveal-content { animation-delay: 0.2s; } /* Eyebrow */
.hero-massive-title .reveal-mask:nth-child(1) .reveal-content { animation-delay: 0.4s; } /* NAGESHWAR */
.hero-massive-title .reveal-mask:nth-child(2) .reveal-content { animation-delay: 0.55s; } /* GUPTA */

/* Right text */
.hero-right-text {
    max-width: 380px;
    text-align: left;
    margin-bottom: 50px;
}
.hero-right-text .reveal-mask:nth-child(1) .reveal-content { animation-delay: 0.8s; } /* Tagline */
.hero-right-text .reveal-mask:nth-child(2) .reveal-content { animation-delay: 0.95s; } /* Desc */
.hero-right-text .reveal-mask:nth-child(3) .reveal-content { animation-delay: 1.1s; } /* CTA */
.hero-tagline {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 12px;
}
.hero-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent-red);
}
.hero-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding-bottom: 4px;
    border-bottom: 1.5px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}
.hero-cta:hover {
    border-bottom-color: var(--accent-red);
    color: var(--accent-red);
}
.hero-cta svg {
    transition: transform 0.3s ease;
}
.hero-cta:hover svg {
    transform: translateX(5px);
}

/* Footer — staggered fade in */
.premium-hero-footer {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 5;
}
.hero-feature-item {
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: heroFooterIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    position: relative;
    padding-top: 12px;
}
.hero-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--accent-red);
    animation: lineGrow 0.6s ease forwards;
}
.hero-feature-item:nth-child(1) { animation-delay: 0.8s; }
.hero-feature-item:nth-child(1)::before { animation-delay: 1.4s; }
.hero-feature-item:nth-child(2) { animation-delay: 1.0s; }
.hero-feature-item:nth-child(2)::before { animation-delay: 1.6s; }
.hero-feature-item:nth-child(3) { animation-delay: 1.2s; }
.hero-feature-item:nth-child(3)::before { animation-delay: 1.8s; }
.hero-feature-item:nth-child(4) { animation-delay: 1.4s; }
.hero-feature-item:nth-child(4)::before { animation-delay: 2.0s; }

@keyframes lineGrow {
    from { width: 0; }
    to { width: 40px; }
}
.feature-num {
    color: var(--accent-red);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 3px;
}
.feature-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .premium-hero-content {
        flex-direction: column;
        align-items: flex-start;
        bottom: 60px;
        gap: 20px;
    }
    .hero-right-text {
        margin-bottom: 0;
    }
    .premium-hero-footer {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
}

/* Link CTA inside Cards */
.link-cta {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-cta:hover {
    color: var(--text-main);
}


/* About */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.about-text {
    flex: 1;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-red);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Interactive Typographic Services */
.services-list-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-row {
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.service-row::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(255, 32, 51, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.service-number, .service-content, .service-row-action {
    position: relative;
    z-index: 2;
}

.service-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color 0.4s ease;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-row-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0;
    transition: font-size 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
    white-space: nowrap;
}

.service-row-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 500px;
    pointer-events: none;
}

.service-row-action {
    display: flex;
    justify-content: flex-end;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

/* Hover Effects */
.service-row:hover {
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.02);
}

.service-row:hover::before {
    transform: translateX(0);
}

.service-row:hover .service-number {
    color: var(--accent-red);
}

.service-row:hover .service-row-title {
    font-size: 3.5rem;
    color: white;
}

.service-row:hover .service-row-desc {
    opacity: 1;
    transform: translateX(0);
}

.service-row:hover .service-row-action {
    color: var(--accent-red);
    transform: translateX(10px) scale(1.2);
}

@media (max-width: 950px) {
    .service-row { grid-template-columns: 50px 1fr 50px; padding: 30px 10px; }
    .service-content { flex-direction: column; align-items: flex-start; gap: 10px; }
    .service-row-title { font-size: 2rem; white-space: normal; }
    .service-row:hover { padding: 30px 10px; }
    .service-row:hover .service-row-title { font-size: 2.2rem; }
    .service-row-desc { opacity: 1; transform: translateX(0); font-size: 0.9rem; }
}

/* Portfolio Showcase Layout */
.portfolio-showcase {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-top: 60px;
}

.showcase-row {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.showcase-row.reverse {
    flex-direction: row-reverse;
}

.showcase-img-container {
    flex: 1.2;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
    display: block;
}

.showcase-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/10;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease, opacity 1s ease;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    transform: skewY(4deg) translateY(40px) scale(1.05);
    opacity: 0;
}

.is-visible .showcase-img {
    transform: skewY(0) translateY(0) scale(1);
    opacity: 1;
}

.showcase-glamor {
    position: relative;
}

.showcase-glamor::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://grain-y.com/images/grain.png'); /* Subtle grain texture */
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

.showcase-img-container:hover .showcase-img {
    transform: scale(1.06) rotate(1deg);
    filter: brightness(1.05) contrast(1.15);
}

.project-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 32, 51, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.project-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.showcase-img-container:hover .project-overlay {
    opacity: 1;
}
.showcase-img-container:hover .project-overlay span {
    transform: translateY(0);
}

.showcase-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-eyebrow {
    color: var(--accent-red);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.project-massive-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

/* reveal-type animation logic */
.reveal-type {
    overflow: hidden;
    position: relative;
}

.reveal-type::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-dark);
    transform: translateX(0);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 2;
}

.is-visible .reveal-type::after {
    transform: translateX(101%);
}

.project-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.link-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    color: var(--accent-red);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 2px 0;
    position: relative;
    transition: color 0.3s ease, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.link-cta i { transition: transform 0.3s ease; }
.link-cta:hover i { transform: translateX(5px); }

/* Magnetic CTA Target Helper */
.magnetic-target {
    padding: 10px;
    margin: -10px;
}

.glass-tag {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mt-4 { margin-top: 30px; }

@media (max-width: 950px) {
    .showcase-row, .showcase-row.reverse { 
        flex-direction: column; 
        gap: 40px; 
    }
    .portfolio-showcase { gap: 80px; }
    .project-massive-title { font-size: 2.5rem; }
    .showcase-img { aspect-ratio: auto; min-height: 250px; }
}

/* Testimonials */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 200px;
}

.testimonial-card {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.testimonial-card.hidden {
    opacity: 0;
    pointer-events: none;
}

.testimonial-card .quote {
    font-size: 2.5rem;
    color: var(--accent-red);
    opacity: 0.5;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.3rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-card h4 {
    font-weight: 600;
}

.testimonial-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.slider-controls button {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-controls button:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

/* Contact */
.contact-card {
    background: var(--bg-card);
    padding: 60px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-card p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

.contact-info {
    margin-bottom: 40px;
}

.email-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-red);
}

/* Process / How I Build */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.process-step {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.15s ease-out !important;
}
.process-step:nth-child(odd):hover {
    transform: translateY(-10px) scale(1.1) rotate(-2deg) !important;
    border-color: rgba(255, 32, 51, 0.3);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    z-index: 10;
}
.process-step:nth-child(even):hover {
    transform: translateY(-10px) scale(1.1) rotate(2deg) !important;
    border-color: rgba(255, 32, 51, 0.3);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    z-index: 10;
}

/* Fade out other cards when timeline is hovered */
.process-timeline:hover .process-step:not(:hover) {
    opacity: 0.5;
    transform: scale(0.95);
}
.process-step .step-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 32, 51, 0.08);
    position: absolute;
    top: 5px;
    right: 20px;
    line-height: 1;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-step:hover .step-number {
    transform: scale(1.2) translate(-10px, -10px);
    color: rgba(255, 32, 51, 0.15);
}
.process-step h3, .process-step p, .process-step .link-cta {
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-step:hover h3, .process-step:hover p {
    transform: translateY(-5px);
}
.process-step .link-cta i {
    transition: transform 0.3s ease;
}
.process-step:hover .link-cta i {
    transform: translateX(10px);
    color: var(--accent-red);
}
.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.process-step p {
    color: var(--text-muted);
}

@media (min-width: 951px) {
    .process-timeline {
        position: relative;
    }
    .process-timeline::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
        z-index: 0;
    }
}

/* Luxury 3D Flipping Strategy Cards */
.strategy-flip-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    perspective: 1000px;
}

.flip-card {
    background-color: transparent;
    height: 520px;
    perspective: 1500px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    border-radius: 20px;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute !important;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px 30px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.flip-card-front {
    z-index: 2;
    background: linear-gradient(145deg, rgba(255,32,51,0.03) 0%, rgba(10,10,10,0.8) 100%);
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(10,10,10,0.8) 100%);
    border-color: rgba(255, 255, 255, 0.15);
}

.flip-hint {
    margin-top: auto;
    width: 100%;
    text-align: right;
    font-size: 0.8rem;
    color: var(--accent-red);
    opacity: 0.6;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.flip-hint i {
    margin-left: 5px;
}

.strategy-item {
    position: relative;
    padding: 0;
}

.item-bg-text {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.015);
    line-height: 1;
    z-index: 0;
    user-select: none;
    pointer-events: none;
    font-family: var(--font-main);
}

.strategy-item-inner {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.strategy-item:hover .strategy-item-inner {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.item-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.item-friction, .item-flow {
    flex: 1;
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
}

.item-friction {
    background: linear-gradient(to right, rgba(255, 32, 51, 0.04), transparent);
}

.item-flow {
    background: linear-gradient(to left, rgba(255, 255, 255, 0.02), transparent);
}

.item-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.item-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 360px;
}

.item-flow .item-desc {
    color: var(--text-muted);
}

/* Achieve It Button */
.achieve-btn {
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--text-muted);
    border-radius: 50px;
    color: var(--text-main);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.achieve-btn i {
    transition: transform 0.4s ease;
}

.achieve-btn:hover {
    background: var(--accent-red);
    color: #fff;
    border-color: var(--accent-red);
    box-shadow: 0 5px 25px rgba(255, 32, 51, 0.3);
    transform: translateY(-3px);
}

.achieve-btn:hover i {
    transform: translateX(5px);
}

.friction-icon-wrap, .solution-icon-wrap {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.friction-icon-wrap {
    color: var(--accent-red);
    filter: drop-shadow(0 0 15px rgba(255, 32, 51, 0.4));
}

.solution-icon-wrap {
    color: #fff;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.strategy-item:hover .friction-icon-wrap,
.strategy-item:hover .solution-icon-wrap {
    transform: scale(1.1) translateY(-5px);
}

.friction-icon-wrap svg, .solution-icon-wrap svg {
    width: 100%;
    height: 100%;
}

/* Status Markers */
.status-marker {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 50px;
    width: fit-content;
}

.problem-marker {
    color: var(--accent-red);
    background: rgba(255, 32, 51, 0.1);
    border: 1px solid rgba(255, 32, 51, 0.2);
}

.solution-marker {
    color: var(--text-main);
    background: rgba(128, 128, 128, 0.1);
    border: 1px solid rgba(128, 128, 128, 0.2);
    box-shadow: 0 0 15px rgba(128, 128, 128, 0.05);
}

.status-marker i {
    font-size: 0.9rem;
}

.item-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.flow-title {
    color: var(--text-main);
}

.item-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 400px;
}

.item-flow .item-desc {
    color: var(--text-muted);
}

/* Vertical Divider */
.item-divider {
    height: 1px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px 0;
}

.divider-line {
    position: absolute;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    top: 0;
}

.transformation-arrow {
    width: 40px;
    height: 40px;
    background: #000;
    border: 1px solid rgba(255, 32, 51, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    color: var(--accent-red);
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(0,0,0,1);
    transition: all 0.5s ease;
}

.strategy-item:hover .transformation-arrow {
    transform: scale(1.2) translateX(5px);
    background: var(--accent-red);
    color: white;
    border-color: white;
}

/* Luxe Icon Animations */
.spinner-path-luxe {
    animation: rotate-luxe 2s linear infinite;
    transform-origin: center;
}

@keyframes rotate-luxe {
    0% { stroke-dashoffset: 250; transform: rotate(0deg); }
    50% { stroke-dashoffset: 50; transform: rotate(180deg); }
    100% { stroke-dashoffset: 250; transform: rotate(360deg); }
}

.nav-dot-luxe {
    animation: follow-luxe 4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

@keyframes follow-luxe {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(15px, -40px); }
    66% { transform: translate(25px, 0); }
    85% { transform: translate(40px, -40px); }
}

.mobile-pulse-luxe {
    animation: pulse-red-luxe 2s ease-in-out infinite;
}

@keyframes pulse-red-luxe {
    0%, 100% { opacity: 1; r: 3; filter: blur(0px); }
    50% { opacity: 0.5; r: 5; filter: blur(2px); }
}

.mobile-svg-luxe {
    animation: float-luxe 4s ease-in-out infinite;
}

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

/* Solution Icon Animations */
.needle-anim {
    transform-origin: 50px 80px;
    animation: needle-move 3s ease-in-out infinite;
}

@keyframes needle-move {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(50deg); }
}

.target-glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { fill: #fff; r: 6; opacity: 1; }
    50% { fill: #fff; r: 10; opacity: 0.6; }
}

.mobile-solution-svg path {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: draw-check 1.5s ease-out forwards;
    animation-delay: 1s;
}

@keyframes draw-check {
    to { stroke-dashoffset: 0; }
}

/* CTA Wrap */
.strategy-cta-wrap {
    margin-top: 40px;
    perspective: 2000px;
}

.cta-inner-card {
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

.cta-inner-card:hover {
    border-color: rgba(255, 32, 51, 0.2);
}

.cta-luxury-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.cta-luxury-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.5;
}

.cta-minimal-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: white;
    color: black;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-minimal-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.cta-minimal-btn .btn-icon {
    width: 30px;
    height: 30px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    transition: transform 0.4s ease;
}

.cta-minimal-btn:hover .btn-icon {
    transform: translateX(5px);
}

.cta-glow-macro {
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 32, 51, 0.08), transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.cta-inner-card:hover .cta-glow-macro {
    opacity: 1;
}

.cta-inner-card * {
    position: relative;
    z-index: 1;
}

@media (max-width: 950px) {
    .strategy-flip-wrapper {
        grid-template-columns: 1fr;
    }
    .item-grid {
        flex-direction: column;
    }
    .item-divider {
        display: flex;
    }
    .item-bg-text {
        font-size: 8rem;
        top: 0; left: 10px;
    }
    .item-friction, .item-flow {
        padding: 20px;
    }
    .item-title {
        font-size: 2rem;
    }
    .cta-inner-card {
        padding: 60px 30px;
    }
    .cta-luxury-title {
        font-size: 2.2rem;
    }
}

/* Transformation Section */
.transformation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
.before-card, .after-card {
    flex: 1;
    max-width: 400px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    position: relative;
}
.before-card {
    border: 1px solid rgba(150, 150, 150, 0.1);
}
.after-card {
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
    animation: success-glow 4s infinite ease-in-out;
}
@keyframes success-glow {
    0%, 100% { box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 10px 60px rgba(16, 185, 129, 0.25); border-color: rgba(16, 185, 129, 0.6); }
}

/* High-Performance Standard Pillars */
.standard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.standard-pillar {
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px 45px;
    transition: all 0.15s ease-out !important;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.standard-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.standard-pillar:nth-child(odd):hover {
    transform: translateY(-10px) scale(1.1) rotate(-2deg) !important;
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.standard-pillar:nth-child(even):hover {
    transform: translateY(-10px) scale(1.1) rotate(2deg) !important;
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

/* Fade out other cards when grid is hovered */
.standard-grid:hover .standard-pillar:not(:hover) {
    opacity: 0.5;
    transform: scale(0.95);
}

.standard-pillar:hover::before {
    opacity: 1;
}

.pillar-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(128, 128, 128, 0.05);
    z-index: 0;
    font-family: var(--font-main);
    user-select: none;
    pointer-events: none;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: rgba(128, 128, 128, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 35px;
    border: 1px solid rgba(128, 128, 128, 0.2);
    transition: all 0.4s ease;
    z-index: 1;
}

@keyframes floatPillarIcon {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

.pillar-icon i {
    animation: floatPillarIcon 3s ease-in-out infinite;
}

.standard-pillar:hover .pillar-icon {
    background: var(--text-main);
    color: var(--bg-card);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(128, 128, 128, 0.2);
}

.pillar-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    z-index: 1;
}

.pillar-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    z-index: 1;
}

@media (max-width: 992px) {
    .standard-grid {
        grid-template-columns: 1fr;
    }
}

.badge-status {
    position: absolute;
    top: -15px;
    left: 30px;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.badge-status.error { background: #333; color: #aaa; }
.badge-status.success { background: #10b981; color: white; }
.metrics p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}
.metrics i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}
.status-icon-up, .status-icon-bolt, .status-icon-check {
    display: inline-block;
}
.is-visible .status-icon-up { animation: icon-float 2s infinite ease-in-out; }
.is-visible .status-icon-bolt { animation: icon-float 2s infinite ease-in-out 0.3s; }
.is-visible .status-icon-check { animation: icon-float 2s infinite ease-in-out 0.6s; }

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

.before-card .metrics p { color: #888; }
.after-card .metrics p { color: white; }
.arrow-divider {
    font-size: 2.5rem;
    color: var(--accent-red);
    animation: arrow-nudge 2s infinite ease-in-out;
}

@keyframes arrow-nudge {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@media (max-width: 768px) {
    .transformation-container { flex-direction: column; }
    .arrow-divider { transform: rotate(90deg); animation: arrow-nudge-vert 2s infinite ease-in-out; }
}

@keyframes arrow-nudge-vert {
    0%, 100% { transform: rotate(90deg) translateX(0); }
    50% { transform: rotate(90deg) translateX(10px); }
}

/* Aesthetic Contact Section */
.contact-aesthetic {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marquee-background {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100vw;
    transform: translateY(-50%) rotate(-2deg);
    overflow: hidden;
    z-index: 0;
    opacity: 0.05;
    pointer-events: none;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: scroll-marquee 20s linear infinite;
}

.marquee-track span {
    font-size: 8rem;
    font-weight: 900;
    text-transform: uppercase;
    padding-right: 50px;
    color: transparent;
    -webkit-text-stroke: 2px white;
}

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

.contact-glass-container {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 60px;
    margin-bottom: -40px; /* Reduced specific gap below container */
    border-radius: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    overflow: hidden;
}

.contact-glow-macro {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-red);
    filter: blur(100px);
    pointer-events: none;
    width: 600px; height: 600px;
    top: -300px; right: -300px;
    opacity: 0.15;
    animation: breathe-glow 8s ease-in-out infinite;
}

@keyframes breathe-glow {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.15; }
    50% { transform: scale(1.2) translate(-20px, 20px); opacity: 0.25; }
}

.contact-sup {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.contact-mega-text {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.gradient-text-animate {
    background: linear-gradient(90deg, #fff, var(--accent-red), #ff7a00, #fff);
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 5s infinite linear;
}

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

.contact-sub {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto; margin-right: auto;
}

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

.contact-trust-bar {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.contact-divider {
    width: 60%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 5px;
}

.response-status {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot-green {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.contact-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-box:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-aesthetic {
    display: flex;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    overflow: hidden;
}

.primary-aesthetic {
    background: var(--text-main);
    color: var(--bg-card);
    padding: 8px 8px 8px 30px;
    animation: pulse-aesthetic 2.5s infinite;
}

@keyframes pulse-aesthetic {
    0% { box-shadow: 0 0 0 0 rgba(128, 128, 128, 0.3); }
    70% { box-shadow: 0 0 0 15px rgba(128, 128, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(128, 128, 128, 0); }
}

.primary-aesthetic:hover {
    box-shadow: 0 10px 30px rgba(255, 32, 51, 0.4);
    transform: translateY(-3px);
    animation: none;
}

.btn-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    position: relative;
    transition: var(--transition);
}

.circle-spin {
    position: absolute;
    top: 5px; left: 5px;
    width: 40px; height: 40px;
    fill: none;
    stroke: rgba(255, 32, 51, 0.5);
    stroke-width: 2;
    stroke-dasharray: 60;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.primary-aesthetic:hover .btn-icon {
    background: var(--accent-red);
    transform: scale(1.1);
}
.primary-aesthetic:hover .circle-spin { stroke: var(--bg-card); }

.secondary-aesthetic {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-muted);
    padding: 0 30px;
}

.secondary-aesthetic:hover {
    background: rgba(128, 128, 128, 0.1);
    border-color: var(--text-main);
}

@media (max-width: 768px) {
    .contact-mega-text { font-size: 3.5rem; }
    .contact-glass-container { padding: 50px 30px; }
}

/* Premium Footer */
.premium-footer {
    padding: 20px 5% 50px 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 25px;
    font-weight: 800;
}

.footer-primary-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    display: inline-block;
    text-decoration: none;
}

.footer-sub-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text-main);
}

.email-hover {
    transition: var(--transition);
}
.email-hover:hover {
    color: var(--accent-red);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.separator {
    margin: 0 10px;
    color: rgba(255,255,255,0.2);
}

.availability-status {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #10b981;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
    .footer-bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
}
@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* Animations Core */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in {
    opacity: 0;
    transition: all 1s ease-out;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(-100%);
}

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

.mobile-menu-content {
    text-align: center;
    width: 100%;
    padding: 0 5%;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.mobile-nav-links li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }

.mobile-link {
    font-size: 2.5rem;
    font-family: var(--font-secondary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-link:hover, .mobile-link:active {
    color: var(--accent-red);
}

.mobile-menu-footer {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.5s;
}

.mobile-menu-overlay.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.hamburger {
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1000;
    position: relative;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
}

.hamburger i {
    transition: all 0.3s ease;
}

.hamburger.active i::before {
    content: "\f00d"; /* FontAwesome times icon */
}

.hamburger.active {
    transform: rotate(90deg);
}

body.no-scroll {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    .hero-cta {
        justify-content: center;
    }
    .about-container {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .nav-links {
        display: none; /* simple mobile nav override */
    }
    .hamburger {
        display: block;
    }
}
/* Mobile Optimization - iPhone 12 Pro (390px) and similar */
@media (max-width: 768px) {
    .section {
        padding: 60px 5%;
    }

    .section:not(.dark-section):not(.premium-hero)::before,
    .section:not(.dark-section):not(.premium-hero)::after {
        height: 30px;
    }

    /* Navbar fix */
    .navbar {
        padding: 15px 5% !important;
    }
    .nav-cta-wrapper {
        gap: 12px;
    }
    .nav-container .btn-primary {
        padding: 10px 18px;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    .logo {
        font-size: 1.1rem;
        line-height: 1.1;
        max-width: 120px;
    }
    
    /* Hero Section Refinement */
    .premium-hero-content {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        bottom: auto !important;
        top: 65% !important;
        transform: translateY(-50%) !important;
        padding: 0 10% !important;
    }
    
    .hero-left-text {
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }
    
    .hero-massive-title {
        font-size: 3.2rem;
        letter-spacing: -1px;
        line-height: 1;
        margin: 10px 0;
    }
    
    .hero-eyebrow {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .hero-right-text {
        margin-top: 0 !important;
        margin-bottom: 0;
        max-width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
        margin-bottom: 15px;
        max-width: 320px;
    }
    
    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 30px;
        opacity: 0.8;
        max-width: 300px;
    }
    
    .hero-cta {
        justify-content: center;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 5px;
    }
    
    .premium-hero-footer {
        display: none;
    }
    
    .strategy-flip-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .flip-card {
        height: 500px;
    }
    
    .showcase-row {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }
    
    .showcase-content {
        align-items: center;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    
    .project-massive-title {
        font-size: 2.5rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
    
    .contact-mega-text {
        font-size: 2.8rem;
    }
    
    .contact-glass-container {
        padding: 40px 20px;
    }
    
    .about-container {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-massive-title {
        font-size: 2.8rem;
    }
    
    .contact-mega-text {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-aesthetic {
        padding: 15px 25px;
        font-size: 0.85rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .nav-container .btn-primary {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}
