/* ============================================
   Mat.bg – Premium Domain Landing Page
   Styles – Clean, Modern, Light Design
   ============================================ */

:root {
  --navy: #1a2a4a;
  --navy-light: #243660;
  --orange: #e07b39;
  --orange-light: #f0956a;
  --orange-pale: #fff3e8;
  --green: #27ae60;
  --green-pale: #e8f8f0;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f0f2f7;
  --gray-200: #e1e5ef;
  --gray-300: #c8cfe0;
  --gray-500: #7a85a0;
  --gray-700: #3d4a63;
  --gray-900: #1a2233;
  --text-primary: #1a2233;
  --text-secondary: #4a5568;
  --text-muted: #7a85a0;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(26,42,74,0.08), 0 1px 2px rgba(26,42,74,0.04);
  --shadow: 0 4px 16px rgba(26,42,74,0.10), 0 2px 4px rgba(26,42,74,0.06);
  --shadow-lg: 0 10px 40px rgba(26,42,74,0.14), 0 4px 12px rgba(26,42,74,0.08);
  --shadow-xl: 0 20px 60px rgba(26,42,74,0.18);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(224,123,57,0.35);
}
.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  box-shadow: 0 6px 24px rgba(224,123,57,0.45);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}
.btn-secondary:hover {
  background: var(--gray-100);
  border-color: var(--navy);
  transform: translateY(-1px);
}

.btn-sm { padding: 8px 18px; font-size: 14px; border-radius: var(--radius-sm); }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius); }
.btn-full { width: 100%; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { cursor: pointer; flex-shrink: 0; }
.logo:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--navy); background: var(--gray-100); }
.nav-links .btn-primary { color: var(--white); margin-left: 8px; }
.nav-links .btn-primary:hover { color: var(--white); background: var(--orange-light); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.mobile-nav a {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav a:last-child { border-bottom: none; color: var(--orange); font-weight: 600; }
.mobile-nav.open { display: flex; }

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.65;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  background: linear-gradient(155deg, #f8faff 0%, #f0f4ff 40%, #fff8f2 100%);
  overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(224,123,57,0.15) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.shape-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,42,74,0.08) 0%, transparent 70%);
  bottom: -150px; left: -100px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(39,174,96,0.10) 0%, transparent 70%);
  top: 40%; right: 15%;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 7vw, 80px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-domain {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero-domain::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.3;
}

.hero-subtitle {
  font-size: clamp(17px, 2.5vw, 22px);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.65;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-subtitle strong { color: var(--orange); }

.hero-price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.7s 0.3s ease both;
}
.price-label { font-size: 12px; font-weight: 500; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.price-value { font-size: 32px; font-weight: 800; color: var(--orange-light); }

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.7s 0.4s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  box-shadow: var(--shadow);
  animation: fadeInUp 0.7s 0.5s ease both;
  display: inline-flex;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 32px;
}
.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages {
  padding: 100px 0;
  background: var(--white);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.advantage-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.advantage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity var(--transition);
}
.advantage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gray-300); }
.advantage-card:hover::before { opacity: 1; }

.advantage-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.advantage-card.featured::before { background: var(--orange); opacity: 1; }
.advantage-card.featured .adv-title { color: var(--white); }
.advantage-card.featured .adv-text { color: rgba(255,255,255,0.78); }
.advantage-card.featured .adv-list li { color: rgba(255,255,255,0.78); }
.advantage-card.featured .adv-list li::before { background: var(--orange-light); }

.featured-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.adv-icon-wrap {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.adv-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}

.adv-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.adv-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.adv-list li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.adv-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ============================================
   IDEAS
   ============================================ */
.ideas {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.idea-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.idea-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }

.idea-card.featured-idea {
  background: linear-gradient(135deg, var(--orange-pale) 0%, #fff 100%);
  border-color: var(--orange);
  grid-column: span 2;
}
.idea-card.featured-idea:hover { border-color: var(--orange); }

.idea-icon { font-size: 36px; margin-bottom: 12px; }

.idea-number {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 42px;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color var(--transition);
}
.idea-card:hover .idea-number { color: var(--gray-300); }
.idea-card.featured-idea .idea-number { color: rgba(224,123,57,0.15); }

.idea-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
  padding-right: 48px;
}
.idea-card.featured-idea h3 { font-size: 22px; padding-right: 56px; }

.idea-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.idea-card.featured-idea p { font-size: 16px; }

.idea-tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
}
.idea-card.featured-idea .idea-tag { background: var(--orange); color: var(--white); }

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 100px 0;
  background: var(--navy);
  color: var(--white);
}

.process .section-tag {
  background: rgba(224,123,57,0.2);
  color: var(--orange-light);
}

.process .section-header h2 { color: var(--white); }
.process .section-subtitle { color: rgba(255,255,255,0.68); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 64px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(224,123,57,0.4);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.process-step:hover .step-number { transform: scale(1.1); }

.step-content { padding: 0 12px; }

.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.process-connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(224,123,57,0.3) 100%);
  margin-top: 28px;
  flex-shrink: 0;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--gray-50);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-tag { display: inline-block; margin-bottom: 16px; }

.contact-info h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.contact-info > p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--orange-pale);
  border: 1px solid rgba(224,123,57,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-highlight svg { flex-shrink: 0; margin-top: 1px; }
.contact-highlight strong { color: var(--orange); }

.contact-meta { display: flex; flex-direction: column; gap: 12px; }
.meta-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); font-weight: 500; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.offer-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.required { color: var(--orange); margin-left: 2px; }

.form-group input,
.form-group textarea,
.form-group select {
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(224,123,57,0.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e53e3e;
  background: #fff5f5;
}

.form-group input.error:focus,
.form-group textarea.error:focus {
  box-shadow: 0 0 0 3px rgba(229,62,62,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.input-with-icon { position: relative; }
.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-500);
  pointer-events: none;
}
.input-with-icon input { padding-left: 32px; }

.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.form-error { font-size: 12px; color: #e53e3e; font-weight: 500; min-height: 16px; display: block; }

/* Captcha */
.captcha-box {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.captcha-question {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.captcha-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.captcha-row input {
  flex: 1;
  margin: 0;
}

.captcha-refresh {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-700);
  transition: all var(--transition);
  flex-shrink: 0;
}
.captcha-refresh:hover { background: var(--orange-pale); border-color: var(--orange); color: var(--orange); }

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-300);
  border-radius: 5px;
  flex-shrink: 0;
  transition: all var(--transition);
  position: relative;
  background: var(--white);
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--orange);
  border-color: var(--orange);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 6px; height: 10px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.checkbox-label:hover .checkbox-custom { border-color: var(--orange); }

/* Submit Button */
.btn-full {
  margin-top: 4px;
  position: relative;
}
.btn-icon { transition: transform var(--transition); }
.btn:hover .btn-icon { transform: translateX(4px); }

/* Success/Error Messages */
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-pale);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 15px;
  color: #1a7a40;
  font-weight: 500;
  margin-top: 8px;
}

.form-error-global {
  background: #fff5f5;
  border: 1px solid rgba(229,62,62,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  color: #c53030;
  font-weight: 500;
  margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 48px 0 32px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-logo { display: flex; flex-direction: column; gap: 8px; }
.footer-logo p { font-size: 13px; color: rgba(255,255,255,0.5); }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-disclaimer { font-weight: 600; color: var(--orange-light) !important; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .ideas-grid { grid-template-columns: 1fr 1fr; }
  .idea-card.featured-idea { grid-column: span 2; }
  .process-steps { gap: 0; overflow-x: auto; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero { padding: 100px 0 60px; }
  .hero-stats { padding: 20px; }
  .stat { padding: 0 20px; }
  .advantages { padding: 64px 0; }
  .advantages-grid { grid-template-columns: 1fr; }
  .ideas { padding: 64px 0; }
  .ideas-grid { grid-template-columns: 1fr; }
  .idea-card.featured-idea { grid-column: span 1; }
  .process { padding: 64px 0; }
  .process-steps { flex-direction: column; align-items: center; overflow: visible; }
  .process-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--orange) 0%, rgba(224,123,57,0.3) 100%); margin: 0; }
  .process-step { max-width: 300px; }
  .trust-badges { gap: 20px; padding: 24px; }
  .contact { padding: 64px 0; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { flex-direction: column; gap: 16px; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .stat { padding: 0; width: 100%; }
  .section-header { margin-bottom: 40px; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus-visible {
  outline: 2.5px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* High contrast support */
@media (forced-colors: active) {
  .btn-primary { border: 2px solid ButtonText; }
}
