/* =============================================
   APEX — Business Landing Page
   style.css
   ============================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #C9A84C;
  --gold-light: #E4C47A;
  --gold-dark: #8B6914;
  --bg-dark: #0A0A08;
  --bg-card: #111110;
  --bg-card2: #161614;
  --text-primary: #F0EDE6;
  --text-secondary: #8A8780;
  --text-muted: #4A4844;
  --border: rgba(201, 168, 76, 0.15);
  --border-subtle: rgba(240, 237, 230, 0.08);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  --radius: 2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; }

.container-wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-padding {
  padding: 120px 0;
}

/* ---- NOISE OVERLAY ---- */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ---- CURSOR ---- */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-trail {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}

body:has(a:hover) .cursor { width: 12px; height: 12px; background: var(--gold-light); }

/* ---- NAVIGATION ---- */
.nav-bar {
  background: rgba(10, 10, 8, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.nav-bar.scrolled {
  background: rgba(10, 10, 8, 0.95);
  border-bottom-color: var(--border);
}

.logo { display: flex; align-items: baseline; gap: 1px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-primary);
}
.logo-dot { color: var(--gold); font-size: 1.8rem; font-weight: 700; line-height: 1; }

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { transform: scaleX(1); }

.cta-nav {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 22px;
  transition: all 0.25s;
}
.cta-nav:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* BURGER */
.burger {
  background: none;
  border: none;
  cursor: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px 40px;
  z-index: 40;
  transform: translateY(-110%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mob-link {
  display: block;
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s;
}
.mob-link:hover { color: var(--gold); }

/* ---- HERO ---- */
.hero-section {
  min-height: 100vh;
  background: var(--bg-dark);
  position: relative;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
}

.hero-gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  bottom: 100px; left: 10%;
  animation: blobFloat 12s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 32px;
}
.title-italic {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 420px;
  letter-spacing: 0.03em;
}

/* BUTTONS */
.hero-actions { display: flex; align-items: center; gap: 28px; margin-bottom: 80px; flex-wrap: wrap; }

.btn-primary {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 16px 36px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary { position: relative; z-index: 1; }

.btn-ghost {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--gold); }

.btn-primary-large {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 20px 52px;
  transition: all 0.3s;
  margin-top: 32px;
}
.btn-primary-large:hover { background: var(--gold-light); transform: translateY(-2px); }

/* STATS */
.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  padding: 0 40px 0 0;
}
.stat-item:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.stat-suffix { font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
.stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 40px 0 0;
}

/* SCROLL HINT */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* FLOAT CARD */
.float-card {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px 32px;
  min-width: 220px;
  animation: cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50% { transform: translateY(-50%) translateY(-12px); }
}
.float-card-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.float-card-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.float-card-sub {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.float-card-bar {
  height: 3px;
  background: var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
}
.float-card-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  animation: progressFill 2s 1s forwards ease-out;
}
@keyframes progressFill { to { width: 84%; } }

/* ---- MARQUEE ---- */
.marquee-section {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  padding: 18px 0;
  background: rgba(201,168,76,0.02);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.marquee-dot { color: var(--gold) !important; font-size: 0.5rem !important; }

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

/* ---- SECTION HEADERS ---- */
.section-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---- ABOUT ---- */
.about-section { background: var(--bg-dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  width: 280px;
  height: 280px;
  margin-top: 40px;
}
.about-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--border);
}
.ring-1 { width: 100%; height: 100%; animation: ringRotate 20s linear infinite; }
.ring-2 { width: 70%; height: 70%; border-style: dashed; border-color: var(--gold-dark); animation: ringRotate 14s linear infinite reverse; }
.ring-3 { width: 40%; height: 40%; background: rgba(201,168,76,0.06); border-color: var(--gold); }
@keyframes ringRotate { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }

.about-center-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.about-center-text span {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-center-text small {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-lead {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: italic;
}

.about-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 40px;
}

.about-features { display: flex; flex-direction: column; gap: 24px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-feature strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.about-feature p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- PILLARS ---- */
.pillars-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-subtle);
}

.pillar-card {
  background: var(--bg-card);
  padding: 48px 36px;
  position: relative;
  transition: background 0.3s;
  cursor: default;
}
.pillar-card:hover { background: var(--bg-card2); }
.pillar-card:hover .pillar-arrow { opacity: 1; transform: translateX(6px); }

.pillar-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--border-subtle);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.pillar-card:hover .pillar-number { color: rgba(201,168,76,0.15); }

.pillar-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.pillar-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transition: all 0.3s;
}

/* ---- SERVICES ---- */
.services-section { background: var(--bg-dark); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}
.services-intro {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 320px;
  line-height: 1.8;
  text-align: right;
}

.services-list { display: flex; flex-direction: column; }

.service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s;
  cursor: default;
}
.service-row:hover { padding-left: 20px; border-bottom-color: var(--border); }
.service-row:hover .service-num { color: var(--gold); }

.service-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.service-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.service-info p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  max-width: 380px;
}

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.service-tags span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  padding: 5px 12px;
}

.service-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

/* ---- CASES ---- */
.cases-section { background: var(--bg-card); }

.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border-subtle);
}

.case-card {
  background: var(--bg-card);
  padding: 48px;
  transition: background 0.3s;
  cursor: default;
}
.case-card:hover { background: var(--bg-card2); }
.case-large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.case-industry {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.case-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.case-large .case-title { font-size: 3rem; }

.case-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.case-metrics { display: flex; gap: 40px; margin-bottom: 24px; }
.case-metric { display: flex; flex-direction: column; }
.metric-val {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.metric-key {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.case-tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.case-tag-row span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  padding: 5px 14px;
}

/* ---- PROCESS ---- */
.process-section { background: var(--bg-dark); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-circle {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--bg-dark);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: all 0.3s;
}
.step-circle:hover { background: var(--gold); color: var(--bg-dark); }

.step-line {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step-content {
  text-align: center;
  padding: 20px 16px 0;
}
.step-content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 48px;
  position: relative;
  transition: background 0.3s;
}
.testimonial-card:hover { background: var(--bg-card2); }

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.7;
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.testimonial-author { display: flex; gap: 14px; align-items: center; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--bg-dark);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}
.testimonial-author span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, #0F0E0A 0%, #1A1608 50%, #0F0E0A 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: blobFloat 6s ease-in-out infinite;
}

.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
}
.cta-content em { color: var(--gold); font-style: italic; }
.cta-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 16px;
}

/* ---- CONTACT ---- */
.contact-section { background: var(--bg-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.contact-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin: 24px 0 40px;
  max-width: 320px;
}

.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--gold); }
.contact-address { font-size: 0.82rem; color: var(--text-muted); }

/* FORM */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 14px 18px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.btn-submit {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  padding: 18px;
  cursor: none;
  transition: all 0.3s;
  font-family: var(--font-body);
  margin-top: 8px;
}
.btn-submit:hover { background: var(--gold-light); }

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col strong {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { display: none; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .case-large { grid-column: 1 / -1; grid-row: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 80px 0; }
  .container-wide { padding: 0 24px; }
  .hero-content { padding: 0 24px; padding-top: 110px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .float-card { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: flex-start; gap: 32px; }
  .step-line { display: none; }
  .process-step { flex-direction: row; gap: 20px; align-items: flex-start; }
  .step-content { padding-top: 0; text-align: left; }
  .service-row { grid-template-columns: 48px 1fr; gap: 16px; }
  .service-tags, .service-price { display: none; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-intro { text-align: left; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}
