/* ===========================
   BASE RESET & FONTS
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: #0F172A;
  background: #F5F5F5;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; -webkit-user-drag: none; user-select: none; -webkit-user-select: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   FIXED BACKGROUND
   =========================== */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  background-image: url('assets/Background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===========================
   LAYOUT CONTAINERS
   =========================== */
.container {
  width: 100%;
  max-width: 1215px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 1100px;
}
@media (min-width: 768px) {
  .container { padding: 0 32px; }
}
@media (min-width: 1536px) {
  .container { max-width: 1280px; padding: 0 40px; }
  .container-narrow { max-width: 1180px; }
}

/* ===========================
   TYPOGRAPHY TOKENS
   =========================== */
.text-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F97316;
}
.text-h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0F172A;
}
.text-h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0F172A;
}
.text-body {
  font-size: 16px;
  line-height: 1.65;
  color: #475569;
}
.text-section-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #64748B;
}
.text-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #0F172A;
}
.text-card-body {
  font-size: 14px;
  line-height: 1.6;
  color: #64748B;
}
.text-stat-value {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #F97316;
  letter-spacing: -0.03em;
  line-height: 1;
}
.text-stat-label {
  font-size: 13px;
  color: #64748B;
  font-weight: 500;
}
.text-orange { color: #F97316; }
.text-center { text-align: center; }

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0F172A;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  transition: background 0.2s;
}
.btn-primary:hover { background: #1e293b; }

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F97316;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 12px;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-orange:hover { background: #EA6C00; }
.btn-orange:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-arrow { flex-shrink: 0; display: inline-block; vertical-align: middle; }
.btn-full { width: 100%; justify-content: center; }

.btn-price {
  white-space: nowrap;
  border-radius: 12px;
  border: 1px solid #E5DFD8;
  background: #F7F6F4;
  padding: 16px;
  font-size: 12px;
  font-weight: 600;
  color: #212121;
  transition: border-color 0.2s, color 0.2s;
  width: 100%;
}
@media (min-width: 1024px) { .btn-price { width: auto; align-self: flex-end; } }
.btn-price:hover { border-color: #F97316; color: #F97316; }

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: #191626;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.site-header.hidden { transform: translateY(-100%); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
  width: 100%;
  max-width: 1215px;
  padding: 0 24px;
}
@media (min-width: 768px) { .header-inner { padding: 0 32px; } }
@media (min-width: 1280px) { .header-inner { height: 85px; gap: 24px; } }
@media (min-width: 1536px) { .header-inner { max-width: 1280px; padding: 0 40px; } }

.header-logo img { height: 36px; width: auto; }

.header-nav {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) { .header-nav { display: flex; } }
@media (min-width: 1280px) { .header-nav { gap: 40px; } }

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #CCCCCC;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-link:hover { color: #fff; }

.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: flex; flex-shrink: 0; } }

.burger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 8px;
  border-radius: 6px;
  color: #CCCCCC;
  transition: color 0.2s, background 0.2s;
}
.burger-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
@media (min-width: 768px) { .burger-btn { display: none; } }

/* Mobile menu */
.mobile-menu {
  width: 100%;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
}
.mobile-menu.open { max-height: 500px; opacity: 1; }

.mobile-menu-inner {
  background: #191626;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.mobile-menu-close-row {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-top: 12px;
}
.mobile-close-btn {
  padding: 8px;
  border-radius: 6px;
  color: #CCCCCC;
  transition: color 0.2s, background 0.2s;
}
.mobile-close-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.mobile-nav-link { text-align: center; }
.mobile-divider { border-color: rgba(255,255,255,0.1); width: 100%; }

/* ===========================
   MAIN CONTENT
   =========================== */
.main-content {
  padding-top: 72px;
  overflow-x: hidden;
  background: transparent;
}
@media (min-width: 1280px) { .main-content { padding-top: 85px; } }

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  width: 100%;
  background: #F5F5F5;
  overflow: hidden;
}
.hero-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 56px;
}
@media (min-width: 768px) { .hero-container { padding-top: 80px; padding-bottom: 80px; } }
@media (min-width: 1024px) {
  .hero-container { flex-direction: row; align-items: center; gap: 64px; padding-top: 96px; padding-bottom: 96px; }
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-left { align-items: flex-start; text-align: left; width: 52%; flex-shrink: 0; }
}

.hero-left .text-eyebrow { margin-bottom: 16px; }
.hero-desc { margin-top: 20px; max-width: 30rem; }
.hero-left .btn-primary { margin-top: 32px; }

/* Stats */
.stats-grid {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
}
@media (min-width: 1024px) { .stats-grid { justify-content: flex-start; } }

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 100px;
}
@media (min-width: 1024px) { .stat-item { align-items: flex-start; text-align: left; } }
.stat-item .text-stat-label { margin-top: 4px; }

/* Hero image */
.hero-right {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}
.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 340px;
}
@media (min-width: 640px) { .hero-img-wrapper { max-width: 420px; } }
@media (min-width: 1024px) { .hero-img-wrapper { max-width: 500px; } }

.hero-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(249,115,22,0.1), transparent);
}
.hero-img { width: 100%; object-fit: cover; border-radius: 16px; position: relative; z-index: 10; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }

.hero-corner {
  position: absolute;
  width: 64px;
  height: 64px;
  z-index: 20;
}
.hero-corner-tr {
  top: -12px; right: -12px;
  border-top: 4px solid #F97316;
  border-right: 4px solid #F97316;
  border-top-right-radius: 12px;
}
.hero-corner-bl {
  bottom: -12px; left: -12px;
  border-bottom: 4px solid #F97316;
  border-left: 4px solid #F97316;
  border-bottom-left-radius: 12px;
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header { margin-bottom: 48px; }
@media (min-width: 768px) { .section-header { margin-bottom: 64px; } }
.section-header .text-eyebrow { margin-bottom: 16px; }
.section-header .text-h2 { max-width: 900px; margin: 0 auto; }
.section-header .text-section-subtitle { margin-top: 16px; max-width: 780px; margin-left: auto; margin-right: auto; }

/* ===========================
   RISKS SECTION
   =========================== */
.risks-section {
  width: 100%;
  background: transparent;
  overflow: hidden;
}
.risks-section .container { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 768px) { .risks-section .container { padding-top: 96px; padding-bottom: 96px; } }

.risks-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
}
@media (min-width: 1024px) { .risks-body { flex-direction: row; gap: 48px; } }

.risks-photo {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
}
@media (min-width: 1024px) { .risks-photo { width: 45%; flex-shrink: 0; min-height: 0; } }
.risks-photo img { width: 100%; height: 100%; object-fit: cover; }

.risks-cards {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 1024px) { .risks-cards { grid-template-columns: 1fr 1fr; } }

.risk-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
}
.risk-icon { width: 40px; height: 40px; }

/* ===========================
   PROCESS SECTION
   =========================== */
.process-section {
  width: 100%;
  background: #F8F7F7;
  overflow: hidden;
}
.process-section .container { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 768px) { .process-section .container { padding-top: 96px; padding-bottom: 96px; } }

.process-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
}
@media (min-width: 1024px) { .process-body { flex-direction: row; gap: 64px; } }

.process-photo {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
}
@media (min-width: 1024px) { .process-photo { width: 45%; flex-shrink: 0; min-height: 0; order: 1; } }
.process-photo img { width: 100%; height: 100%; object-fit: cover; }

.process-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.process-step:not(.last) .step-text { padding-bottom: 32px; }

.step-line {
  position: absolute;
  left: 28px;
  top: 56px;
  width: 1px;
  height: calc(100% - 4px);
  background: #D1D5DB;
}
.process-step.last .step-line { display: none; }

.step-circle {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid #D1D5DB;
  background: #F8F7F7;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: relative;
}
.step-circle span {
  font-size: 30px;
  font-weight: 700;
  color: #F97316;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-section {
  width: 100%;
  background: #F8F7F7;
  overflow: hidden;
}
.services-section .container { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 768px) { .services-section .container { padding-top: 96px; padding-bottom: 96px; } }

.services-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .services-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .services-subtitle { text-align: right; max-width: 350px; }
}
.services-header .text-eyebrow { margin-bottom: 12px; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #E2E8F0;
  padding: 24px;
}
.service-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-card-title img { width: 44px; height: 44px; flex-shrink: 0; }
.service-card-title h3 { font-size: 15px; font-weight: 700; color: #0F172A; }

.service-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .service-card-bottom { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

.service-bullets { display: flex; flex-direction: column; gap: 4px; }
.service-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #64748B;
}
.bullet-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #64748B;
  flex-shrink: 0;
}

/* ===========================
   INDUSTRIES SECTION
   =========================== */
.industries-section {
  width: 100%;
  background: #F8F7F7;
  overflow: hidden;
}
.industries-header-wrap { padding-top: 64px; }
@media (min-width: 768px) { .industries-header-wrap { padding-top: 96px; } }

.industries-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.industries-header .text-eyebrow { margin-bottom: 16px; }
.industries-arrows {
  display: none;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-bottom: 8px;
}
@media (min-width: 640px) { .industries-arrows { display: flex; } }

.arrow-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(15,23,42,0.2);
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.arrow-btn:hover { background: rgba(15,23,42,0.05); }

.industries-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 64px;
  padding-right: 24px;
  padding-left: max(1.5rem, calc((100vw - 1215px) / 2 + 2rem));
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.industries-slider::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .industries-slider { padding-bottom: 96px; } }

.industry-card {
  position: relative;
  flex-shrink: 0;
  width: 240px;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 768px) { .industry-card { width: 265px; } }
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.industry-card:hover img { transform: scale(1.05); }

.industry-label {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
}
.industry-label span {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
  width: 100%;
}

/* ===========================
   PROMO BANNER
   =========================== */
.finance {
  width: 100%;
  padding: 40px 0;
}
.finance-content {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
  background: #0F172A;
}
.finance-content::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 31, 0.66);
  z-index: 2;
}
.finance-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.finance-bg video {
  width: 100%;
  display: block;
}
.finance-wrapper {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.finance-title {
  color: #fff;
  margin: 0;
}
.finance-text {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.finance-cta {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  font-size: 15px;
  padding: 14px 32px;
}
@media (max-width: 1300px) {
  .finance-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .finance-content { padding: 28px 24px; border-radius: 20px; gap: 20px; }
  .finance-wrapper { gap: 14px; }
  .finance-cta { width: 100%; justify-content: center; }
}

/* ===========================
   PACKAGES SECTION
   =========================== */
.packages-section {
  width: 100%;
  background: transparent;
  --pkg-brow: 48px;
}
.packages-section .container { padding-top: 64px; padding-bottom: 64px; padding-left: 0; padding-right: 0; }
@media (min-width: 768px) { .packages-section .container { padding-top: 96px; padding-bottom: 96px; } }
.packages-section .section-header { margin-bottom: 72px; }
@media (min-width: 768px) { .packages-section .section-header { margin-bottom: 96px; } }

/* Desktop grid */
.packages-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
@media (min-width: 1200px) { .packages-grid { display: grid; } }

.pkg-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  height: 100%;
}
.pkg-card.pkg-popular {
  position: relative;
  background: #FFF1E7;
  border: none;
  padding: 4px;
  margin-top: calc(-1 * var(--pkg-brow));
  padding-top: var(--pkg-brow);
  box-sizing: content-box;
}

.pkg-popular-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--pkg-brow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #F97316;
}

.pkg-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  border-radius: 16px;
  background: #fff;
  padding: 28px;
}

.pkg-name { font-size: 20px; font-weight: 700; color: #0F172A; }
.pkg-desc { margin-top: 4px; font-size: 16px; line-height: 1.5; color: #5D5D5D; }
.pkg-price {
  margin-top: 20px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #F97316;
  line-height: 1;
  letter-spacing: -0.03em;
}
.pkg-period { margin-top: 4px; font-size: 16px; line-height: 1.5; letter-spacing: -0.04em; color: #5D5D5D; }

.pkg-cta-outline, .pkg-cta-filled {
  margin-top: 24px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.pkg-cta-outline {
  background: #fff;
  color: #0F172A;
  border: 1px solid #212121;
}
.pkg-cta-outline:hover { border-color: #F97316; color: #F97316; }
.pkg-cta-filled {
  background: #F97316;
  color: #fff;
  border: 1px solid #E2E8F0;
}
.pkg-cta-filled:hover { background: #EA6C00; }

.pkg-includes {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
}
.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #64748B;
}
.pkg-features li img { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }

/* Mobile slider */
.packages-slider-wrap { display: block; }
@media (min-width: 1200px) { .packages-slider-wrap { display: none; } }

.packages-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  padding-top: var(--pkg-brow, 48px);
  padding-bottom: 8px;
  margin-top: calc(-1 * var(--pkg-brow, 48px));
  margin-bottom: -8px;
  padding-left: calc((100% - min(350px, 95vw)) / 2);
  padding-right: calc((100% - min(350px, 95vw)) / 2);
}
.packages-slider::-webkit-scrollbar { display: none; }

.pkg-slide {
  flex-shrink: 0;
  width: min(350px, 95vw);
  scroll-snap-align: center;
  display: flex;
  transition: opacity 0.3s;
}
.pkg-slide.inactive { opacity: 0.6; cursor: pointer; }

/* У слайдері популярна картка така ж, як на ПК: біла частина нарівні
   із сусідами, а зверху виступає бейдж (брова) на свою висоту */
.pkg-slide .pkg-card { width: 100%; }
.pkg-slide .pkg-card.pkg-popular {
  align-self: flex-start;
}

.pkg-dots {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pkg-dot {
  height: 10px;
  border-radius: 100px;
  border: 1px solid #F97316;
  background: #fff;
  width: 10px;
  transition: width 0.3s, background 0.3s;
  padding: 0;
}
.pkg-dot.active { width: 24px; background: #F97316; }

/* ===========================
   WHY SECTION
   =========================== */
.why-section {
  width: 100%;
  background: #F5F5F5;
  overflow: hidden;
}
.why-section .container { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 768px) { .why-section .container { padding-top: 96px; padding-bottom: 96px; } }

.why-header { margin-bottom: 48px; }
.why-header .text-eyebrow { margin-bottom: 16px; }

.why-card {
  border-radius: 16px;
  background: #fff;
  padding: 32px;
}
@media (min-width: 768px) { .why-card { padding: 40px; } }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.why-item { display: flex; flex-direction: column; gap: 16px; }
.why-item-head { display: flex; align-items: center; gap: 12px; }
.why-item-head img { width: 52px; height: 52px; flex-shrink: 0; }
.why-item-head h3 { font-size: 15px; font-weight: 700; line-height: 1.6; color: #F97316; }
.why-item p { font-size: 15px; line-height: 1.6; color: #161515; }

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
  width: 100%;
  background: transparent;
}
.faq-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 56px 4% 64px;
}
@media (min-width: 768px) { .faq-container { padding: 64px 14%; } }
@media (min-width: 1280px) { .faq-container { padding: 80px 19%; } }
@media (min-width: 1536px) { .faq-container { max-width: 1536px; padding: 85px 12%; } }

.faq-container .section-header { margin-bottom: 40px; }
.faq-container .text-eyebrow { margin-bottom: 12px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.faq-item {
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  background: #F4F4F4;
  transition: background 0.2s;
}
.faq-item:hover, .faq-item.active { background: #EFEFEF; }

.faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
}
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; }
.icon-plus { display: block; }
.icon-minus { display: none; }
.faq-item.active .icon-plus { display: none; }
.faq-item.active .icon-minus { display: block; }

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: #0F172A;
}
@media (min-width: 768px) { .faq-question h3 { font-size: 18px; } }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  margin-top: 12px;
}
.faq-answer p {
  padding-left: 41px;
  font-size: 14px;
  line-height: 21px;
  color: #64748B;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
  width: 100%;
  background: #161313;
}
.contact-section .container { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 768px) { .contact-section .container { padding-top: 96px; padding-bottom: 96px; } }

.contact-section .text-eyebrow { color: #F97316; }
.contact-section .section-header .text-h2 { color: #fff; }

.contact-success {
  text-align: center;
  padding: 40px 0;
}
.contact-success-title { color: #fff; font-size: 22px; font-weight: 700; }
.contact-success-sub { color: rgba(255,255,255,0.6); margin-top: 8px; }

.contact-form { max-width: 1130px; margin: 0 auto; }
.contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .contact-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 14px; font-weight: 500; color: #0F172A; }
.contact-section .form-group label { color: #fff; }

.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  background: #fff;
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #0F172A;
  outline: none;
  transition: border-color 0.2s;
}
.contact-section .form-group input,
.contact-section .form-group textarea {
  border-color: transparent;
  margin-top: 16px;
}
.form-group input:focus,
.form-group textarea:focus { border-color: #F97316; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94A3B8; }
.form-group textarea { resize: none; height: 150px; }

.contact-form .form-group { margin-top: 16px; }
.contact-form .contact-row .form-group { margin-top: 0; }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  width: 100%;
  background: #161313;
}
.footer-border { border-top: 1px solid rgba(255,255,255,0.1); }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 56px;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding-top: 64px; padding-bottom: 64px; }
}

.footer-left { display: flex; flex-direction: column; gap: 24px; }
.footer-logo { cursor: pointer; width: fit-content; }
.footer-logo img { height: 36px; width: auto; }

.footer-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.footer-text { font-size: 14px; line-height: 22px; color: rgba(255,255,255,0.8); max-width: 340px; }
.footer-link { font-size: 14px; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.footer-link:hover { color: #fff; }

.footer-socials { display: flex; align-items: center; gap: 12px; }
.footer-social-link { opacity: 0.6; transition: opacity 0.2s; }
.footer-social-link:hover { opacity: 1; }
.footer-social-link img { width: 20px; height: 20px; }

.footer-right { display: flex; flex-direction: column; justify-content: space-between; gap: 32px; }
.footer-nav-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.footer-nav { display: flex; flex-direction: column; gap: 4px; }
.footer-nav-btn {
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  line-height: 26px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  cursor: pointer;
  font-family: inherit;
}
.footer-nav-btn:hover { color: #fff; }
.footer-nav-btn.active { color: #F97316; }
.footer-nav-link {
  display: block;
  font-size: 14px;
  line-height: 26px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-nav-link:hover { color: #fff; }

.footer-desc { font-size: 12px; line-height: 18px; color: rgba(255,255,255,0.35); max-width: 400px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 16px; }

/* ===========================
   MODAL
   =========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22,19,19,0.6);
  backdrop-filter: blur(6px);
  padding: 16px;
  animation: fadeInOverlay 0.2s ease;
}
.modal-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  background: #FAFBFD;
  animation: slideUpModal 0.25s cubic-bezier(0.4,0,0.2,1);
  padding: 40px 28px 36px;
}
@media (min-width: 768px) { .modal-box { max-width: 680px; padding: 40px 48px 36px; } }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  padding: 6px;
  border-radius: 50%;
  color: #94A3B8;
  transition: color 0.2s, background 0.2s;
}
.modal-close:hover { color: #0F172A; background: #F1F5F9; }

.modal-header { margin-bottom: 28px; text-align: center; }
.modal-header .text-eyebrow { margin-bottom: 12px; }
.modal-title { font-size: 26px; font-weight: 700; color: #0F172A; }
@media (min-width: 768px) { .modal-title { font-size: 34px; } }
.modal-subtitle { margin-top: 8px; font-size: 14px; color: #475569; }
@media (min-width: 768px) { .modal-subtitle { font-size: 15px; } }

.modal-note { text-align: center; font-size: 13px; color: #475569; margin-top: 12px; }

.modal-success-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 0;
  gap: 16px;
}
.modal-success-title { font-size: 24px; font-weight: 700; color: #0F172A; }
@media (min-width: 768px) { .modal-success-title { font-size: 32px; } }
.modal-success-sub { font-size: 16px; color: #475569; }

@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUpModal {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 60px;
  left: 0; right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 0 16px 16px;
  pointer-events: none;
}
@media (min-width: 768px) { .cookie-banner { bottom: 0; } }

.cookie-box {
  pointer-events: auto;
  width: 100%;
  max-width: 672px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  border: 1px solid #f3f4f6;
  padding: 20px 24px;
}
.cookie-text-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-emoji { font-size: 24px; line-height: 1; margin-top: 2px; }
.cookie-title { font-size: 15px; font-weight: 600; color: #111827; line-height: 1.3; }
.cookie-desc { margin-top: 4px; font-size: 13px; color: #6b7280; line-height: 1.5; }
.cookie-link { color: #F97316; text-decoration: underline; text-underline-offset: 2px; }
.cookie-link:hover { color: #EA6C00; }

.cookie-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
@media (min-width: 640px) { .cookie-btns { flex-direction: row; justify-content: flex-end; } }

.btn-cookie-reject {
  width: 100%; padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 13px; font-weight: 500;
  color: #374151;
  transition: background 0.2s;
  font-family: inherit;
}
@media (min-width: 640px) { .btn-cookie-reject { width: auto; } }
.btn-cookie-reject:hover { background: #f3f4f6; }

.btn-cookie-accept {
  width: 100%; padding: 10px 20px;
  border-radius: 100px;
  background: #F97316;
  font-size: 13px; font-weight: 500;
  color: #fff;
  box-shadow: 0 2px 8px rgba(249,115,22,0.35);
  transition: background 0.2s;
  font-family: inherit;
}
@media (min-width: 640px) { .btn-cookie-accept { width: auto; } }
.btn-cookie-accept:hover { background: #EA6C00; }

/* ===========================
   FADE-IN ANIMATIONS
   =========================== */
.fade-in,
.fade-in-left,
.fade-in-right,
.fade-in-zoom {
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.fade-in { transform: translateY(24px); }
.fade-in-left { transform: translateX(-32px); }
.fade-in-right { transform: translateX(32px); }
.fade-in-zoom { transform: scale(0.95); }

.fade-in-visible {
  opacity: 1 !important;
  transform: none !important;
}
.fade-exit-up {
  opacity: 0 !important;
  transform: translateY(-16px) !important;
}

.fade-delay-100 { transition-delay: 0.06s; }
.fade-delay-200 { transition-delay: 0.12s; }
.fade-delay-300 { transition-delay: 0.18s; }

/* ===========================
   HIDE SCROLLBAR UTILITY
   =========================== */
.hide-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }
