/* ============================================================
   FLOWMATIC AGENCY — styles.css
   Standalone CSS. No framework dependencies.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --gold: #B8860B;
  --gold-light: #D4A017;
  --gold-dark: #8B6914;
  --white: #ffffff;
  --cream: #f8f8f6;
  --bg-input: #f8f8f8;
  --text-heading: #111111;
  --text-body: #444444;
  --text-muted: #666666;
  --text-faint: #aaaaaa;
  --border: rgba(0,0,0,0.09);
  --border-hover: rgba(0,0,0,0.18);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);
  --gold-shadow: 0 0 30px rgba(184,134,11,0.2), 0 10px 30px rgba(184,134,11,0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 9999px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text-heading);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
a { text-decoration: none; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: #d0d0d0; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---- GRAIN OVERLAY ---- */
.grain-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 9999; opacity: 0.018;
  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: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; }

/* ---- SECTIONS ---- */
.section { padding: 112px 0; position: relative; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block; color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
  color: var(--text-heading); line-height: 1.08; letter-spacing: -0.02em;
}
.section-sub { color: var(--text-muted); margin-top: 16px; max-width: 520px; margin-left: auto; margin-right: auto; font-size: 1.05rem; }

/* ---- GOLD TEXT ---- */
.gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.shimmer-text {
  background: linear-gradient(90deg, var(--gold) 25%, #8B6914 50%, var(--gold) 75%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: #fff; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  padding: 14px 32px; border-radius: var(--radius-full);
  border: none; cursor: pointer; position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-gold::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--gold-shadow); }
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(184,134,11,0.5); color: var(--gold);
  font-weight: 600; font-size: 0.95rem; padding: 14px 32px;
  border-radius: var(--radius-full); background: none;
  cursor: pointer; transition: all 0.3s ease;
}
.btn-outline:hover { background: rgba(184,134,11,0.08); border-color: var(--gold); box-shadow: 0 0 20px rgba(184,134,11,0.15); }

.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-arrow { display: inline-block; transition: transform 0.25s ease; }
.btn-gold:hover .btn-arrow, .btn-outline:hover .btn-arrow { transform: translateX(4px); }

/* ---- CARD HOVER ---- */
.card-hover { transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), border-color 0.3s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 0 30px rgba(184,134,11,0.12), 0 20px 60px rgba(0,0,0,0.08); border-color: rgba(184,134,11,0.35) !important; }

/* ---- DIVIDER ---- */
.divider-gold { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.25; margin-bottom: 80px; }

/* ---- ANIMATIONS ---- */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse-gold-anim { 0%,100% { box-shadow: 0 0 6px rgba(184,134,11,0.5); } 50% { box-shadow: 0 0 16px rgba(184,134,11,0.9); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.float-anim { animation: float 4s ease-in-out infinite; }
.float-anim-slow { animation: float2 6s ease-in-out infinite; }
.float-anim-fast { animation: float 3s ease-in-out infinite; }
.pulse-gold { animation: pulse-gold-anim 2.5s ease-in-out infinite; }

/* ---- REVEAL ON SCROLL ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay { transition-delay: 0.25s; }

/* ---- GLASS ---- */
.glass-gold {
  background: rgba(184,134,11,0.06);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(184,134,11,0.18);
}

/* ==================================================
   NAVBAR
   ================================================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-size: 1.5rem; font-weight: 900; color: var(--text-heading);
  letter-spacing: -0.02em; position: relative; white-space: nowrap;
}
.logo-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); position: absolute; top: -2px; right: -12px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 0.875rem; font-weight: 500; color: #555;
  letter-spacing: 0.02em; transition: color 0.25s;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-link:hover { color: var(--gold); }
.nav-cta { font-size: 0.875rem !important; padding: 10px 24px !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-heading); border-radius: 2px; transition: all 0.3s; }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transform: translateX(100%);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.mobile-menu.open { opacity: 1; pointer-events: all; transform: translateX(0); }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  font-size: 2rem; color: var(--text-heading); background: none; border: none; cursor: pointer; line-height: 1;
}
.mobile-link { font-size: 1.5rem; font-weight: 600; color: var(--text-heading); background: none; border: none; cursor: pointer; transition: color 0.25s; }
.mobile-link:hover { color: var(--gold); }
.mobile-cta { font-size: 1rem !important; padding: 14px 36px !important; margin-top: 8px; }

/* ==================================================
   HERO
   ================================================== */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 80px; overflow: hidden;
}
.animated-gradient-bg {
  background: linear-gradient(-45deg, #ffffff, #fdfaf0, #fffbeb, #ffffff);
  background-size: 400% 400%; animation: gradientShift 15s ease infinite;
}
.hero-grid {
  background-image:
    linear-gradient(rgba(184,134,11,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,134,11,0.055) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(184,134,11,0.07) 0%, transparent 70%);
}
.hero-container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding-top: 60px; padding-bottom: 80px;
  position: relative; z-index: 2;
}
.hero-left { display: flex; flex-direction: column; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: var(--radius-full); padding: 8px 18px;
  margin-bottom: 28px; align-self: flex-start;
  font-size: 0.8125rem; font-weight: 500; color: var(--gold); letter-spacing: 0.01em;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 900;
  line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 24px; color: var(--text-heading);
}
.hero-sub { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 40px; max-width: 520px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 52px; }
.hero-trust { }
.trust-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: #888; font-weight: 500; margin-bottom: 14px; }
.trust-brands { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-brands span { font-size: 0.875rem; font-weight: 600; color: #bbb; transition: color 0.25s; cursor: default; }
.trust-brands span:hover { color: var(--gold); }

/* Dashboard */
.hero-right { position: relative; display: flex; align-items: center; justify-content: center; }
.dashboard-card {
  width: 100%; max-width: 420px;
  background: var(--white); border-radius: 20px;
  padding: 28px; border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 0 30px rgba(184,134,11,0.15), 0 0 60px rgba(184,134,11,0.06), var(--shadow-lg);
}
.dashboard-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.dash-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: #888; margin-bottom: 4px; }
.dash-value { font-size: 2rem; font-weight: 900; color: var(--text-heading); line-height: 1; }
.dash-lift { font-size: 0.75rem; font-weight: 600; color: #16a34a; margin-top: 4px; }
.dash-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(184,134,11,0.1); border: 1px solid rgba(184,134,11,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chart-bars {
  display: flex; align-items: flex-end; gap: 4px;
  height: 88px; margin-bottom: 10px;
}
.bar { flex: 1; border-radius: 3px; background: #e8e8e8; }
.bar-gold { background: linear-gradient(to top, #B8860B, #D4A017); }
.chart-labels {
  display: flex; justify-content: space-between;
  font-size: 0.7rem; color: #aaa; margin-bottom: 18px;
}
.dash-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.dash-metric { background: #f5f5f5; border-radius: 12px; padding: 10px; text-align: center; }
.metric-val { font-size: 0.875rem; font-weight: 700; color: var(--gold); }
.metric-lbl { font-size: 0.65rem; color: #888; margin-top: 2px; }

/* Floating stat cards */
.stat-card {
  position: absolute; background: var(--white);
  border-radius: 16px; padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.08);
}
.stat-card-1 { top: 12px; right: -16px; }
.stat-card-2 { bottom: 80px; left: -16px; }
.stat-card-3 { bottom: 0; right: 24px; }
.stat-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-val { font-size: 1.1rem; font-weight: 900; color: var(--text-heading); line-height: 1; }
.stat-lbl { font-size: 0.7rem; color: #888; margin-top: 2px; }
.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px; pointer-events: none;
  background: linear-gradient(to top, #ffffff, transparent);
}

/* ==================================================
   TRUST / RESULTS
   ================================================== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
.stat-box {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.stat-number { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 8px; line-height: 1; }
.stat-desc { color: var(--text-muted); font-size: 0.875rem; font-weight: 500; }

.wins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.win-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.win-bar { position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 12px; border-radius: var(--radius-full);
  background: rgba(184,134,11,0.1); color: var(--gold);
  border: 1px solid rgba(184,134,11,0.2); margin-bottom: 16px;
}
.win-metric { font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.win-metric-lbl { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; margin-bottom: 12px; }
.win-desc { font-size: 0.875rem; color: var(--text-body); line-height: 1.65; margin-bottom: 16px; }
.win-company { font-size: 0.7rem; color: #bbb; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }

/* ==================================================
   SERVICES — BENTO GRID
   ================================================== */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 18px; }
.bento-primary {
  grid-column: span 2;
  background: var(--white); border-radius: var(--radius);
  padding: 36px; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.top-bar-gold {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.7;
}
.service-icon-lg {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(184,134,11,0.1); border: 1px solid rgba(184,134,11,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.bento-primary-title { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.bento-primary-title h3 { font-size: 1.4rem; font-weight: 900; color: var(--text-heading); }
.badge-primary {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 3px 10px; border-radius: var(--radius-full);
  background: var(--gold); color: #fff; white-space: nowrap;
}
.bento-desc { color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; max-width: 480px; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-bottom: 24px; }
.feature-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: #333; }
.check-icon { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.bento-cta-line { font-size: 0.875rem; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 6px; }

.bento-secondary {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.service-icon-sm {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(184,134,11,0.1); border: 1px solid rgba(184,134,11,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.service-title { font-size: 1rem; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.service-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ==================================================
   PROCESS
   ================================================== */
.process-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 40% at 50% 50%, rgba(184,134,11,0.04) 0%, transparent 70%);
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; position: relative;
}
.process-grid::before {
  content: '';
  position: absolute; top: 56px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,134,11,0.25) 20%, rgba(184,134,11,0.25) 80%, transparent);
  pointer-events: none;
}
.process-step { display: flex; flex-direction: column; align-items: flex-start; }
.step-icon-wrap { position: relative; margin-bottom: 24px; }
.step-icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--white);
  border: 1.5px solid rgba(184,134,11,0.3);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); transition: transform 0.3s;
}
.process-step:hover .step-icon { transform: scale(1.1); }
.step-number {
  position: absolute; top: -8px; right: -8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: #fff;
  font-size: 0.65rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.step-number-alt { background: var(--gold-light); }
.step-title { font-size: 1.15rem; font-weight: 900; color: var(--text-heading); margin-bottom: 12px; }
.step-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.process-cta { text-align: center; margin-top: 64px; }

/* ==================================================
   CASE STUDIES
   ================================================== */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.case-bar { height: 4px; width: 100%; }
.case-top { display: flex; align-items: center; justify-content: space-between; padding: 24px 24px 0; margin-bottom: 20px; }
.case-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 12px; border-radius: var(--radius-full); border: 1px solid;
}
.case-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.case-metric { font-size: 3rem; font-weight: 900; line-height: 1; padding: 0 24px; margin-bottom: 4px; }
.case-metric-lbl { font-size: 0.8rem; color: var(--text-muted); padding: 0 24px; margin-bottom: 12px; }
.case-title { font-size: 1.05rem; font-weight: 900; color: var(--text-heading); padding: 0 24px; margin-bottom: 12px; line-height: 1.3; }
.case-story { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; padding: 0 24px; margin-bottom: 20px; flex: 1; }
.case-tags { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 24px; margin-bottom: 20px; }
.case-tags span { font-size: 0.7rem; padding: 4px 10px; border-radius: var(--radius-full); background: #f0f0f0; color: #666; border: 1px solid rgba(0,0,0,0.08); }
.case-btn { display: block; font-size: 0.875rem; font-weight: 700; padding: 0 24px 24px; background: none; border: none; cursor: pointer; transition: opacity 0.2s; }
.case-btn:hover { opacity: 0.7; }

/* ==================================================
   WHY US
   ================================================== */
.why-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(184,134,11,0.04) 0%, transparent 70%);
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.bottom-bar-hover {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184,134,11,0.5), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.why-card:hover .bottom-bar-hover { opacity: 1; }
.why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(184,134,11,0.1); border: 1px solid rgba(184,134,11,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background 0.3s;
}
.why-card:hover .why-icon { background: rgba(184,134,11,0.15); }
.why-card h3 { font-size: 1rem; font-weight: 800; color: var(--text-heading); margin-bottom: 10px; }
.why-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ==================================================
   TESTIMONIALS
   ================================================== */
.testimonials-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(184,134,11,0.04) 0%, transparent 70%);
}
.carousel-wrap { max-width: 760px; margin: 0 auto; }
.carousel-card {
  background: #fdfaf0; border-radius: var(--radius);
  padding: 52px 56px; border: 1px solid rgba(184,134,11,0.15);
  position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.carousel-top-bar { position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 4px; margin-bottom: 24px; }
.carousel-quote {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem); font-weight: 500;
  color: #222; line-height: 1.65; margin-bottom: 36px;
}
.carousel-author { display: flex; align-items: center; gap: 16px; }
.carousel-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 900; color: #fff; flex-shrink: 0;
}
.carousel-name { font-size: 0.95rem; font-weight: 700; color: var(--text-heading); margin-bottom: 2px; }
.carousel-title { font-size: 0.8rem; color: var(--text-muted); }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.carousel-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: #666; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: all 0.25s;
}
.carousel-btn:hover { color: var(--gold); border-color: rgba(184,134,11,0.3); }
.carousel-dots { display: flex; gap: 6px; align-items: center; }
.carousel-dot {
  height: 6px; border-radius: var(--radius-full);
  background: rgba(0,0,0,0.15); cursor: pointer;
  transition: all 0.3s; border: none;
  width: 8px;
}
.carousel-dot.active { width: 28px; background: var(--gold); }
.carousel-dot:hover { background: rgba(0,0,0,0.3); }

/* ==================================================
   FAQ
   ================================================== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border-radius: var(--radius-sm);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open {
  border-color: rgba(184,134,11,0.3);
  box-shadow: 0 0 20px rgba(184,134,11,0.08);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 24px; background: none; border: none; cursor: pointer;
  text-align: left; transition: background 0.2s;
}
.faq-question:hover { background: rgba(0,0,0,0.02); }
.faq-question span:first-child { font-size: 0.9375rem; font-weight: 600; color: var(--text-heading); line-height: 1.4; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: #f0f0f0; color: #666;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--gold); color: #fff; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22,1,0.36,1), padding 0.35s;
  padding: 0 24px;
}
.faq-answer.open { max-height: 400px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* ==================================================
   CONTACT
   ================================================== */
.contact-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(184,134,11,0.04) 0%, transparent 70%);
}
.contact-title { font-size: clamp(2rem, 5vw, 3.5rem) !important; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
.contact-info-card {
  background: #f8f8f6; border-radius: var(--radius-sm);
  padding: 20px; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 16px;
}
.contact-info-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(184,134,11,0.1); border: 1px solid rgba(184,134,11,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: #888; margin-bottom: 3px; }
.info-val { font-size: 0.875rem; font-weight: 600; color: var(--text-heading); transition: color 0.25s; }
a.info-val:hover { color: var(--gold); }

.form-wrap {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden;
}
.form-top-bar {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.7;
}
form { padding: 48px 52px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: #333; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: #f8f8f8; border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px; padding: 14px 18px;
  font-size: 0.875rem; color: var(--text-heading);
  outline: none; transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(184,134,11,0.5); background: #fff;
  box-shadow: 0 0 0 3px rgba(184,134,11,0.08);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #ef4444 !important; }
.form-group textarea { resize: none; }
.form-group select { cursor: pointer; }
.field-error { font-size: 0.75rem; color: #ef4444; margin-top: 5px; display: flex; align-items: center; gap: 4px; min-height: 18px; }

.robot-group { margin-top: 4px; margin-bottom: 28px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.custom-checkbox {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0; margin-top: 1px;
  border: 2px solid rgba(0,0,0,0.2); background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; cursor: pointer;
}
input[type="checkbox"]:checked + .custom-checkbox {
  background: var(--gold); border-color: var(--gold);
}
input[type="checkbox"]:checked + .custom-checkbox::after {
  content: ''; display: block; width: 10px; height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.custom-checkbox.error-border { border-color: #ef4444; }
.checkbox-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }

.btn-submit { width: 100%; max-width: 360px; justify-content: center; font-size: 1rem; padding: 16px 40px; }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none !important; }

.form-success { padding: 60px 52px; text-align: center; }
.success-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 24px;
  background: rgba(184,134,11,0.1); border: 2px solid rgba(184,134,11,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gold);
}
.form-success h3 { font-size: 1.75rem; font-weight: 900; color: var(--text-heading); margin-bottom: 12px; }
.form-success p { color: var(--text-muted); max-width: 400px; margin: 0 auto; }

/* ==================================================
   FOOTER
   ================================================== */
.site-footer { background: var(--cream); border-top: 1px solid rgba(0,0,0,0.08); }
.site-footer .container { padding-top: 80px; padding-bottom: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-logo {
  font-size: 1.5rem; font-weight: 900; color: var(--text-heading);
  letter-spacing: -0.02em; position: relative; display: inline-block;
  margin-bottom: 16px;
}
.footer-logo .logo-dot { position: absolute; top: -2px; right: -12px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; max-width: 280px; }
.footer-newsletter-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #333; margin-bottom: 12px; }
.footer-form { display: flex; gap: 8px; margin-bottom: 20px; }
.footer-form input {
  flex: 1; min-width: 0; background: var(--white);
  border: 1px solid rgba(0,0,0,0.1); border-radius: 10px;
  padding: 10px 16px; font-size: 0.875rem; color: var(--text-heading);
  outline: none; transition: border-color 0.3s;
}
.footer-form input::placeholder { color: #aaa; }
.footer-form input:focus { border-color: rgba(184,134,11,0.4); }
.footer-join { font-size: 0.8rem !important; padding: 10px 18px !important; border-radius: 10px !important; white-space: nowrap; }
.footer-subscribed { font-size: 0.875rem; font-weight: 600; color: var(--gold); }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--white); border: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #666; box-shadow: var(--shadow-sm); transition: all 0.25s;
}
.social-btn:hover { color: var(--gold); border-color: rgba(184,134,11,0.3); }
.footer-col h3 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #333; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.875rem; color: #888; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom-bar { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.2; margin-bottom: 24px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom p, .footer-made { font-size: 0.75rem; color: #aaa; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.75rem; color: #aaa; transition: color 0.25s; }
.footer-legal a:hover { color: var(--gold); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ==================================================
   RESPONSIVE
   ================================================== */
@media (max-width: 1100px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-primary { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .wins-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-primary { grid-column: span 1; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-grid::before { display: none; }
  .cases-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  form { padding: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .carousel-card { padding: 36px 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .carousel-card { padding: 28px 20px; }
  form { padding: 24px 20px; }
  .form-success { padding: 40px 20px; }
}
