/* =============================================
   CSS VARIABLES & RESET
   ============================================= */
:root {
  --bg: #000000;
  --white: #FFFFFF;
  --card-bg: #111111;
  --card-border: #212121;
  --dark-gray: #323232;
  --gray-text: #A2A2A2;
  --cream: #EDE7DF;
  --primary-accent: #ff0000;
  --primary-dark: #d60000;
  --primary-darkest: #a80000;
  --primary-light: #ff3333;
  --green-dot: #0EC548;
  --nav-bg: #0E0E0E;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6,p,figure { margin: 0; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =============================================
   TYPOGRAPHY PRESETS
   ============================================= */
.h1-hero {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15em;
  color: var(--white);
}
.h2-standard {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15em;
  color: var(--white);
}
.h4-card {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5em;
  color: var(--white);
}
.h6-logo {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3em;
  color: var(--white);
}
.body-regular {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5em;
  color: var(--gray-text);
}
.small-caption {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4em;
  color: var(--gray-text);
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1512px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-filled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5em;
  border-radius: 8px;
  padding: 10px 20px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.btn-filled:hover { transform: translateY(-1px); opacity: 0.92; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--cream);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5em;
  border-radius: 8px;
  padding: 10px 20px;
  border: 2px solid var(--cream);
  transition: transform 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.btn-outline:hover { transform: translateY(-1px); background: rgba(237,231,223,0.08); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5em;
  border-radius: 8px;
  padding: 8px 20px;
  white-space: nowrap;
  transition: transform 0.2s ease;
}
.btn-nav:hover { transform: translateY(-1px); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav-wrapper {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 28px, 1100px);
  z-index: 1000;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(15,15,15,0.55);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
}
.nav-logo img { width: 20px; }
.logo-text { font-size: 15px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-link { color: var(--white); font-size: 14px; text-decoration: none; position: relative; }
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}
.nav-link:hover::after { width: 100%; }

#menu-toggle { display: none; }
.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; }
.hamburger span { width: 20px; height: 2px; background: var(--white); transition: 0.4s ease; }

@media (max-width: 768px) {
  .desktop-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 100px 20px;
    background: rgba(15,15,15,0.97);
    backdrop-filter: blur(20px);
    transition: right 0.4s ease;
  }
  #menu-toggle:checked ~ .nav-links { right: 0; }
  .nav-link { font-size: 18px; }
  .mobile-cta { width: 100%; text-align: center; font-size: 14px; padding: 10px; }
  #menu-toggle:checked + .desktop-cta + .hamburger span:nth-child(1) { transform: rotate(45deg) translateY(5px); }
  #menu-toggle:checked + .desktop-cta + .hamburger span:nth-child(2) { transform: rotate(-45deg) translateY(-5px); }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}
.hero-bg {
  position: absolute;
  inset: 24px;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9);
  animation: heroBgScale 0.6s cubic-bezier(0.44,0,0.56,1) 0.1s forwards;
}
@keyframes heroBgScale { to { transform: scale(1); } }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 26%; filter: saturate(1.2) brightness(1.1) contrast(1.05); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 56px;
  display: flex;
  justify-content: center;
}

/* Hero grid: copy + lead form */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
  width: 100%;
  max-width: 1180px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding-top: 12px;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 7px 16px 7px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  opacity: 0.001;
  filter: blur(5px);
  animation: revealBlur 0.8s ease 0.2s forwards;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-accent);
  box-shadow: 0 0 3px 1px var(--primary-accent);
  animation: pulseAccent 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulseAccent {
  0%, 100% { box-shadow: 0 0 3px 1px var(--primary-accent); }
  50% { box-shadow: 0 0 9px 3px var(--primary-accent); }
}
.hero-left .hero-h1 {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1em;
  color: var(--white);
  max-width: 580px;
  opacity: 0.001;
  filter: blur(8px);
  animation: revealBlur 0.8s ease 0.3s forwards;
}
.hero-left .hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  max-width: 480px;
  opacity: 0.001;
  filter: blur(5px);
  animation: revealBlur 0.8s ease 0.45s forwards;
}
@keyframes revealBlur { to { opacity: 1; filter: blur(0); } }

.hero-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0.001;
  animation: fadeInUp 0.6s ease 0.55s forwards;
}
@keyframes fadeInUp { to { opacity: 1; } }
.hero-trust-item { font-size: 14px; font-weight: 600; color: var(--white); white-space: nowrap; }
.hero-trust-divider { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.4); flex-shrink: 0; }

/* Lead form card */
.lead-form-card {
  background: rgba(17,17,17,0.94);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 32px;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  opacity: 0.001;
  transform: translateY(16px);
  animation: cardIn 0.7s ease 0.4s forwards;
}
@keyframes cardIn { to { opacity: 1; transform: translateY(0); } }
.lead-form-badge { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.lead-form-title { font-size: 24px; font-weight: 500; letter-spacing: -0.02em; color: var(--white); margin-bottom: 8px; }
.lead-form-sub { font-size: 14px; font-weight: 400; color: var(--gray-text); line-height: 1.5; margin-bottom: 24px; }

.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-text); margin-bottom: 6px; }
.form-input, .form-select {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  transition: border-color 0.2s ease;
}
.form-input::placeholder { color: #5c5c5c; }
.form-input:focus, .form-select:focus { outline: none; border-color: var(--primary-accent); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23A2A2A2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-submit { width: 100%; margin-top: 8px; padding: 14px 20px; font-size: 16px; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-microcopy { font-size: 12px; color: var(--gray-text); text-align: center; margin-top: 12px; }
.form-alt-link {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  margin-top: 16px;
  border-top: 1px solid var(--card-border);
  padding-top: 16px;
  transition: opacity 0.2s;
}
.form-alt-link:hover { opacity: 0.75; }

.form-success, .form-error { display: none; text-align: center; padding: 16px 4px; }
.form-success.visible, .form-error.visible { display: block; }
.form-success-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(14,197,72,0.12);
  color: var(--green-dot);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success-title { font-size: 20px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.form-success-desc { font-size: 14px; color: var(--gray-text); line-height: 1.5; }
.form-error-text { font-size: 14px; color: var(--primary-light); line-height: 1.5; margin-bottom: 12px; }

.green-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-dot);
  box-shadow: 0 0 3px 1px var(--green-dot);
  flex-shrink: 0;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 3px 1px var(--green-dot); }
  50% { box-shadow: 0 0 8px 3px var(--green-dot); }
}
.available-text { font-size: 13px; font-weight: 500; color: var(--gray-text); }

/* =============================================
   TRUST / CLIENT LOGO MARQUEE
   ============================================= */
.trust-bar-section { padding: 36px 24px; }
.clients-bar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  position: relative;
}
.clients-label { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.68); line-height: 1.4; max-width: 220px; min-width: 220px; flex-shrink: 0; }
.clients-marquee-wrap { flex: 1; min-width: 0; overflow: hidden; position: relative; }
.clients-marquee-wrap::before, .clients-marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 10%; z-index: 1;
}
.clients-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--card-bg), transparent); }
.clients-marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--card-bg), transparent); }
.clients-marquee { display: flex; gap: 18px; animation: marquee 190s linear infinite; width: max-content; will-change: transform; }
.client-logo { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   PROBLEM / AGITATE SECTION
   ============================================= */
.problem-section { position: relative; padding: 90px 24px; overflow: hidden; }
.problem-bg {
  position: absolute;
  inset: 0 24px;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0) 0 0 / 24px 24px,
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02)),
    #040404;
}
.problem-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.92) 78%); }
.problem-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 36px; }
.problem-text { font-size: 42px; font-weight: 500; letter-spacing: -0.03em; line-height: 1.18em; color: var(--gray-text); }
.problem-text .char { color: var(--gray-text); transition: color 0.1s ease; }
.problem-text .char.revealed { color: var(--white); }

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section { padding: 60px 24px 100px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,30,30,0.16), rgba(255,0,0,0.03));
  border: 1px solid rgba(255,70,70,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
}
.service-icon-wrap svg { width: 24px; height: 24px; }
.service-title { font-size: 22px; font-weight: 500; color: var(--white); margin-top: 4px; margin-bottom: 4px; }
.service-desc { font-size: 15px; font-weight: 500; color: var(--gray-text); line-height: 1.55; }

.tools-bar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  margin-top: 24px;
  position: relative;
}
.tools-label { font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.68); white-space: normal; max-width: 230px; min-width: 230px; line-height: 1.45; }
.tools-marquee-wrap { flex: 1; min-width: 0; overflow: hidden; position: relative; }
.tools-marquee-wrap::before, .tools-marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 10%; z-index: 1; }
.tools-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--card-bg), transparent); }
.tools-marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--card-bg), transparent); }
.tools-marquee { display: flex; gap: 16px; animation: marquee 220s linear infinite; width: max-content; will-change: transform; }
.tool-logo { width: 58px; height: 58px; object-fit: contain; flex-shrink: 0; }

/* =============================================
   PROCESS SECTION
   ============================================= */
/* =============================================
   PROCESS SECTION
============================================= */
.process-section { 
  padding: 90px 24px; 
  position: relative; 
  overflow: hidden; 
}

.process-bg {
  position: absolute;
  inset: 0 24px;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 92%, rgba(255,0,0,0.76), transparent 22%),
    radial-gradient(circle at 92% 6%, rgba(116,34,16,0.22), transparent 24%),
    linear-gradient(90deg, rgba(50,12,8,0.95), rgba(0,0,0,0.98) 66%),
    #080808;
  border: 1px solid rgba(255,255,255,0.05);
}

.process-content { 
  position: relative; 
  z-index: 1; 
  max-width: none; 
  padding: 90px 0 70px; 
}

.process-text {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15em;
  color: var(--gray-text);
  max-width: 920px;
  /* Centering the block, keeping text left-aligned */
  margin-left: auto;   
  margin-right: auto;  
  padding: 0 80px 0 0; 
  text-align: left;    /* Ensures text layout remains left-heavy */
}

.process-text .char { 
  color: var(--gray-text); 
  transition: color 0.1s ease; 
}

.process-text .char.revealed { 
  color: var(--white); 
}

.process-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 80px 84px; 
  /* Centering the grid layout, content stays left-aligned */
  margin: 110px auto 0; 
  max-width: 800px; 
  padding: 0; 
}

.process-item-title { 
  font-size: 30px; 
  font-weight: 500; 
  letter-spacing: -0.03em; 
  line-height: 1.1em; 
  color: var(--white); 
  max-width: 220px; 
  margin-bottom: 14px; 
}

.process-item-desc { 
  font-size: 15px; 
  font-weight: 500; 
  color: var(--gray-text); 
  max-width: 330px; 
  line-height: 1.55; 
}

/* =============================================
   RESULTS / PROJECTS SECTION
   ============================================= */
.projects-section { padding: 50px 24px; }
.section-heading-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; gap: 16px; }
.projects-grid-top { display: grid; grid-template-columns: repeat(8, 1fr); gap: 24px; margin-bottom: 24px; }
.project-card-large { grid-column: span 5; }
.project-card-small { grid-column: span 3; }
.projects-grid-bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card-full { grid-column: 1 / -1; }
.project-card {
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.project-card-bottom { height: 480px; }
.project-card-inner { position: absolute; inset: 0; border-radius: 16px; overflow: hidden; }
.project-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.1); transition: transform 0.5s ease; }
.project-card:hover .project-bg-img { transform: scale(1.2); }
.project-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 24px 32px; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%); z-index: 2; }
.project-service-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.project-title { font-size: 26px; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.project-tag { background: rgba(0,0,0,0.25); backdrop-filter: blur(2px); border-radius: 8px; padding: 6px 16px; font-size: 14px; font-weight: 500; color: var(--white); }

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section { padding: 90px 24px 50px; }
.stats-heading { margin-bottom: 40px; max-width: 280px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 24px; }
.stat-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 24px 0; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.stat-number { font-size: 36px; font-weight: 500; color: var(--white); letter-spacing: -0.3px; line-height: 1.112em; min-width: max-content; }
.stat-label { font-size: 16px; font-weight: 500; color: var(--gray-text); text-align: center; padding: 0 8px; }

.map-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 50px 60px; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.map-heading-row { display: flex; align-items: center; gap: 8px; }
.map-title { font-size: 26px; font-weight: 500; color: var(--white); text-align: center; }
.map-img { max-width: 100%; max-height: 420px; object-fit: contain; opacity: 0.8; }

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section { padding: 50px 24px; }
.testimonial-player { position: relative; width: 100%; height: 650px; border-radius: 16px; overflow: hidden; margin-top: 40px; }
.testimonial-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.testimonial-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.testimonial-quote { position: absolute; bottom: 100px; left: 0; right: 0; padding: 0 24px; max-width: 800px; }
.testimonial-quote-text { font-size: 32px; font-weight: 500; letter-spacing: -0.03em; line-height: 1.18em; color: var(--white); max-width: 680px; }
.testimonial-profiles { position: absolute; bottom: 0; left: 24px; right: 0; display: flex; gap: 24px; overflow-x: auto; padding: 0 0 24px 0; }
.testimonial-profiles::-webkit-scrollbar { display: none; }
.profile-btn { display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: 16px; cursor: pointer; border: 1px solid transparent; background: transparent; transition: all 0.3s ease; flex-shrink: 0; }
.profile-btn.active { background: var(--card-bg); border-color: var(--card-border); }
.profile-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-info { display: flex; flex-direction: column; gap: 2px; }
.profile-name { font-size: 14px; font-weight: 500; color: var(--white); white-space: nowrap; }
.profile-position { font-size: 14px; font-weight: 400; color: var(--gray-text); white-space: nowrap; }

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-section { padding: 50px 24px 60px; }
.pricing-cards { display: flex; gap: 24px; margin-top: 40px; align-items: stretch; }
.pricing-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 28px; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 22px; flex: 1 1 0; }
.pricing-card-custom::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 16% 0%, rgba(255,0,0,0.4), transparent 40%); pointer-events: none; }
.pricing-card > * { position: relative; z-index: 1; }
.plan-name { font-size: 16px; font-weight: 600; color: var(--white); }
.price-row { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price-amount { font-size: 40px; font-weight: 500; letter-spacing: -0.03em; color: var(--white); }
.price-period { font-size: 22px; font-weight: 500; letter-spacing: -0.03em; color: var(--white); }
.plan-desc { font-size: 15px; font-weight: 500; color: var(--white); max-width: 360px; line-height: 1.5; }
.plan-features { display: flex; flex-direction: column; gap: 12px; }
.plan-feature { display: flex; align-items: flex-start; gap: 8px; }
.check-icon { width: 16px; height: 16px; flex-shrink: 0; color: var(--white); margin-top: 2px; }
.feature-text { font-size: 15px; font-weight: 400; color: var(--white); line-height: 1.4; }
.plan-note { font-size: 13px; color: var(--gray-text); margin-top: 40px; max-width: 700px; }

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section { padding: 60px 24px 50px; }
.faq-section .container { display: flex; gap: 40px; align-items: flex-start; }
.faq-heading-col { width: 30%; max-width: 320px; }
.faq-list { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 24px; cursor: pointer; }
.faq-question-row { display: flex; align-items: center; gap: 24px; justify-content: space-between; }
.faq-question { font-size: 16px; font-weight: 500; color: var(--white); flex: 1; }
.faq-icon { width: 16px; height: 17px; color: var(--white); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { font-size: 15px; font-weight: 400; color: var(--gray-text); max-width: 600px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin-top 0.3s ease; line-height: 1.55; }
.faq-item.open .faq-answer { max-height: 220px; margin-top: 18px; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { padding: 90px 24px 110px; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.cta-bg {
  position: absolute; inset: 0 24px; border-radius: 16px; overflow: hidden;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0) 0 0 / 24px 24px,
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02)),
    #040404;
}
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.92) 78%); }
.cta-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 24px; padding-top: 20px; }
.cta-images { display: flex; align-items: center; width: 260px; height: 116px; justify-content: center; position: relative; }
.cta-img-center { width: 92px; height: 108px; border-radius: 8px; border: 1px solid var(--cream); overflow: hidden; z-index: 1; box-shadow: 8px 28px 13px rgba(0,0,0,0.6); }
.cta-img-left { position: absolute; left: 3px; bottom: -4px; width: 88px; height: 104px; border-radius: 8px; border: 1px solid var(--cream); overflow: hidden; z-index: 0; }
.cta-img-right { position: absolute; right: 3px; bottom: -4px; width: 88px; height: 104px; border-radius: 8px; border: 1px solid var(--cream); overflow: hidden; z-index: 0; }
.cta-img-center img, .cta-img-left img, .cta-img-right img { width: 100%; height: 100%; object-fit: cover; }
.cta-title { font-size: 42px; font-weight: 500; letter-spacing: -0.03em; line-height: 1.15em; color: var(--white); text-align: center; max-width: 560px; }

/* =============================================
   FOOTER
   ============================================= */
.footer { padding: 24px; position: relative; overflow: hidden; }
.footer-content { position: relative; z-index: 1; border-radius: 16px; border: 1px solid var(--card-border); overflow: hidden; }
.footer-top { display: flex; gap: 80px; padding: 60px 40px 60px; flex-wrap: wrap; }
.footer-contact { flex: 1; min-width: 260px; max-width: 460px; }
.footer-heading { font-size: 32px; font-weight: 500; letter-spacing: -0.03em; line-height: 1.18em; color: var(--white); max-width: 460px; margin-bottom: 32px; }
.footer-contact-label { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-address { font-size: 14px; font-weight: 500; color: var(--white); line-height: 1.4em; margin-bottom: 6px; }
.footer-link { font-size: 14px; font-weight: 500; color: var(--white); display: block; transition: opacity 0.2s; margin-top: 4px; }
.footer-link:hover { opacity: 0.7; }
.footer-nav-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-nav-label { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-nav-links { display: flex; flex-direction: column; gap: 14px; }
.footer-nav-link { font-size: 14px; font-weight: 500; color: var(--white); transition: opacity 0.2s; }
.footer-nav-link:hover { opacity: 0.7; }

.footer-brand-area {
  min-height: 320px;
  padding: 90px 24px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.04);
  background: linear-gradient(180deg, #7a0000 0%, #d10000 56%, #ff0000 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.footer-brand-name {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  display: block;
  font-size: clamp(110px, 16vw, 260px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.85;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 48%, rgba(255,255,255,0.08) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.footer-copyright { position: relative; z-index: 2; font-size: 16px; font-weight: 400; color: var(--white); text-align: center; padding: 24px; }

/* =============================================
   SCROLL REVEAL HELPERS
   ============================================= */
.blur-reveal { opacity: 0.001; filter: blur(8px); transition: opacity 0.7s ease, filter 0.7s ease; }
.blur-reveal.visible { opacity: 1; filter: blur(0); }
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-item { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger-item.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1199px) {
  .h1-hero { font-size: 48px; }
  .h2-standard { font-size: 30px; }
  .hero-left .hero-h1 { font-size: 42px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .container { padding: 0 16px; }
  .nav-wrapper { width: calc(100% - 28px); }
  .nav-links { display: none; }

  .hero { padding: 14px; min-height: 100svh; }
  .hero-bg { inset: 14px; }
  .hero-content { padding-top: 90px; padding-bottom: 32px; padding-left: 18px; padding-right: 18px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-left { align-items: flex-start; }
  .hero-left .hero-h1 { font-size: 34px; max-width: 100%; }
  .hero-left .hero-subtitle { font-size: 16px; max-width: 100%; }
  .hero-trust-row { row-gap: 8px; }
  .lead-form-card { max-width: 100%; padding: 22px; margin-left: 0; }

  .trust-bar-section, .problem-section, .services-section, .process-section,
  .projects-section, .stats-section, .testimonials-section, .pricing-section,
  .faq-section, .cta-section { padding-left: 14px; padding-right: 14px; }

  .clients-bar { flex-direction: column; align-items: stretch; padding: 18px; gap: 14px; }
  .clients-label { max-width: 100%; }
  .clients-marquee-wrap { width: 100%; }

  .problem-bg, .process-bg, .cta-bg { inset: 0; }
  .problem-text, .process-text { font-size: 26px; padding-right: 0; max-width: 100%; }
  .process-content { padding: 36px 0 24px; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 40px; padding: 0 14px 14px; }

  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .tools-bar { flex-direction: column; align-items: stretch; padding: 18px; }
  .tools-label { max-width: 100%; min-width: 0; }
  .tools-marquee-wrap { width: 100%; }

  .projects-grid-top { grid-template-columns: 1fr; gap: 14px; }
  .project-card-large, .project-card-small { grid-column: span 1; }
  .projects-grid-bottom { grid-template-columns: 1fr; gap: 14px; }
  .project-card, .project-card-bottom { height: 320px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .map-card { padding: 24px 16px; }

  .pricing-cards { flex-direction: column; }

  .faq-section .container { flex-direction: column; gap: 18px; }
  .faq-heading-col { width: 100%; max-width: 100%; }

  .testimonial-player { height: 560px; }
  .testimonial-quote-text { font-size: 22px; }
  .testimonial-quote { bottom: 120px; }

  .cta-title { font-size: 28px; max-width: 300px; }

  .footer-top { flex-direction: column; gap: 32px; padding: 40px 18px; }
  .footer-nav-cols { gap: 28px; }
  .footer-brand-area { min-height: 200px; padding: 24px 16px; }
  .footer-brand-name { font-size: clamp(64px, 22vw, 120px); bottom: 30px; }
}
/* =============================================
   MOTION PREFERENCE
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  .clients-marquee, .tools-marquee { animation-play-state: paused; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .nav-wrapper { top: 8px; width: calc(100% - 16px); }
  .nav-bar { padding: 10px 12px; }
  .logo-text { font-size: 14px; }

  .hero { padding: 10px; }
  .hero-bg { inset: 10px; border-radius: 12px; }
  .hero-content { padding-top: 84px; padding-bottom: 24px; padding-left: 16px; padding-right: 16px; }
  .hero-left { gap: 16px; }
  .eyebrow-pill { font-size: 12px; padding: 6px 14px 6px 10px; }
  .hero-left .hero-h1 { font-size: 28px; line-height: 1.18em; }
  .hero-left .hero-subtitle { font-size: 15px; line-height: 1.45; }
  .hero-trust-row { gap: 10px; row-gap: 8px; }
  .hero-trust-item { font-size: 12.5px; }
  .lead-form-card { padding: 18px; border-radius: 14px; }
  .lead-form-title { font-size: 20px; }

  .clients-label, .tools-label { font-size: 14px; }
  .client-logo { width: 34px; height: 34px; }
  .tool-logo { width: 46px; height: 46px; }

  .problem-text, .process-text { font-size: 21px; }
  .service-title { font-size: 19px; }
  .process-item-title { font-size: 24px; }

  .project-card, .project-card-bottom { height: 260px; }
  .project-title { font-size: 21px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-number { font-size: 28px; }
  .map-card { padding: 20px 12px; }
  .map-title { font-size: 20px; }

  .testimonial-player { height: 480px; }
  .testimonial-quote { bottom: 130px; padding: 0 16px; }
  .testimonial-quote-text { font-size: 18px; }

  .price-amount { font-size: 32px; }
  .pricing-card { padding: 20px; }

  .cta-title { font-size: 24px; max-width: 260px; }

  .footer-heading { font-size: 24px; }
  .footer-brand-name { font-size: clamp(48px, 20vw, 90px); }
}
