:root {
  --primary: #ff6600;
  --primary-dark: #e55a00;
  --primary-light: #fff4eb;
  --accent: #ff8533;
  --bg: #faf9f7;
  --surface: #ffffff;
  --text: #1a1f2e;
  --text-muted: #5c6478;
  --border: #e8eaef;
  --shadow: 0 12px 40px rgba(255, 102, 0, 0.1);
  --shadow-soft: 0 4px 20px rgba(26, 31, 46, 0.06);
  --radius: 14px;
  --radius-lg: 20px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", "DM Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.15rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(255, 102, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.logo-img {
  width: 200px;
  height: auto;
  display: block;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  padding: 0.5rem 1rem;
  color: var(--text);
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.btn-contact {
  background: var(--primary);
  color: white !important;
  padding: 0.65rem 1.5rem !important;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(255, 102, 0, 0.3);
}

.btn-contact:hover {
  background: var(--primary-dark);
  color: white !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0.5rem 1rem 1rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 0.75rem 1rem;
  color: var(--text);
  font-weight: 500;
  border-radius: 8px;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  background: var(--primary-light);
  color: var(--primary);
}

/* ============================================================
   HERO SECTION — Premium Redesign
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #fff9f5 0%, #ffffff 35%, #fdf5ee 70%, #fff3e8 100%);
  padding: 4.5rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

/* Animated decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-blob--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.18) 0%, transparent 70%);
  top: -280px;
  right: -150px;
  animation: blobFloat 9s ease-in-out infinite;
}

.hero-blob--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 133, 51, 0.14) 0%, transparent 70%);
  bottom: -180px;
  left: -120px;
  animation: blobFloat 11s ease-in-out infinite reverse;
}

.hero-blob--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 200, 150, 0.22) 0%, transparent 70%);
  top: 40%;
  left: 38%;
  animation: blobFloat 13s ease-in-out infinite 2s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(35px, -25px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 18px) scale(0.97);
  }
}

/* Hero inner — two-column layout: text+image left, form right */
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Content top — inside left column */
.hero-content-top {
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.7s ease both;
}

/* Eyebrow badge */
.hero-home .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 133, 51, 0.06));
  border: 1px solid rgba(255, 102, 0, 0.2);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero-eyebrow-pulse {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.hero-eyebrow-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.3);
  animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Headline */
.hero-home h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.08;
  letter-spacing: 0.001em;
}

.hero-home .hero-highlight {
  color: var(--primary);
  display: inline;
  position: relative;
}

.hero-home .hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  opacity: 0.45;
}

/* Subtitle */
.hero-home .hero-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.78;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

/* ── Trust stats row — full width below hero grid ── */
.hero-stats-row {
  max-width: 1280px;
  margin: 2.5rem auto 0;
  position: relative;
  z-index: 1;
  animation: fadeSlideUp 0.9s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 102, 0, 0.13);
  border-radius: 18px;
  padding: 1.25rem 2rem;
  box-shadow: 0 4px 28px rgba(255, 102, 0, 0.08), 0 1px 6px rgba(0, 0, 0, 0.04);
}

.hero-stat {
  flex: 1;
  text-align: center;
}

.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-stat-sep {
  width: 1px;
  height: 38px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Left col (image) ── */
.hero-left {
  animation: fadeSlideUp 0.7s ease 0.1s both;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeSlideUp 0.7s ease 0.22s both;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  transform: translateY(-24px);
}

/* Decorative ring behind image */
.hero-image-ring {
  position: absolute;
  inset: -14px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.12), rgba(255, 200, 150, 0.08), transparent 65%);
  z-index: 0;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 6 / 5;
  box-shadow: 0 24px 64px rgba(255, 102, 0, 0.14), 0 6px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(255, 102, 0, 0.08);
  position: relative;
  z-index: 1;
}

/* Float card — bottom-left */
.hero-float-card {
  position: absolute;
  bottom: 2rem;
  left: -1.75rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem 1.35rem;
  border-radius: 16px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}

.hero-float-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.35);
}

.hero-float-label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.18rem;
}

.hero-float-card strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 700;
}

/* Float badge — top-right */
.hero-float-badge {
  position: absolute;
  top: 1.5rem;
  right: -1.25rem;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(255, 102, 0, 0.45);
  z-index: 2;
  animation: floatCard 4.5s ease-in-out infinite 1s;
}

.hero-float-badge span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.hero-float-badge small {
  font-size: 0.68rem;
  opacity: 0.92;
  margin-top: 0.25rem;
  display: block;
}

/* Approved notification — top-center */
.hero-float-approved {
  position: absolute;
  top: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 1.15rem;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 3;
  white-space: nowrap;
  animation: floatCardCenter 5s ease-in-out infinite 2s;
}

.hero-approved-check {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(34, 197, 94, 0.4);
}

.hero-approved-text span {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.hero-approved-text small {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* ── Keyframes ── */
@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatCardCenter {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Form panel (premium) ── */
.hero-right .hero-form-panel {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 102, 0, 0.1);
  border-radius: 24px;
  padding: 2rem 2rem 2.25rem;
  box-shadow: 0 24px 64px rgba(255, 102, 0, 0.1), 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-top: 2.8rem;
  overflow: hidden;
}

.hero-right .hero-form-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), #ffb366);
  border-radius: 24px 24px 0 0;
}

.form-panel-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.form-panel-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-right .hero-form {
  max-width: 100%;
}

.hero-right .form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

.hero-right .form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.hero-right .form-field input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fafbfc;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.hero-right .form-field input::placeholder {
  color: #9aa3b5;
  font-size: 0.9rem;
}

.hero-right .form-field input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.12);
}

.hero-right .form-consents {
  background: #f8f9fb;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.15rem 1.15rem 0.35rem;
  margin-bottom: 1.25rem;
}

.hero-right .form-consents-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.hero-right .form-consents .checkbox-group {
  margin-bottom: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.hero-right .form-consents .checkbox-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.hero-right .form-consents .checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  margin: 0;
}

.hero-right .form-consents .checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 0.15rem;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.hero-right .form-consents .consent-text {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.hero-right .form-consents .consent-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-right .checkbox-legal .consent-text--legal {
  font-size: 0.62rem;
  line-height: 1.4;
  color: #8b92a3;
}

.hero-right .checkbox-legal {
  padding-top: 0.15rem;
}

.hero-right .btn-apply {
  width: 100%;
  margin-top: 0;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 10px 28px rgba(255, 102, 0, 0.38);
  letter-spacing: 0.01em;
}

.hero-right .btn-apply:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 102, 0, 0.45);
}

.hero-right .btn-apply:active {
  transform: translateY(0);
}

.hero-right .btn-apply:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.hero-right .form-error {
  margin-top: 0.5rem;
}

.hero-right .form-success {
  margin-top: 1rem;
}

/* Application form (other pages) */
.apply-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.apply-form h2 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
}

.checkbox-group {
  margin-bottom: 0.85rem;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 400;
  line-height: 1.45;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.checkbox-group a {
  text-decoration: underline;
}

.btn-primary {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-error {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.form-error.show {
  display: block;
}

.form-success {
  display: none;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 500;
  text-align: center;
}

.form-success.show {
  display: block;
}

/* Sections */
section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Advantages grid */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.advantage-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.advantage-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(255, 102, 0, 0.2);
}

.advantage-card .icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.advantage-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.advantage-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* About */
.about-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Products */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.product-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.product-tag:hover {
  background: var(--primary-light);
  border-color: rgba(255, 102, 0, 0.3);
  color: var(--primary-dark);
}

/* Page content (legal, contact) */
.page-hero {
  background: linear-gradient(135deg, var(--primary-light), #fff);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.page-content {
  flex: 1;
  padding: 2.5rem 1.5rem 4rem;
}

.page-content .container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2,
.legal-content h3 {
  margin: 2rem 0 0.75rem;
  color: var(--text);
  font-size: 1.15rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: 0.35rem;
}

/* Contact page */
.contact-page {
  background: var(--bg);
}

.contact-page-content {
  padding: 3rem 1.5rem 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-channel-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(145deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  min-height: 200px;
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.25);
}

.contact-channel-card:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

.contact-channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
}

.contact-channel-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-channel-value {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.95;
  word-break: break-word;
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1.75rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 0.85rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.contact-form input::placeholder {
  color: #9ca3af;
}

.contact-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.12);
}

.contact-form .checkbox-group label {
  font-size: 0.8rem;
  color: #4b5563;
  line-height: 1.45;
}

.contact-form .checkbox-group a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-form .btn-send {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form .btn-send:hover {
  background: var(--primary-dark);
}

.contact-form .btn-send:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-brand .logo {
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-col h4 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col ul a:hover {
  color: var(--primary);
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 200;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  max-width: 320px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
    transform: none;
  }

  .hero-float-card {
    left: 0.25rem;
  }

  .hero-float-badge {
    right: 0.25rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 0;
  }

  .hero-stat {
    flex: 0 0 50%;
    padding: 0.5rem 0;
  }

  .hero-stat:nth-child(1),
  .hero-stat:nth-child(3) {
    border-right: 1px solid var(--border);
  }

  .hero-stat:nth-child(1),
  .hero-stat:nth-child(2) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

  .hero-stat-sep {
    display: none;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 1rem 1.25rem;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 2.5rem 1.25rem 4rem;
  }

  .hero-stats-row {
    margin-top: 1.5rem;
  }

  .hero-home h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero-stats {
    padding: 1rem 1.25rem;
    border-radius: 14px;
  }

  .hero-stat-value {
    font-size: 1.1rem;
  }

  .hero-form-panel {
    padding: 1.35rem 1.15rem 1.65rem;
  }

  .hero-right .hero-form-panel {
    border-radius: 18px;
  }

  .hero-right .form-consents {
    padding: 1rem 0.9rem 0.25rem;
  }

  .hero-right .checkbox-legal .consent-text--legal {
    font-size: 0.6rem;
  }

  section {
    padding: 3.5rem 1.25rem;
  }
}