@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Manrope:wght@300;500;800&family=DM+Serif+Display:ital@0;1&display=swap');

/* ============================================================
   # CSS VARIABLES
============================================================ */
:root {
    --bg-color: #030303;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent: #2563eb;
    --accent-glow: rgba(37, 99, 235, 0.4);
    --bg-dark: #05070a;            /* Deep Obsidian */
    --card-bg: rgba(255, 255, 255, 0.03); 
    --accent-cyan: #00d2ff;        /* Electric Cyan */
    --accent-blue: #3a7bd5;        /* Soft Blue */
    --text-muted: #94a3b8;         /* Slate Gray */
    --border-color: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   # RESET & BASE
============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   # LOADER
============================================================ */
#loader {
    position: fixed;
    inset: 0;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

#loader img {
    width: 120px;
    filter: drop-shadow(0 0 20px var(--accent-glow));
    animation: pulseLogo 2s infinite ease-in-out;
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: var(--text-primary);
    animation: loadBar 2.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes pulseLogo {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px var(--accent-glow)); }
    50%       { transform: scale(1.05); filter: drop-shadow(0 0 40px var(--accent)); }
}

@keyframes loadBar {
    0%   { width: 0%; }
    50%  { width: 60%; }
    100% { width: 100%; }
}

body.loaded #loader {
    transform: translateY(-100vh);
}

/* ============================================================
   # NAVBAR
============================================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(3, 3, 3, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.nav-brand img {
    height: 35px;
}

.nav-cta {
    background: #fff;
    color: #000;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.nav-cta:hover {
    transform: scale(1.05);
}

/* ============================================================
   # SECTION BASE
============================================================ */
section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 5%;
    min-height: auto;
    overflow: hidden;
    background: transparent;
}

/* ============================================================
   # SCROLL REVEAL
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   # HERO
============================================================ */
.hero {
    min-height: 75vh;
}

.hero-badge {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.8rem, 7.5vw, 6rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    max-width: 1100px;
}

.hero h1 .line-white {
    display: block;
    color: #ffffff;
}

.hero h1 .word-actually {
    color: #2563eb;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.hero h1 .word-actually::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #2563eb;
    border-radius: 4px;
    opacity: 0.5;
}

.hero h1 .line-blue {
    display: block;
    color: #2563eb;
    font-style: italic;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.6;
}

/* ============================================================
   # HERO BUTTONS
============================================================ */
.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    margin-top: -25px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.fancy-btn {
    position: relative;
    background: transparent;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    padding: 0 28px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    perspective: 30rem;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.fancy-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(320deg, rgba(0,140,255,0.8), rgba(128,0,128,0.4));
    z-index: -1;
    transition: all 0.6s ease;
}

.fancy-btn:hover::before {
    animation: rotate 1s linear;
}

@keyframes rotate {
    0%   { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

.fancy-btn.secondary::before {
    background: linear-gradient(320deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
}

.static-btn {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 600;
    padding: 0 26px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.static-btn:hover {
    color: #fff;
    border-color: #2563eb;
    background: rgba(37,99,235,0.08);
}

/* From Uiverse.io by kleenpulse */ 
.btn {
  --border-color: linear-gradient(-45deg, #ffae00, #7e03aa, #00fffb);
  --border-width: 0.125em;
  --curve-size: 0.5em;
  --blur: 30px;
  --bg: #080312;
  --color: #afffff;
  color: var(--color);
  cursor: pointer;
  /* use position: relative; so that BG is only for .btn */
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-content: center;
  padding: 0.5em 1.5em;
  font-size: 17px;
  border: 0;
  text-transform: uppercase;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
  clip-path: polygon(
    /* Top-left */ 0% var(--curve-size),
    var(--curve-size) 0,
    /* top-right */ 100% 0,
    100% calc(100% - var(--curve-size)),
    /* bottom-right 1 */ calc(100% - var(--curve-size)) 100%,
    /* bottom-right 2 */ 0 100%
  );
  transition: color 250ms;
}

.btn::after,
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
}

.btn::before {
  background: var(--border-color);
  background-size: 300% 300%;
  animation: move-bg7234 5s ease infinite;
  z-index: -2;
}

@keyframes move-bg7234 {
  0% {
    background-position: 31% 0%;
  }

  50% {
    background-position: 70% 100%;
  }

  100% {
    background-position: 31% 0%;
  }
}

.btn::after {
  background: var(--bg);
  z-index: -1;
  clip-path: polygon(
    /* Top-left */ var(--border-width)
      calc(var(--curve-size) + var(--border-width) * 0.5),
    calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
    /* top-right */ calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    /* bottom-right 1 */
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    /* bottom-right 2 */ var(--border-width) calc(100% - var(--border-width))
  );
  transition: clip-path 500ms;
}

.btn:where(:hover, :focus)::after {
  clip-path: polygon(
    /* Top-left */ calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - var(--border-width)) var(--border-width),
    /* top-right */ calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    /* bottom-right 1 */
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    /* bottom-right 2 */
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width))
  );
  transition: 200ms;
}

.btn:where(:hover, :focus) {
  color: #fff;
}

/* ============================================================
   # METRICS / PROOF SECTION
============================================================ */
.metrics-grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    max-width: 1100px;
    margin-top: 4rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.metrics-grid:hover > .metric-card:not(:hover) {
    filter: blur(6px);
    transform: scale(0.92);
}

.metric-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    flex: 1;
    min-height: 200px;
    border-radius: 16px;
    color: white;
    cursor: pointer;
    transition: 400ms cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2rem;
}

.metric-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 400ms;
    border-radius: 16px;
}

.metric-card:hover::before { opacity: 1; }

.metric-card:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Card 1 — blue */
.metric-card.m-blue {
    background: linear-gradient(135deg, #0f1f4a 0%, #1a3a7a 60%, #0d1530 100%);
    box-shadow: 0 8px 32px rgba(37,99,235,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
}
.metric-card.m-blue::before {
    background: linear-gradient(135deg, #1d3f8a 0%, #2563eb 100%);
}
.metric-card.m-blue:hover {
    border-color: rgba(37,99,235,0.6);
    box-shadow: 0 20px 60px rgba(37,99,235,0.4);
}

/* Card 2 — slate/silver */
.metric-card.m-silver {
    background: linear-gradient(135deg, #111118 0%, #1e1e2e 60%, #0a0a12 100%);
    box-shadow: 0 8px 32px rgba(255,255,255,0.06), inset 0 1px 0 rgba(255,255,255,0.06);
}
.metric-card.m-silver::before {
    background: linear-gradient(135deg, #1e1e30 0%, #2a2a42 100%);
}
.metric-card.m-silver:hover {
    border-color: rgba(255,255,255,0.25);
    box-shadow: 0 20px 60px rgba(255,255,255,0.12);
}

/* Card 3 — indigo */
.metric-card.m-indigo {
    background: linear-gradient(135deg, #0a0a20 0%, #1a1a4a 60%, #050510 100%);
    box-shadow: 0 8px 32px rgba(99,102,241,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.metric-card.m-indigo::before {
    background: linear-gradient(135deg, #1e1e5a 0%, #3730a3 100%);
}
.metric-card.m-indigo:hover {
    border-color: rgba(99,102,241,0.5);
    box-shadow: 0 20px 60px rgba(99,102,241,0.35);
}

/* Card 4 — purple */
.metric-card.m-purple {
    background: linear-gradient(135deg, #1a0b2e 0%, #3b1c5a 60%, #100518 100%);
    box-shadow: 0 8px 32px rgba(168,85,247,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}
.metric-card.m-purple::before {
    background: linear-gradient(135deg, #3b1c5a 0%, #9333ea 100%);
}
.metric-card.m-purple:hover {
    border-color: rgba(168,85,247,0.6);
    box-shadow: 0 20px 60px rgba(168,85,247,0.4);
}

/* Glow orb inside each card */
.metric-card .card-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    top: -20px;
    right: -20px;
    transition: opacity 400ms;
    pointer-events: none;
}
.metric-card:hover .card-glow { opacity: 0.55; }
.m-blue .card-glow   { background: #2563eb; }
.m-silver .card-glow { background: #ffffff; }
.m-indigo .card-glow { background: #6366f1; }
.m-purple .card-glow { background: #a855f7; }

.metric-card .tip {
    font-family: 'Syncopate', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    z-index: 1;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.metric-card .second-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    z-index: 1;
    max-width: 200px;
}

.metric-card:hover .second-text { color: rgba(255,255,255,0.85); }

@media (max-width: 768px) {
    .metrics-grid { flex-direction: column; align-items: center; }
    .metrics-grid:hover > .metric-card:not(:hover) { filter: none; transform: none; }
    .metric-card { width: 100%; max-width: 340px; }
}

/* ============================================================
   # BRANDS MARQUEE
============================================================ */
.brands-marquee-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brands-marquee-outer::before,
.brands-marquee-outer::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee-outer::before { left: 0;  background: linear-gradient(to right, #030303, transparent); }
.brands-marquee-outer::after  { right: 0; background: linear-gradient(to left,  #030303, transparent); }

.brands-marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: brandScroll 22s linear infinite;
}

.brands-marquee-track:hover { animation-play-state: paused; }

@keyframes brandScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 60px;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: default;
    background: rgba(255,255,255,0.02);
}

.brand-logo-item:hover {
    color: #fff;
    border-color: rgba(37,99,235,0.5);
    background: rgba(37,99,235,0.07);
    box-shadow: 0 0 20px rgba(37,99,235,0.15);
}

/* ============================================================
   # TOOLKIT SECTION
============================================================ */
.toolkit-container {
    width: 100%;
    max-width: 1000px;
}

.toolkit-container h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.toolkit-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tag {
    font-size: 1.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tag:hover {
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

/* ============================================================
   # COMPARE SECTION
============================================================ */
.scene-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    background: transparent;
    color: #fff;
    font-family: 'Segoe UI', system-ui, sans-serif;
    overflow: hidden;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    width: 100%;
    perspective: 1200px;
    z-index: 1;
}

.card-3d {
    position: relative;
    border-radius: 24px;
    padding: 2px;
    transform-style: preserve-3d;
    will-change: transform;
    opacity: 0;
    transform: translateY(60px) rotateX(8deg);
    transition: opacity 0.8s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.card-3d.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.card-3d::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    z-index: -1;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-3d::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    z-index: -2;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.95);
    filter: blur(20px);
    transition: opacity 0.6s ease, filter 0.6s ease;
}

.card-agency::before  { background: linear-gradient(-45deg, #e81cff 0%, #ff4d4d 100%); }
.card-agency::after   { background: linear-gradient(-45deg, #e81cff 0%, #ff4d4d 100%); }
.card-brandad::before { background: linear-gradient(-45deg, #2563eb 0%, #40c9ff 100%); }
.card-brandad::after  { background: linear-gradient(-45deg, #1a5aff 0%, #00dbde 100%); }

.card-3d:hover::before {
    transform: rotate(-90deg) scaleX(1.34) scaleY(0.77);
}
.card-3d:hover::after {
    opacity: 0.85;
    filter: blur(30px);
}

.card-agency {
    background: transparent;
    border: none;
    box-shadow: 0 30px 80px rgba(255,77,77,0.08);
    z-index: 1;
}
.card-agency:hover {
    box-shadow: 0 40px 100px rgba(255,77,77,0.18);
}

.card-brandad {
    background: transparent;
    border: none;
    box-shadow: 0 30px 80px rgba(77,184,255,0.10);
    transition-delay: 0.15s;
    z-index: 1;
}
.card-brandad:hover {
    box-shadow: 0 40px 100px rgba(77,184,255,0.22);
}

.card-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    padding: 2.8rem 2.4rem;
}

.card-agency .card-inner  { background: #111118; }
.card-brandad .card-inner { background: linear-gradient(145deg, #0f1b3d 0%, #0a1428 100%); }

.card-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 99px;
    margin-bottom: 1.2rem;
}
.card-agency .card-tag  { background: #ff4d4d22; color: #ff4d4d; border: 1px solid #ff4d4d44; }
.card-brandad .card-tag { background: #4db8ff22; color: #4db8ff; border: 1px solid #4db8ff44; }

.card-3d h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 0.4rem;
}
.card-agency h2  { color: #fff; }
.card-brandad h2 { color: #e8f4ff; }

.card-subtitle {
    font-size: 0.85rem;
    margin-top: 0;
    margin-bottom: 2rem;
}
.card-agency .card-subtitle  { color: #555; }
.card-brandad .card-subtitle { color: #3a6a9a; }

.card-divider {
    height: 1px;
    margin-bottom: 2rem;
}
.card-agency .card-divider  { background: linear-gradient(to right, #ff4d4d33, transparent); }
.card-brandad .card-divider { background: linear-gradient(to right, #4db8ff33, transparent); }

.item-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.item-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ccc;
}
.card-brandad .item-list li { color: #b8d4f0; }

.icon-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}
.icon-x  { background: #ff4d4d22; color: #ff4d4d; border: 1px solid #ff4d4d55; }
.icon-ok { background: #00d97022; color: #00d970; border: 1px solid #00d97055; }

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    opacity: 0.15;
    z-index: 0;
}
.orb-red  { width: 400px; height: 400px; background: #ff4d4d; top: -100px;   left: -150px; }
.orb-blue { width: 500px; height: 500px; background: #1a5aff; bottom: -150px; right: -200px; }

@media (max-width: 720px) {
    .compare-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   # CTA SECTION
============================================================ */
.cta-section {
    background: #fff;
    color: #000;
    border-radius: 40px;
    margin: 0 2% 2rem;
    min-height: 70vh;
}

.cta-section h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    max-width: 800px;
}

.big-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.big-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ============================================================
   # TESTIMONIALS
============================================================ */
.testimonials-section {
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.t-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.t-heading {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 4rem;
    text-align: center;
}

.t-stage {
    width: 100%;
    max-width: 780px;
    position: relative;
}

.t-track {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 320px;
}

.t-card {
    position: absolute;
    inset: 0;
    padding: 3rem 3.5rem;
    border-radius: 24px;
    background: linear-gradient(145deg, #0f1020 0%, #090914 100%);
    border: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.1s ease;
}

.t-card.active {
    opacity: 1;
    visibility: visible;
    clip-path: inset(0 0% 0 0);
    position: relative;
}

.t-card.exit-left {
    opacity: 1;
    visibility: visible;
    position: absolute;
    clip-path: inset(0 0 0 100%);
    transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.t-card.exit-right {
    opacity: 1;
    visibility: visible;
    position: absolute;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.t-card.enter-right { clip-path: inset(0 0 0 100%); }
.t-card.enter-left  { clip-path: inset(0 100% 0 0); }

.t-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.t-quote {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.82);
    font-style: italic;
    flex: 1;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.t-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #40c9ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.t-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.t-role {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.t-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.t-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.t-btn:hover {
    background: rgba(37,99,235,0.2);
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(37,99,235,0.3);
}

.t-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.t-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.t-dot.active {
    background: var(--accent);
    width: 22px;
    border-radius: 3px;
    box-shadow: 0 0 8px var(--accent);
}

/* ============================================================
   # FIXED SPACING & LAYOUT
============================================================ */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-top: 0;
    margin-bottom: 2rem;
    max-width: 900px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    text-align: left;
    margin-top: 0;
}

.bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

/* ============================================================
   # SERVICES & TESTIMONIALS
============================================================ */
.process-step {
    padding: 1.5rem;
    border-left: 1px solid rgba(255,255,255,0.1);
    transition: border-color 0.3s ease;
}

.process-step:hover {
    border-left: 1px solid var(--accent);
    background: rgba(255, 255, 255, 0.02);
}

.step-num {
    font-family: 'Syncopate', sans-serif;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.services-container {
    width: 100%;
    max-width: 1100px;
    margin-top: 1rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem 3rem;
    backdrop-filter: blur(10px);
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: left;
    gap: 2rem;
}

.service-row:last-child {
    border-bottom: none;
}

.service-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.service-tags span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.05);
    padding: 6px 12px;
    border-radius: 20px;
}

/* ============================================================
   # FOUNDER SECTION
============================================================ */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
    margin-top: 3rem;
}

.founder-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: left;
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.f-blue { border-top-color: #2563eb; }
.f-orange { border-top-color: #f59e0b; }

.founder-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.founder-header .role {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.founder-card .bio {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.founder-contact {
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

/* ============================================================
   # FINAL CTA
============================================================ */
.final-cta {
    background: radial-gradient(circle at center, #0c2159 0%, #020617 100%);
    padding: 8rem 5%;
}

.final-cta h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .founders-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   # HERO CASE STUDY LAYOUT (WIDE FORMAT)
============================================================ */
.case-study-hero-section {
    padding-top: 2rem;
}

.cs-label {
    font-family: var(--font-main);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.cs-hero-container {
    width: 100%;
    max-width: 1200px;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem 3rem 3rem 3rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.cs-hero-headline {
    font-family: var(--font-main);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.highlight-blue {
    color: var(--accent-cyan);
    font-weight: 800;
}

.cs-hero-subtext {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 500;
}

.cs-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.5rem 3rem;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 800px;
}

.hero-stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.hero-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.2rem;
}

.hero-stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    margin: 0 2rem;
}

.cs-hero-image-box {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: #02040a;
}

.img-label-bar {
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    color: var(--text-secondary);
    padding: 10px 0;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cs-hero-image-box img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.01);
    transition: transform 0.5s ease;
}

.cs-hero-container:hover .cs-hero-image-box img {
    transform: scale(1.0);
}

@media (max-width: 768px) {
    .cs-hero-container {
        padding: 2rem 1.5rem;
    }
    
    .cs-hero-headline {
        font-size: 2rem;
    }
    
    .cs-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .hero-stat-divider {
        width: 50px;
        height: 1px;
        margin: 0;
    }
    .metrics-grid { flex-direction: column; align-items: center; }
    .service-row { flex-direction: column; align-items: flex-start; padding: 2rem 0; }
    .service-info { max-width: 100%; }
    .service-tags { justify-content: flex-start; margin-top: 1rem; }
    .metric-card { width: 100%; max-width: 340px; }
    
    nav {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    nav > div:nth-child(2) {
        width: 100%;
        justify-content: space-between;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    nav > div:nth-child(2) a {
        margin-right: 1rem !important;
    }
    nav > div:nth-child(2) a:last-child {
        margin-right: 0 !important;
    }
    .services-container {
        padding: 1.5rem;
    }
    .service-row {
        padding: 1.5rem 0;
    }
}

/* ============================================================
   # BACK TO TOP BUTTON
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: relative;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: white;
}

.button:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: rgb(181, 160, 255);
  align-items: center;
}

.button:hover .svgIcon {
  /* width: 20px; */
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.button::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: white;
  /* transition-duration: .3s; */
  font-size: 0px;
}

.button:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  /* transform: translateY(-30px); */
  transition-duration: 0.3s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
  
  /* Disable hover expansion on mobile for better touch experience */
  .button:hover {
    width: 50px;
    border-radius: 50%;
    background-color: rgb(20, 20, 20);
  }
  
  .button:hover .svgIcon {
    transform: none;
  }
  
  .button:hover::before {
    opacity: 0;
  }
}

/* ============================================================
   # THE REAL PROBLEM SECTION
============================================================ */
.real-problem-section {
    padding: 6rem 5%;
    position: relative;
}

.rp-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rp-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.rp-subtext {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.rp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
    text-align: left;
}

.rp-col-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.rp-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rp-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.problem-card {
    border-color: rgba(239, 68, 68, 0.1);
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.03) 0%, transparent 100%);
}

.problem-card p {
    margin: 0;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 500;
}

.solution-card {
    border-color: rgba(37, 99, 235, 0.2);
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
}

.solution-card h4 {
    margin: 0 0 0.5rem 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.solution-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .rp-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* ============================================================
   # NEW FINAL CTA & FOOTER
============================================================ */
.final-cta-new {
    padding: 8rem 5% 6rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
}

.cta-container-new {
    max-width: 900px;
    margin: 0 auto;
}

.cta-heading-new {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-subtext-new {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.cta-buttons-new {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.cta-contact-info {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 2rem 5%;
    background: var(--bg-dark);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
    color: #fff;
}

.footer-legal {
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   # SERVICES OFFERED SECTION
============================================================ */
.services-offered-section {
    padding: 6rem 5%;
    background: transparent;
}

.services-offered-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.services-offered-container h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

.service-img-placeholder {
    width: 100%;
    height: 250px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.service-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
