/* ========================================
   FURTOZA LABS — DESIGN SYSTEM
   ======================================== */

/* --- Custom Properties --- */
:root {
  --soft-apricot: #F3B77C;
  --coral-peach: #F08B6C;
  --dusty-mauve: #B98C9A;
  --muted-indigo: #355C94;

  --warm-ivory: #E8D6AF;
  --signal-red: #EE4B2B;
  --golden-amber: #F8B70C;

  --off-white: #F8F5EF;
  --warm-gray: #E7DED8;
  --slate-gray: #6F7485;
  --deep-charcoal: #1E2430;

  --text-primary: #1E2430;
  --text-secondary: #6F7485;
  --bg-primary: #F8F5EF;
  --bg-white: #FFFFFF;

  --section-py: 120px;
  --container-max: 1180px;
  --header-h: 72px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, button, select { font: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.125rem; }

.label {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.text-lg { font-size: 1.1875rem; line-height: 1.7; }
.text-sm { font-size: 0.9375rem; }

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius-xl);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--signal-red);
  color: #fff;
}
.btn-primary:hover {
  background: #d63e20;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(238, 75, 43, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--deep-charcoal);
}
.btn-secondary:hover {
  background: var(--deep-charcoal);
  color: #fff;
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-light:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-amber {
  background: var(--golden-amber);
  color: var(--deep-charcoal);
}
.btn-amber:hover {
  background: #e5a600;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(248, 183, 12, 0.35);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.9375rem;
}

.btn-arrow::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.3s ease;
}
.btn-primary .btn-arrow::after,
.btn-light .btn-arrow::after {
  filter: brightness(100);
}
.btn:hover .btn-arrow::after {
  transform: translateX(4px);
}

/* --- Forms (shared) --- */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--warm-gray);
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-control:focus {
  outline: none;
  border-color: var(--muted-indigo);
  box-shadow: 0 0 0 3px rgba(53, 92, 148, 0.12);
}
.form-control::placeholder {
  color: var(--slate-gray);
  opacity: 0.7;
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236F7485' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

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

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}

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

.header.scrolled {
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(30, 36, 48, 0.06);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.logo-img {
  height: 34px;
  width: auto;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.35s;
}
.header.scrolled .logo-text {
  color: var(--deep-charcoal);
}

/* Header on inner pages (always dark text) */
.header-dark .logo-text,
.header-dark .nav-link {
  color: var(--deep-charcoal) !important;
}
.header-dark {
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(30, 36, 48, 0.06);
}

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

.nav-link {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: color 0.3s, background 0.3s;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.header.scrolled .nav-link {
  color: var(--text-secondary);
}
.header.scrolled .nav-link:hover {
  color: var(--text-primary);
  background: rgba(30, 36, 48, 0.05);
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 24px;
  background: rgba(255,255,255,0.15);
  color: #fff !important;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(255,255,255,0.3);
  font-weight: 600;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.25) !important;
  color: #fff !important;
}
.header.scrolled .nav-cta {
  background: var(--signal-red);
  color: #fff !important;
  border-color: var(--signal-red);
}
.header.scrolled .nav-cta:hover {
  background: #d63e20 !important;
}
.header-dark .nav-cta {
  background: var(--signal-red) !important;
  color: #fff !important;
  border-color: var(--signal-red) !important;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.header.scrolled .menu-toggle span,
.header-dark .menu-toggle span {
  background: var(--deep-charcoal);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--soft-apricot) 0%, var(--coral-peach) 30%, var(--dusty-mauve) 60%, var(--muted-indigo) 100%);
  padding: var(--section-py) 0;
  padding-top: calc(var(--header-h) + var(--section-py));
}

.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1.2px, transparent 1.2px);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-geo-1 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: var(--warm-ivory);
  opacity: 0.12;
  border-radius: 0 0 0 100%;
  pointer-events: none;
}

.hero-geo-2 {
  position: absolute;
  bottom: -60px;
  left: 5%;
  width: 240px;
  height: 240px;
  background: var(--golden-amber);
  opacity: 0.1;
  border-radius: 0 100% 0 0;
  pointer-events: none;
}

.hero-geo-3 {
  position: absolute;
  top: 25%;
  right: 12%;
  width: 100px;
  height: 100px;
  background: var(--signal-red);
  opacity: 0.1;
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-label {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 28px;
}
.hero h1 span {
  display: inline;
  background: linear-gradient(135deg, var(--warm-ivory), var(--golden-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.1875rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: var(--section-py) 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

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

.about-label {
  color: var(--signal-red);
  margin-bottom: 20px;
}

.about h2 {
  margin-bottom: 24px;
}

.about-text {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.about-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  justify-self: center;
}

.about-shape {
  position: absolute;
  transition: transform 0.5s ease;
}
.about-shape-1 {
  top: 0;
  left: 15%;
  width: 50%;
  height: 50%;
  background: var(--warm-ivory);
  border-radius: 100% 0 0 0;
}
.about-shape-2 {
  top: 0;
  left: calc(15% + 50%);
  width: 35%;
  height: 50%;
  background: var(--signal-red);
  border-radius: 0 50% 50% 0;
}
.about-shape-3 {
  top: 50%;
  left: calc(15% + 50% - 35%);
  width: 70%;
  height: 50%;
  background: var(--golden-amber);
  border-radius: 0 0 50% 50%;
}
.about-shape-dot {
  bottom: 5%;
  left: 0;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, var(--coral-peach) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.5;
}

/* ========================================
   CAPABILITIES SECTION
   ======================================== */
.capabilities {
  padding: var(--section-py) 0;
  background: var(--off-white);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .label {
  color: var(--signal-red);
  margin-bottom: 16px;
  display: block;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto;
}

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

.cap-card {
  background: var(--bg-white);
  border: 1.5px solid var(--warm-gray);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--warm-gray);
  transition: background 0.3s;
}
.cap-card:nth-child(1)::before { background: var(--signal-red); }
.cap-card:nth-child(2)::before { background: var(--golden-amber); }
.cap-card:nth-child(3)::before { background: var(--muted-indigo); }
.cap-card:nth-child(4)::before { background: var(--coral-peach); }

.cap-card:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(30, 36, 48, 0.08);
}

.cap-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
}
.cap-icon svg {
  width: 100%;
  height: 100%;
}

.cap-card h3 {
  margin-bottom: 12px;
}
.cap-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ========================================
   GAP / WHY SECTION (split background)
   ======================================== */
.why-section {
  position: relative;
  overflow: hidden;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.why-left {
  background: linear-gradient(160deg, var(--muted-indigo), #2a4a78);
  padding: 80px 60px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.why-left .container-half {
  max-width: calc(var(--container-max) / 2);
  margin-left: auto;
  padding-left: 32px;
  padding-right: 40px;
}

.why-left .label {
  color: var(--golden-amber);
  margin-bottom: 20px;
}
.why-left h2 {
  color: #fff;
  margin-bottom: 20px;
}
.why-left p {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.why-left-dots {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 2px, transparent 2px);
  background-size: 12px 12px;
}

.why-right {
  background: var(--bg-white);
  padding: 80px 0 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-right .container-half {
  max-width: calc(var(--container-max) / 2);
  padding-right: 32px;
  padding-left: 40px;
}

.why-right h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.why-right p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ========================================
   USE CASES SECTION
   ======================================== */
.use-cases {
  padding: var(--section-py) 0;
  background: var(--bg-white);
  position: relative;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.uc-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.uc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(30, 36, 48, 0.07);
}

.uc-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.1;
}
.uc-card:nth-child(1) .uc-number { color: var(--signal-red); }
.uc-card:nth-child(2) .uc-number { color: var(--golden-amber); }
.uc-card:nth-child(3) .uc-number { color: var(--muted-indigo); }
.uc-card:nth-child(4) .uc-number { color: var(--coral-peach); }

.uc-card h3 {
  margin-bottom: 12px;
}
.uc-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  flex: 1;
}

.use-cases-cta {
  text-align: center;
}

/* ========================================
   VALUE SECTION
   ======================================== */
.value-section {
  padding: var(--section-py) 0;
  background: var(--deep-charcoal);
  position: relative;
  overflow: hidden;
}

.value-section .section-header .label { color: var(--golden-amber); }
.value-section .section-header h2 { color: #fff; }
.value-section .section-header p { color: rgba(255,255,255,0.6); }

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

.value-card {
  padding: 36px 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: background 0.3s, border-color 0.3s;
}
.value-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value-card:nth-child(1) .value-icon { background: rgba(238, 75, 43, 0.15); }
.value-card:nth-child(2) .value-icon { background: rgba(248, 183, 12, 0.15); }
.value-card:nth-child(3) .value-icon { background: rgba(53, 92, 148, 0.2); }
.value-card:nth-child(4) .value-icon { background: rgba(185, 140, 154, 0.2); }

.value-icon svg { width: 22px; height: 22px; }

.value-card h3 { color: #fff; margin-bottom: 10px; font-size: 1.25rem; }
.value-card p { color: rgba(255,255,255,0.6); font-size: 0.9375rem; line-height: 1.7; }

.value-geo {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: var(--muted-indigo);
  opacity: 0.15;
  border-radius: 100% 0 0 0;
  pointer-events: none;
}

.value-cta {
  text-align: center;
  margin-top: 56px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  padding: var(--section-py) 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

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

.contact-form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: 0 4px 32px rgba(30, 36, 48, 0.06);
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-info h2 {
  margin-bottom: 20px;
}
.contact-info > p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  gap: 16px;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(30, 36, 48, 0.06);
}
.contact-detail-icon svg { width: 20px; height: 20px; }

.contact-detail-text strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 4px;
}
.contact-detail-text span,
.contact-detail-text a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}
.contact-detail-text a:hover {
  color: var(--signal-red);
}

.contact-geo {
  position: absolute;
  top: -40px;
  right: 0;
  width: 200px;
  height: 200px;
  background: var(--warm-ivory);
  opacity: 0.25;
  border-radius: 0 0 0 100%;
  pointer-events: none;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible {
  display: block;
}
.form-success svg {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}
.form-success h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.form-success p {
  color: var(--text-secondary);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--deep-charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-link {
  margin-bottom: 16px;
}
.footer-brand .logo-text {
  color: #fff;
}
.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.3s, border-color 0.3s;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
}
.footer-social svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); }

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.9375rem;
  transition: color 0.25s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8125rem;
}
.footer-bottom a:hover { color: #fff; }

/* ========================================
   INNER PAGE HERO
   ======================================== */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--soft-apricot) 0%, var(--coral-peach) 40%, var(--dusty-mauve) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
}
.page-hero h1 {
  color: #fff;
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 4vw, 3rem);
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  max-width: 560px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.page-hero-geo {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 0 0 0 100%;
  pointer-events: none;
}

/* ========================================
   INNER PAGE CONTENT
   ======================================== */
.page-content {
  padding: 80px 0 var(--section-py);
}

.prose {
  max-width: 760px;
}
.prose h2 {
  font-size: 1.75rem;
  margin-top: 48px;
  margin-bottom: 16px;
}
.prose h3 {
  font-size: 1.25rem;
  margin-top: 36px;
  margin-bottom: 12px;
}
.prose p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.prose ul {
  list-style: none;
  margin-bottom: 16px;
  padding-left: 0;
}
.prose ul li {
  position: relative;
  padding-left: 24px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 8px;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-peach);
}
.prose a {
  color: var(--muted-indigo);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover {
  color: var(--signal-red);
}
.prose strong {
  color: var(--text-primary);
  font-weight: 600;
}

.last-updated {
  display: inline-block;
  padding: 6px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ========================================
   PRICING PAGE
   ======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.pricing-card {
  background: var(--bg-white);
  border: 1.5px solid var(--warm-gray);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(30, 36, 48, 0.08);
}
.pricing-card.featured {
  border-color: var(--signal-red);
  box-shadow: 0 8px 32px rgba(238, 75, 43, 0.1);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.pricing-card:nth-child(1) .pricing-badge { background: rgba(53,92,148,0.1); color: var(--muted-indigo); }
.pricing-card:nth-child(2) .pricing-badge { background: rgba(238,75,43,0.1); color: var(--signal-red); }
.pricing-card:nth-child(3) .pricing-badge { background: rgba(248,183,12,0.15); color: #c68f00; }

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.pricing-card .pricing-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.pricing-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.pricing-price span {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-secondary);
}
.pricing-note {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--off-white);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

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

/* ========================================
   SUPPORT PAGE
   ======================================== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.support-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: transform 0.3s;
}
.support-card:hover {
  transform: translateY(-3px);
}

.support-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.support-card:nth-child(1) .support-icon { background: rgba(238,75,43,0.1); }
.support-card:nth-child(2) .support-icon { background: rgba(248,183,12,0.15); }
.support-card:nth-child(3) .support-icon { background: rgba(53,92,148,0.1); }
.support-card:nth-child(4) .support-icon { background: rgba(185,140,154,0.15); }

.support-icon svg { width: 24px; height: 24px; }
.support-card h3 { margin-bottom: 10px; }
.support-card p { color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.7; }

.support-form-section {
  padding: var(--section-py) 0;
  background: var(--off-white);
}

.support-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.support-form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: 0 4px 32px rgba(30, 36, 48, 0.06);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border: 1px solid var(--warm-gray);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-white);
}
.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-primary);
}
.faq-question svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
  color: var(--slate-gray);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-anim {
  animation: float 6s ease-in-out infinite;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .about-inner { gap: 48px; }
  .why-inner { grid-template-columns: 1fr; }
  .why-left, .why-right { padding: 60px 32px; }
  .why-left .container-half,
  .why-right .container-half {
    max-width: 100%;
    padding: 0;
  }

  .contact-inner { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .support-form-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --header-h: 60px;
  }

  .menu-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 4px;
    transition: right 0.35s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
  }
  .nav.open { right: 0; }

  .nav .nav-link {
    color: var(--text-primary) !important;
    font-size: 1rem;
    padding: 12px 0;
    width: 100%;
  }
  .nav .nav-cta {
    background: var(--signal-red) !important;
    color: #fff !important;
    border-color: var(--signal-red) !important;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-left: 0;
    margin-top: 12px;
  }

  .hero { padding-top: calc(var(--header-h) + 60px); }
  .hero-content { max-width: 100%; }
  .hero-sub { font-size: 1.0625rem; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual {
    max-width: 300px;
    order: -1;
  }

  .capabilities-grid { grid-template-columns: 1fr; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 32px 24px; }

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

  .form-row { grid-template-columns: 1fr; }

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

  .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
