/* =====================================================
   NextGenika — Premium Printer Support Website
   Style System v3.0 — Light Premium + High Contrast
 ===================================================== */

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

/* ── CSS Custom Properties ── */
:root {
  --brand-primary:   #2563eb; /* Trust royal blue */
  --brand-secondary: #0891b2; /* Professional cyan */
  --brand-accent:    #4f46e5; /* Indigo */
  --brand-green:     #16a34a; /* Green */
  --light-bg:        #f8fafc; /* Crisp blue-gray background */
  --light-surface:   #ffffff; /* Pure white card surface */
  --dark-bg:         #f8fafc; /* Alias for pages using --dark-bg */
  --border-light:    rgba(15, 23, 42, 0.08); /* Soft slate border */
  --border-hover:    rgba(37, 99, 235, 0.18); /* Hover border tint */
  --text-primary:    #0f172a; /* Deep slate (headings) */
  --text-secondary:  #334155; /* Medium slate (body copy) */
  --text-muted:      #64748b; /* Cool gray (secondary/muted text) */
  
  --shadow-sm:       0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md:       0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg:       0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl:       0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  
  --gradient-hero:   linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
  --gradient-cta:    linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  --gradient-green:  linear-gradient(135deg, #16a34a 0%, #0891b2 100%);
  --gradient-gold:   linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
  --radius-sm:       8px;
  --radius-md:       16px;
  --radius-lg:       24px;
  --radius-xl:       32px;
  --transition:      0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--light-bg);
  /* Premium, clean background grid pattern */
  background-image: 
    linear-gradient(rgba(15, 23, 42, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.018) 1px, transparent 1px);
  background-size: 36px 36px;
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* ======================================================
   HEADER / NAVIGATION
 ====================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 108px;
  width: auto;
  /* Invert white logo to dark slate, keeping the blue octagon intact */
  filter: invert(0.9) hue-rotate(180deg) drop-shadow(0 2px 4px rgba(0,0,0,0.06));
  transition: var(--transition);
  background: transparent;
}

.logo img:hover {
  filter: invert(0.9) hue-rotate(180deg) brightness(1.15) drop-shadow(0 4px 10px rgba(37,99,235,0.18));
  transform: scale(1.03);
}

/* Nav Links */
nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cta);
  border-radius: 2px;
  transition: var(--transition);
}

nav a:hover {
  color: var(--text-primary);
}

nav a:hover::after {
  width: 100%;
}

/* Call Button */
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-cta);
  color: #fff;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(59,130,246,0.35);
  position: relative;
  overflow: hidden;
}

.call-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}

.call-btn:hover::before { opacity: 1; }
.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.55);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================================================
   HERO SECTION
====================================================== */

.hero {
  position: relative;
  padding: 100px 0 80px;
  background: var(--gradient-hero);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Decorative grid lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 340px 400px;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--brand-primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 54px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero h1 .highlight {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-cta);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(59,130,246,0.4);
  position: relative;
  overflow: hidden;
}

.primary-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.primary-btn:hover::after { opacity: 1; }
.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(59,130,246,0.6);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.secondary-btn:hover {
  background: #f1f5f9;
  border-color: rgba(15, 23, 42, 0.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero trust indicators */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.trust-item .icon {
  font-size: 18px;
}

.disclaimer {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  margin-top: 20px !important;
  line-height: 1.5;
}

/* ── Hero image float ── */
.hero-illustration {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-printer-img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  margin: 0 auto 4px;
  filter: drop-shadow(0 15px 40px rgba(15,23,42,0.08));
  animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero-feature-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-feature-card {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.hero-feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-feature-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.hero-feature-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* ── Lead Form (Premium Card) ── */
.form-box {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cta);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.form-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

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

form input,
form select,
form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 14px;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
}

form input::placeholder,
form textarea::placeholder {
  color: var(--text-muted);
}

form select option {
  background: #ffffff;
  color: var(--text-primary);
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: var(--brand-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

form textarea {
  height: 110px;
  resize: none;
}

form button {
  width: 100%;
  padding: 16px;
  background: var(--gradient-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
  position: relative;
  overflow: hidden;
}

form button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}

form button:hover::after { opacity: 1; }
form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

/* ======================================================
   STATS BAR
 ====================================================== */

.stats-bar {
  position: relative;
  z-index: 1;
  background: var(--light-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 32px 0;
}

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

.stat-item .stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 900;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item .stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ======================================================
   SECTION BASE
 ====================================================== */

section { position: relative; z-index: 1; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: var(--brand-primary);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
}

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

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

/* ======================================================
   TRUST / WHY US SECTION
 ====================================================== */

.trust {
  padding: 90px 0;
  background: var(--light-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.trust-card {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.trust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.03), transparent);
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-lg);
}

.trust-card:hover::before { opacity: 1; }
.trust-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.trust-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

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

/* ======================================================
   SERVICES SECTION
 ====================================================== */

.services {
  padding: 90px 0;
  background: var(--light-bg);
}

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

.card {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: block;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cta);
  transform: scaleX(0);
  transition: var(--transition);
}

.card:hover::after { transform: scaleX(1); }
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ======================================================
   SUPPORT BANNER (full-width image section)
====================================================== */

.support-banner {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.support-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.35);
}

.support-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  padding: 80px 0;
}

.support-banner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.support-banner p {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}

.support-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--text-primary);
  padding: 18px 44px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 18px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  letter-spacing: 0.01em;
}

.support-cta-btn:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(37,99,235,0.4);
}

/* ======================================================
   HOW IT WORKS / PROCESS
 ====================================================== */

.process {
  padding: 90px 0;
  background: var(--light-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.666% + 36px);
  right: calc(16.666% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  z-index: 0;
}

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

.step-num {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cta);
  color: #fff;
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 900;
  margin: 0 auto 24px;
  box-shadow: 0 8px 25px rgba(37,99,235,0.3);
  position: relative;
  }

.step-num::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,99,235,0.2);
}

.step-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ======================================================
   BRANDS WE SUPPORT
 ====================================================== */

.brands {
  padding: 70px 0;
  background: var(--light-bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.brand-item {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
}

.brand-item:hover {
  background: var(--light-surface);
  border-color: var(--brand-primary);
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ======================================================
   FAQ SECTION
 ====================================================== */

.faq {
  padding: 90px 0;
  background: var(--light-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  user-select: none;
  gap: 16px;
}

.faq-question .faq-icon {
  font-size: 22px;
  color: var(--brand-primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ======================================================
   CONTACT SECTION
 ====================================================== */

.contact-section {
  padding: 90px 0;
  background: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}

.contact-card {
  background: var(--light-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  font-size: 42px;
  margin-bottom: 16px;
  display: block;
}

.contact-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-card p,
.contact-card a {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  display: block;
}

.contact-card a {
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 6px;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--brand-secondary);
}

/* ======================================================
   FOOTER
 ====================================================== */

footer {
  background: #f1f5f9;
  border-top: 1px solid var(--border-light);
  padding: 50px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-brand .footer-logo {
  height: 44px;
  width: auto;
  filter: invert(0.9) hue-rotate(180deg);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--brand-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}

/* ======================================================
   PAGE HERO (inner pages)
====================================================== */

.page-hero {
  padding: 80px 0 60px;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ======================================================
   SCROLL REVEAL ANIMATION
====================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ======================================================
   TOAST NOTIFICATION
====================================================== */

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-green);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(16,185,129,0.4);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show { transform: translateX(0); }

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr 280px 360px;
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .hero h1 { font-size: 42px; }
  .hero-content {
    grid-template-columns: 1fr 380px;
    gap: 30px;
  }
  .hero-illustration { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-illustration { display: none; }

  .hero h1 { font-size: 40px; }
  .hero-badge { margin: 0 auto 28px; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }

  .trust-grid,
  .service-grid,
  .steps,
  .contact-grid { grid-template-columns: 1fr; }

  .steps::before { display: none; }

  nav { display: none; }

  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 116px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 40px 24px;
    gap: 28px;
    z-index: 999;
    align-items: center;
    justify-content: flex-start;
  }

  nav.open a {
    font-size: 22px;
    font-weight: 600;
  }

  .menu-toggle { display: flex; }

  .call-btn { display: none; }

  .section-title { font-size: 32px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .support-banner h2 { font-size: 34px; }
  .brands-grid { gap: 20px; }
}

@media (max-width: 600px) {
  .hero { padding: 70px 0 60px; min-height: auto; }
  .hero h1 { font-size: 32px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .primary-btn, .secondary-btn { text-align: center; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item .stat-number { font-size: 32px; }
  .form-box { padding: 28px 20px; }
  .section-title { font-size: 28px; }
  .support-banner h2 { font-size: 26px; }
  .support-banner p { font-size: 16px; }
  .support-cta-btn { font-size: 16px; padding: 14px 28px; }
  .page-hero h1 { font-size: 32px; }
}

/* ======================================================
   SVG ICONS
 ====================================================== */

.svg-icon {
  width: 1.2em;
  height: 1.2em;
  stroke: currentColor;
  stroke-width: 2.2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: inline-block;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

.call-btn .svg-icon,
.primary-btn .svg-icon,
.secondary-btn .svg-icon,
.support-cta-btn .svg-icon,
form button .svg-icon,
.toast .svg-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2.5px;
}

.hero-badge .svg-icon {
  width: 14px;
  height: 14px;
  stroke-width: 2.5px;
}

.trust-item .svg-icon {
  width: 16px;
  height: 16px;
  color: var(--brand-primary);
  stroke-width: 2.2px;
}

.trust-icon .svg-icon,
.card-icon .svg-icon,
.contact-icon .svg-icon {
  width: 44px;
  height: 44px;
  stroke: var(--brand-primary);
  stroke-width: 1.8px;
}