/* ============================================================
   SMART FIX LLC — style.css
   Premium Corporate Website Stylesheet
   ============================================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --white:       #FFFFFF;
  --soft-white:  #F8F8F8;
  --accent:      #1E6FFF;
  --accent-dark: #1558d6;
  --dark:        #0D0D0D;
  --surface:     #F2F2F2;
  --border:      #E0E0E0;
  --text:        #1A1A1A;
  --muted:       #6B6B6B;
  --highlight:   #EEF4FF;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

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

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl:  0 16px 64px rgba(0,0,0,0.16);

  --transition: 0.3s ease;
  --section-pad: 120px;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ---------- Skip Link ---------- */
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: top 0.3s;
}
.skip-link:focus { top: 16px; }

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.overline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 48px;
}

.accent-word { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30,111,255,0.25);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(30,111,255,0.38);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(30,111,255,0.25);
}

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

/* ---------- Focus States ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}

.nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: var(--white);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  padding: 48px 32px;
  gap: 32px;
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Dot Grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #D0D0D0 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
  pointer-events: none;
}

/* Geo Blur Circle */
.hero-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.06;
  filter: blur(80px);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 64px;
  align-items: center;
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

/* Hero Left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--highlight);
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(30,111,255,0.18);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

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

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

.trust-item svg {
  flex-shrink: 0;
}

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

.hero-card-main {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 2;
}

.stat-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stat-item-hero {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label-hero {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.stat-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

/* Floating Cards */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 3;
  border: 1px solid var(--border);
}

.float-card-1 {
  top: -20px;
  right: -30px;
  animation: float1 4s ease-in-out infinite;
}
.float-card-2 {
  bottom: 40px;
  right: -40px;
  animation: float2 4.5s ease-in-out infinite 0.5s;
}
.float-card-3 {
  bottom: -20px;
  left: -20px;
  animation: float1 3.8s ease-in-out infinite 1s;
}

.dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s ease-in-out infinite;
  cursor: pointer;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--soft-white);
  padding: var(--section-pad) 0;
}

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

.mission-card {
  border-left: 3px solid var(--accent);
  background: var(--highlight);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
}

.mission-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

.vision-line {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.vision-line strong {
  color: var(--accent);
}

.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
  border: 1px solid var(--border);
}

.value-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.value-row:last-of-type { border-bottom: none; }

.value-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--highlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.value-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}

.value-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  width: 100%;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--white);
  padding: var(--section-pad) 0;
}

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

.services-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--highlight);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  background: var(--soft-white);
  padding: var(--section-pad) 0;
}

.why-header {
  text-align: center;
  margin-bottom: 72px;
}

.why-header .section-sub {
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.why-block {
  padding: 40px 36px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background var(--transition);
  position: relative;
}

.why-block:nth-child(3n) { border-right: none; }
.why-block:nth-child(n+4) { border-bottom: none; }

.why-block:hover {
  background: var(--white);
}

.why-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.why-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.process-header {
  text-align: center;
  margin-bottom: 72px;
}

.process-timeline {
  position: relative;
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-line {
  position: absolute;
  top: 28px;
  left: 28px;
  height: 2px;
  background: var(--accent);
  z-index: 1;
  transition: width 0.8s ease;
  width: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 12px;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
  transition: all var(--transition);
  position: relative;
}

.process-step:hover .step-circle,
.process-step.active .step-circle {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30,111,255,0.35);
}

.step-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.step-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--dark);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.stats-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(30,111,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  display: block;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--soft-white);
  padding: var(--section-pad) 0;
}

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

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 80px;
}

.testimonial-inner {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 48px 52px;
  border-left: 4px solid var(--accent);
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.star {
  color: var(--accent);
  font-size: 18px;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 28px;
  font-weight: 400;
}

.testimonial-author {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.testimonial-role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-btn:hover {
  background: var(--accent);
  color: var(--white);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

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

.dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--white);
  padding: var(--section-pad) 0;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--highlight);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.info-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.map-placeholder {
  background: var(--surface);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
}

/* Form */
.contact-form {
  background: var(--soft-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
}

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

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,111,255,0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.form-error {
  font-size: 12px;
  color: #EF4444;
  margin-top: 5px;
  display: none;
}

.form-error.show { display: block; }

.form-select {
  cursor: pointer;
  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 fill='%236B6B6B' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-submit { width: 100%; margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  border-top: 2px solid var(--accent);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 60px;
  padding: 80px 0 60px;
}

.footer-brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

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

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-link:hover { color: var(--accent); }

.footer-contact-item {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact-item strong {
  color: var(--white);
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(30,111,255,0.5);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  font-size: 15px;
}

.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: var(--accent);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: rgba(30,111,255,0.8); }

/* ============================================================
   VENDOR PAGE
   ============================================================ */
.vendor-hero {
  background: var(--white);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vendor-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #D0D0D0 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
  pointer-events: none;
}

.vendor-hero-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(30,111,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.vendor-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.vendor-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.vendor-subline {
  font-size: 18px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 36px;
  line-height: 1.5;
}

.vendor-trust-line {
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
  letter-spacing: 0.05em;
}

/* Why Join */
.why-join {
  background: var(--soft-white);
  padding: var(--section-pad) 0;
}

.why-join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.join-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--accent);
  transition: all var(--transition);
}

.join-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.join-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.join-card-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Requirements */
.requirements {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.req-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 0 auto;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.req-item:last-child { border-bottom: none; }

.req-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.req-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  font-weight: 500;
}

/* Vendor Form */
.vendor-form-section {
  background: var(--soft-white);
  padding: var(--section-pad) 0;
}

.vendor-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin: 0 auto;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

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

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0 8px;
}

.checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent);
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  cursor: pointer;
}

/* Questions Card */
.questions-section {
  background: var(--white);
  padding: 80px 0;
}

.questions-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 560px;
  margin: 0 auto;
}

.questions-card h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.questions-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
}

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

.contact-item-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
  justify-content: center;
}

.contact-item-link:hover { color: var(--accent); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: clamp(48px, 8vw, 72px); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-block:nth-child(2n) { border-right: none; }
  .why-block:nth-child(n+5) { border-bottom: none; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

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

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

  .why-join-grid { grid-template-columns: 1fr; }
  .vendor-form-wrap { padding: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .process-timeline { flex-direction: column; gap: 32px; }
  .process-timeline::before { display: none; }
  .process-line { display: none; }
  .process-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 24px; }
  .step-circle { margin-bottom: 0; flex-shrink: 0; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-block { border-right: none !important; }

  .testimonial-card { padding: 0 16px; }
  .testimonial-inner { padding: 32px 28px; }

  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .req-card { padding: 32px 28px; }
  .form-section-title { font-size: 11px; }

  .hero-badge { font-size: 10px; }
  .section-headline { font-size: clamp(30px, 8vw, 48px); }
}
