/* ═══════════════════════════════════════════════════════════════
   HIRELOOP — Premium Landing Page Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --bg: #030303;
  --bg-soft: #080808;
  --card: #0B0B0B;
  --card-soft: #101010;
  --border: rgba(255,255,255,0.12);
  --border-soft: rgba(255,255,255,0.08);
  --text: #F5F2EA;
  --text-muted: #A7A7A7;
  --text-soft: #767676;
  --gold: #D7B84F;
  --gold-bright: #F0D36B;
  --gold-dark: #8F7425;
  --text-secondary: #A7A7A7;
  --white: #FFFFFF;
  --black: #000000;

  --font-heading: 'Sora', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --section-spacing: 120px;
  --header-height: 72px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* ── Noise Overlay ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ── Typography ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.01em;
}

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

.text-gold {
  color: var(--gold);
}

/* ── Sections ── */
.section {
  padding: var(--section-spacing) 0;
  position: relative;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 0 30px rgba(215, 184, 79, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(3, 3, 3, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--transition), border-color var(--transition);
}

.header.scrolled {
  background: rgba(3, 3, 3, 0.92);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.logo-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link svg {
  width: 9px;
  height: 9px;
  opacity: 0.5;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(11, 11, 11, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all var(--transition);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-muted);
  transition: all var(--transition);
}

.nav-dropdown-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.coming-soon-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: rgba(215, 184, 79, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(3, 3, 3, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 999;
  padding: 24px;
  transform: translateY(-110%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.mobile-nav-link {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  transition: color var(--transition);
}

.mobile-nav-link:hover {
  color: var(--white);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(215, 184, 79, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.trust-icon {
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 60px rgba(215, 184, 79, 0.12));
}


/* ═══════════════════════════════════════════
   TRUSTED BY
   ═══════════════════════════════════════════ */
.trusted-by {
  padding: 60px 0 80px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.trusted-label {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 40px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trusted-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-soft);
  opacity: 0.5;
  transition: all var(--transition);
  letter-spacing: -0.01em;
}

.trusted-logo:hover {
  opacity: 1;
  color: var(--text-muted);
}

.trusted-logo svg {
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(215, 184, 79, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(215, 184, 79, 0.08);
  border: 1px solid rgba(215, 184, 79, 0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.service-title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.service-link:hover {
  border-color: var(--gold);
  background: rgba(215, 184, 79, 0.1);
}

/* ═══════════════════════════════════════════
   WHY HIRELOOP
   ═══════════════════════════════════════════ */
.why-section {
  border-top: 1px solid var(--border-soft);
}

.why-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 200px;
  max-width: 220px;
}

.why-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(215, 184, 79, 0.06);
  border: 1px solid rgba(215, 184, 79, 0.12);
  border-radius: 50%;
}

.why-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.why-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════ */
.process-section {
  border-top: 1px solid var(--border-soft);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}

.process-line {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-dark));
  opacity: 0.4;
}

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

.process-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}

.process-number span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

.process-step-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 180px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   FEATURED WORK
   ═══════════════════════════════════════════ */
.work-section {
  border-top: 1px solid var(--border-soft);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border-soft);
  transition: all var(--transition);
}

.work-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.work-card-image {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.work-card-novapay { background: linear-gradient(135deg, #0a1a0a 0%, #0f1a0f 100%); }
.work-card-lumen { background: linear-gradient(135deg, #1a1508 0%, #0f0d06 100%); }
.work-card-verve { background: linear-gradient(135deg, #0a1a18 0%, #060f0d 100%); }
.work-card-nexora { background: linear-gradient(135deg, #0a0f1a 0%, #060a14 100%); }

.work-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  z-index: 2;
}

/* CSS Mockup visuals */
.work-mockup {
  width: 100%;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}

.mockup-bar {
  height: 8px;
  width: 60%;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  margin-bottom: 16px;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.mockup-bar-v {
  flex: 1;
  background: linear-gradient(to top, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.3));
  border-radius: 3px 3px 0 0;
}

.mockup-text-block {
  height: 24px;
  width: 80%;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  margin-bottom: 10px;
}

.mockup-text-line {
  height: 8px;
  width: 100%;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  margin-bottom: 8px;
}

.mockup-text-line.short {
  width: 60%;
}

.mockup-text-line.flex-1 {
  flex: 1;
}

.mockup-grid-sm {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.mockup-square {
  width: 40px;
  height: 40px;
  background: rgba(215, 184, 79, 0.08);
  border: 1px solid rgba(215, 184, 79, 0.12);
  border-radius: 6px;
}

.mockup-product {
  width: 60px;
  height: 80px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(45, 212, 191, 0.2));
  border-radius: 8px;
  margin: 0 auto 12px;
}

.mockup-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.mockup-row:last-child {
  margin-bottom: 0;
}

.mockup-circle-sm {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.15);
  flex-shrink: 0;
}

.work-card-body {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.work-card-category {
  font-size: 13px;
  color: var(--text-muted);
}

.work-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  transition: color var(--transition);
}

.work-card-link:hover {
  color: var(--gold-bright);
}

.work-card-link svg {
  width: 12px;
  height: 12px;
}

/* ═══════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════ */
.stats-section {
  padding: 0;
  margin-bottom: -40px;
}

.stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 40px 48px;
  background: linear-gradient(135deg, rgba(215, 184, 79, 0.04) 0%, rgba(215, 184, 79, 0.02) 100%);
  border: 1px solid rgba(215, 184, 79, 0.12);
  border-radius: var(--radius-lg);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.stat-icon {
  margin-bottom: 8px;
  opacity: 0.7;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-section {
  border-top: 1px solid var(--border-soft);
}

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

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border);
}

.testimonial-quote {
  position: relative;
  margin-bottom: 28px;
}

.quote-mark {
  margin-bottom: 16px;
  display: block;
}

.testimonial-quote p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(215, 184, 79, 0.1);
  border: 1px solid rgba(215, 184, 79, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.author-role {
  font-size: 12px;
  color: var(--text-soft);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-section {
  border-top: 1px solid var(--border-soft);
}

.faq-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.faq-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  transition: color var(--transition);
  margin-bottom: 8px;
}

.faq-view-all:hover {
  color: var(--gold-bright);
}

.faq-view-all svg {
  width: 12px;
  height: 12px;
}

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

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
  gap: 16px;
}

.faq-question:hover {
  color: var(--white);
}

.faq-toggle {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-soft);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
.cta-section {
  padding-bottom: 100px;
}

.cta-box {
  position: relative;
  text-align: center;
  padding: 80px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(11, 11, 11, 0.9) 0%, rgba(16, 16, 16, 0.9) 100%);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(215, 184, 79, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  padding-top: 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-icon {
  width: 28px;
  height: 28px;
}

.footer-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  transition: color var(--transition);
}

.footer-email:hover {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: color var(--transition);
}

.footer-socials a:hover {
  color: var(--white);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-soft);
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-spacing: 96px;
  }

  .nav { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image {
    max-width: 360px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

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

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

  .why-grid {
    flex-wrap: wrap;
    gap: 24px;
  }

  .why-item {
    min-width: 45%;
    max-width: none;
  }

  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .process-line {
    top: 22px;
    left: 50%;
    right: auto;
    width: 2px;
    height: calc(100% - 44px);
  }

  .process-step {
    max-width: 300px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 72px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .stats-bar {
    flex-direction: column;
    gap: 28px;
    padding: 32px 24px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .trusted-logos {
    gap: 24px;
  }

  .why-item {
    min-width: 100%;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-box {
    padding: 56px 24px;
  }

  .hero-image {
    max-width: 280px;
  }

  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .hero-image {
    max-width: 240px;
  }
}

/* ── Focus States ── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── Selection ── */
::selection {
  background: rgba(215, 184, 79, 0.3);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   FORM PAGES
   ═══════════════════════════════════════════ */
.page-form {
  padding-top: calc(var(--header-height) + 60px);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.form-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.form-header {
  text-align: center;
  margin-bottom: 48px;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(215, 184, 79, 0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23767676' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
}

.form-checkbox-group input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

.consent-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   ALERTS
   ═══════════════════════════════════════════ */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: #4ADE80;
}

.alert-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #EF4444;
}

/* ═══════════════════════════════════════════
   MODALS
   ═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  background: none;
  transition: all var(--transition);
}

.modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.modal-deliverables {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}

.modal-deliverables li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.modal-deliverables li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   THANK YOU PAGE
   ═══════════════════════════════════════════ */
.thank-you-page {
  padding-top: calc(var(--header-height) + 60px);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.thank-you-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════ */
.legal-page {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
}

.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin: 32px 0 12px;
  color: var(--white);
}

.legal-content h3 {
  font-size: 16px;
  margin: 24px 0 8px;
  color: var(--text);
}

.legal-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ═══════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════ */
.newsletter-section {
  padding-bottom: 0;
}

.newsletter-box {
  text-align: center;
  padding: 60px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(11, 11, 11, 0.9) 0%, rgba(16, 16, 16, 0.9) 100%);
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.newsletter-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  gap: 10px;
  width: 100%;
}

.newsletter-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 14px 24px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition);
}

.newsletter-input::placeholder {
  color: var(--text-soft);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
}

.newsletter-btn {
  border-radius: 100px;
  white-space: nowrap;
}

.newsletter-msg {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  min-height: 20px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Form, Modal & Page additions
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 36px 24px;
  }

  .modal {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .form-card {
    padding: 32px 20px;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }
}

.section-subtitle {
  color: var(--text-secondary, #A7A7A7);
  font-size: 1.05rem;
  line-height: 1.7;
}
