/* ============================================
   ALVES FINANCE — Premium Design System
   Light Institutional + Modern SaaS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- Custom Properties --- */
:root {
  --purple-700: #5b0fb5;
  --purple-600: #6a11cb;
  --purple-500: #7c3aed;
  --purple-400: #8b5cf6;
  --purple-300: #a78bfa;
  --purple-200: #c4b5fd;
  --purple-100: #ede9fe;
  --purple-50: #f5f3ff;
  --blue-600: #2575fc;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;

  --bg-white: #ffffff;
  --bg-off-white: #fafbfe;
  --bg-light: #f4f5fa;
  --bg-dark: #0c0c1a;
  --bg-dark-alt: #111128;

  --text-heading: #0f0f2d;
  --text-body: #4a4a68;
  --text-light: #7a7a96;
  --text-muted: #a0a0b8;
  --text-white: #ffffff;
  --text-white-80: rgba(255, 255, 255, 0.8);
  --text-white-60: rgba(255, 255, 255, 0.6);

  --gradient-brand: linear-gradient(135deg, var(--purple-600), var(--blue-600));
  --gradient-brand-h: linear-gradient(90deg, var(--purple-600), var(--blue-500));
  --gradient-brand-soft: linear-gradient(135deg, #f7f5ff 0%, #eef4ff 100%);
  --gradient-brand-vivid: linear-gradient(135deg, var(--purple-600) 0%, var(--blue-500) 50%, var(--purple-500) 100%);

  --border-light: #eaeaf0;
  --border-hover: rgba(106, 17, 203, 0.25);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --section-padding: 100px 0;
  --container-max: 1120px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-purple: 0 8px 32px rgba(106, 17, 203, 0.25);
  --shadow-purple-lg: 0 16px 48px rgba(106, 17, 203, 0.3);
}

/* --- 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-white);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-heading);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 580px;
  line-height: 1.85;
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.18s;
}

.reveal-delay-3 {
  transition-delay: 0.26s;
}

.reveal-delay-4 {
  transition-delay: 0.34s;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse-soft {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(106, 17, 203, 0.15);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(106, 17, 203, 0);
  }
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  background: var(--gradient-brand);
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  background: transparent;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--purple-500);
  color: var(--purple-600);
  background: var(--purple-50);
}

.btn-inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--gradient-brand);
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-inline-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.btn-inline-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}

/* --- Section Divider --- */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-light) 20%, var(--border-light) 80%, transparent 100%);
}

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: var(--bg-dark);
  transition: var(--transition-base);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(12, 12, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 34px;
  width: auto;
  transition: var(--transition-fast);
}

.header.scrolled .header-logo img {
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-white-60);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand-h);
  border-radius: 2px;
  transition: var(--transition-base);
}

.nav-links a:hover {
  color: var(--text-white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 9px 20px !important;
  background: var(--gradient-brand) !important;
  border-radius: var(--radius-sm) !important;
  color: white !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  transition: var(--transition-base) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: var(--shadow-purple) !important;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(106, 17, 203, 0.06) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 117, 252, 0.04) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(106, 17, 203, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 17, 203, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 45% 45% at 50% 45%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 45% 45% at 50% 45%, black 10%, transparent 75%);
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 140px;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: var(--purple-50);
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple-600);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge svg {
  width: 15px;
  height: 15px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  max-width: 820px;
  margin: 0 auto 22px;
  color: var(--text-heading);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.85;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==========================================
   PAIN SECTION
   ========================================== */
.pain {
  padding: var(--section-padding);
  background: var(--bg-off-white);
}

.pain-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pain-text .section-title {
  margin-bottom: 18px;
}

.pain-text p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 10px;
}

.pain-text p strong {
  color: var(--text-heading);
}

.pain-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.pain-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pain-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: #fef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
}

.pain-card-icon svg {
  width: 20px;
  height: 20px;
}

.pain-card h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 3px;
  color: var(--text-heading);
}

.pain-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================
   SOLUTION SECTION
   ========================================== */
.solution {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.solution-header {
  text-align: center;
  margin-bottom: 52px;
}

.solution-header .section-subtitle {
  margin: 0 auto;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.solution-card {
  position: relative;
  padding: 34px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: var(--transition-base);
}

.solution-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}

.solution-card-icon svg {
  width: 24px;
  height: 24px;
}

.solution-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-heading);
}

.solution-card p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.8;
}

.solution-card .features-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.solution-card .features-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--text-body);
}

.solution-card .features-list li svg {
  width: 17px;
  height: 17px;
  color: var(--purple-500);
  flex-shrink: 0;
}

/* CTA between sections */
.section-cta-wrapper {
  text-align: center;
  padding: 0;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process {
  padding: var(--section-padding);
  background: var(--bg-off-white);
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-header .section-subtitle {
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0.12;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 32px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.process-step:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--purple-50);
  border: 2px solid var(--purple-100);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-600);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition-base);
}

.process-step:hover .step-number {
  background: var(--gradient-brand);
  border-color: transparent;
  color: white;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  border-radius: var(--radius-sm);
  background: var(--purple-50);
  color: var(--purple-600);
}

.step-icon svg {
  width: 20px;
  height: 20px;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-heading);
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ==========================================
   TARGET AUDIENCE
   ========================================== */
.target {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.target-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 40px;
  margin-bottom: 48px;
}

.target-card {
  padding: 30px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition-base);
}

.target-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.target-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.target-card-icon svg {
  width: 22px;
  height: 22px;
}

.target-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-heading);
}

.target-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ==========================================
   TEAM SECTION — Premium Cards
   ========================================== */
.team {
  padding: var(--section-padding);
  background: var(--bg-off-white);
}

.team-header {
  text-align: center;
  margin-bottom: 52px;
}

.team-header .section-subtitle {
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.team-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.team-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.team-card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.team-card-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-card-image img {
  transform: scale(1.03);
}

.team-card-image::after {
  display: none;
}

.team-card-content {
  padding: 24px 32px 32px;
  position: relative;
  z-index: 1;
}

.team-card-role {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gradient-brand);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 14px;
  box-shadow: var(--shadow-purple);
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-heading);
}

.team-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.85;
}

/* ==========================================
   CTA / FORM SECTION
   ========================================== */
.cta-section {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.cta-box {
  position: relative;
  text-align: center;
  padding: 64px 52px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--purple-100);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(106, 17, 203, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 117, 252, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-box>* {
  position: relative;
  z-index: 1;
}

.cta-box .section-title {
  margin-bottom: 10px;
}

.cta-box .section-subtitle {
  margin: 0 auto 32px;
  max-width: 520px;
}

.cta-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.form-group .form-error {
  font-size: 0.72rem;
  color: #ef4444;
  min-height: 16px;
  opacity: 0;
  transition: var(--transition-fast);
  font-weight: 500;
}

.form-group.has-error .form-error {
  opacity: 1;
}

.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
  border-color: #ef4444;
  background: #fef2f2;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--purple-400);
  box-shadow: 0 0 0 3px rgba(106, 17, 203, 0.06);
}

.form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  color: var(--text-muted);
  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='%239ca3af' 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;
}

.form-select.selected {
  color: var(--text-heading);
}

.form-select option {
  background: var(--bg-white);
  color: var(--text-heading);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.cta-form .btn-primary {
  width: 100%;
  padding: 15px;
  font-size: 0.92rem;
  margin-top: 4px;
}

.form-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  padding: 52px 0 32px;
  background: var(--bg-dark);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  opacity: 0.8;
  transition: var(--transition-fast);
  margin-bottom: 16px;
}

.footer-logo img:hover {
  opacity: 1;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-white-60);
  line-height: 1.75;
}

.footer-tagline strong {
  color: var(--text-white);
  font-weight: 600;
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-white-60);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-social-icon:hover {
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.footer-social-icon svg {
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--text-white-60);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 72px 0;
  }

  .pain-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 52px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--text-white-60);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero .container {
    padding-top: 110px;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 18px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary {
    width: 100%;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-steps::before {
    display: none;
  }

  .target-content {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 36px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }

  .section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .team-card-image {
    height: 280px;
  }
}