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

:root {
  --orange:       #F07820;
  --orange-dark:  #C85F0D;
  --orange-light: #FF9A3D;
  --blue-dark:    #0F2035;
  --blue:         #1E3A5F;
  --blue-mid:     #2A5080;
  --blue-light:   #3B6B9E;
  --gray-bg:      #F4F7FA;
  --gray-border:  #E0E8F0;
  --text:         #1A2535;
  --text-muted:   #5A6E84;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 12px rgba(30, 58, 95, 0.10);
  --shadow:       0 4px 24px rgba(30, 58, 95, 0.14);
  --shadow-lg:    0 12px 48px rgba(30, 58, 95, 0.18);
  --radius:       12px;
  --radius-lg:    20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
p  { line-height: 1.75; }

a { color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240, 120, 32, 0.12);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { color: var(--blue); margin-bottom: 14px; }
.section-header p  { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* =============================================
   SCROLL PROGRESS BAR
============================================= */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240, 120, 32, 0.45);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.40);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 58, 95, 0.35);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s ease;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 12px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-logo img {
  height: 46px;
  width: auto;
  transition: opacity 0.3s;
}
.navbar-logo:hover img { opacity: 0.85; }

.navbar-logo .logo-dark   { display: none; }
.navbar-logo .logo-white  { display: block; }
.navbar.scrolled .navbar-logo .logo-white { display: none; }
.navbar.scrolled .navbar-logo .logo-dark  { display: block; }

.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}
.navbar-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}
.navbar.scrolled .navbar-nav a { color: var(--text); }
.navbar-nav a:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.navbar.scrolled .navbar-nav a:hover { background: var(--gray-bg); color: var(--blue); }

.navbar-cta { display: flex; align-items: center; gap: 12px; }
.navbar-cta .btn { padding: 10px 20px; font-size: 0.88rem; }
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.navbar-phone:hover { color: var(--orange-light); }
.navbar.scrolled .navbar-phone { color: var(--text-muted); }
.navbar.scrolled .navbar-phone:hover { color: var(--orange); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--blue-dark);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  transition: background 0.2s;
  width: 80%;
  text-align: center;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); }
.mobile-menu .divider {
  width: 40px; height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 8px 0;
}
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-close:hover { background: rgba(255,255,255,0.1); }

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-mid) 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--orange-light) 0%, var(--orange) 50%, var(--orange-dark) 100%);
}
.hero-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,120,32,0.08) 0%, transparent 70%);
  right: -100px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
  width: 100%;
  padding: 48px 0;
}
.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,120,32,0.18);
  border: 1px solid rgba(240,120,32,0.35);
  color: var(--orange-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeInDown 0.7s ease both;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  animation: fadeInLeft 0.8s ease 0.15s both;
}
.hero h1 em {
  color: var(--orange);
  font-style: normal;
}
.hero-subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeInLeft 0.8s ease 0.3s both;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInLeft 0.8s ease 0.45s both;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.8s ease 0.6s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}
.trust-item-icon {
  width: 28px; height: 28px;
  background: rgba(240,120,32,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-light);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeInRight 1s ease 0.2s both;
}

.shelf-illustration {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.45));
}

.hero-shelf-bg {
  display: none;
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 75%;
  max-width: 340px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

/* Floating info cards */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  filter: drop-shadow(0 12px 32px rgba(30, 58, 95, 0.22));
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  will-change: transform;
  transform: translateZ(0);
}
.float-card-1 { bottom: 8%; left: -8%; }
.float-card-2 { top: 8%; right: -5%; }
.float-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-icon.orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: var(--white); }
.float-icon.blue   { background: linear-gradient(135deg, var(--blue), var(--blue-mid));     color: var(--white); }
.float-text-main { font-weight: 700; font-size: 0.9rem; color: var(--text); line-height: 1.2; }
.float-text-sub  { font-size: 0.72rem; color: var(--text-muted); }

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
  pointer-events: none;
}

/* =============================================
   STATS BAR
============================================= */
.stats-bar { background: var(--blue-dark); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.stat-label { color: rgba(255,255,255,0.60); font-size: 0.85rem; font-weight: 400; }

/* =============================================
   PARTNERS
============================================= */
.partners {
  background: var(--white);
  padding: 52px 0;
  border-bottom: 1px solid var(--gray-border);
}
.partners-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.partner-logo-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: 14px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  min-width: 170px;
  transition: all 0.25s;
  cursor: default;
}
.partner-logo-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.partner-logo-card img {
  height: 38px;
  width: auto;
  max-width: 155px;
  object-fit: contain;
}
.partners-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}

/* =============================================
   SERVICES
============================================= */
.services { background: var(--gray-bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--gray-border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(240, 120, 32, 0.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.svc-card:hover .svc-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
}
.svc-card h3 { color: var(--blue); margin-bottom: 10px; font-size: 1.05rem; }
.svc-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.svc-card p strong { color: var(--text); font-weight: 600; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: gap 0.2s;
}
.svc-link:hover { gap: 10px; }
.svc-num {
  position: absolute;
  bottom: 20px; right: 24px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(30,58,95,0.05);
  line-height: 1;
  pointer-events: none;
}

/* =============================================
   WHY
============================================= */
.why { background: var(--white); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-content h2 { color: var(--blue); margin-bottom: 14px; }
.why-content .lead { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; }

.why-items { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  transition: all 0.25s;
}
.why-item:hover { background: var(--gray-bg); transform: translateX(4px); }
.why-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.why-item h4 { color: var(--blue); font-size: 0.95rem; margin-bottom: 4px; }
.why-item p  { color: var(--text-muted); font-size: 0.875rem; }

.why-visual { position: relative; }
.why-visual-box {
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.why-visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.why-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 120px;
}
.why-badge-num { font-size: 2.4rem; font-weight: 900; color: var(--orange); line-height: 1; }
.why-badge-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }

/* =============================================
   REFERENCES
============================================= */
.references { background: var(--gray-bg); }
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px; }
.ref-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.ref-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ref-card-photo { position: relative; padding-top: 56.25%; overflow: hidden; }
.ref-card-photo img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ref-card:hover .ref-card-photo img { transform: scale(1.05); }
.ref-card-date {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 1;
}
.ref-card-body { padding: 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ref-card-client { height: 32px; display: flex; align-items: center; }
.ref-card-client img { height: 28px; width: auto; max-width: 115px; object-fit: contain; }
.ref-card h3 { color: var(--blue); font-size: 1rem; margin: 0; }
.ref-card > .ref-card-body > p { color: var(--text-muted); font-size: 0.875rem; margin: 0; line-height: 1.65; flex: 1; }
.ref-stats { display: flex; gap: 20px; padding: 10px 0; border-top: 1px solid var(--gray-border); border-bottom: 1px solid var(--gray-border); }
.ref-stat-num { font-size: 1.35rem; font-weight: 900; color: var(--orange); line-height: 1; display: block; }
.ref-stat-lab { font-size: 0.7rem; color: var(--text-muted); display: block; margin-top: 3px; }
.testimonials-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.case-tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.case-tag {
  background: rgba(240,120,32,0.2);
  border: 1px solid rgba(240,120,32,0.3);
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.case-card:hover { box-shadow: var(--shadow-lg); }

.testimonial-card { padding: 36px; display: flex; flex-direction: column; gap: 16px; }
.testimonial-stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-text { font-style: italic; color: var(--text); font-size: 0.95rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.author-title { font-size: 0.78rem; color: var(--text-muted); }

/* =============================================
   CTA / CONTACT
============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #C85F0D 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.cta-content h2 { color: var(--white); margin-bottom: 14px; }
.cta-content p  { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 28px; }
.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 12px;
  transition: opacity 0.2s;
}
.cta-phone-link:hover { opacity: 0.85; }
.cta-phone-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta-guarantees { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.cta-guarantee-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.88); font-size: 0.88rem; }
.cta-guarantee-item svg { flex-shrink: 0; }

/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.contact-form-title { font-size: 1.1rem; font-weight: 800; color: var(--blue); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 76px; }
/* Honeypot field – piilotettu käyttäjiltä, näkyvä boteille */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  overflow: hidden;
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 4px;
}
.form-submit:hover:not(:disabled) {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,58,95,0.3);
}
.form-submit:disabled { opacity: 0.7; cursor: default; transform: none; }
.form-submit.success { background: #16a34a; cursor: default; }
.form-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 10px; text-align: center; }
.form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: none;
}
.form-error.visible { display: block; }

/* =============================================
   FOOTER
============================================= */
.footer { background: var(--blue-dark); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 56px; }
.footer-brand img { width: 100%; margin-bottom: 18px; display: block; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.50); line-height: 1.75; margin-bottom: 20px; }

.std-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,120,32,0.15);
  border: 1px solid rgba(240,120,32,0.3);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange-light);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.50); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }

.footer-contact-row { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.50); font-size: 0.875rem; }
.footer-contact-item svg { color: var(--orange); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.50); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--orange); }

.footer-area-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px;
}
.footer-area-box h5 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.footer-area-box p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.8; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.30); }
.footer-bottom a { color: rgba(255,255,255,0.30); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange); }
.footer-bottom-links { display: flex; gap: 20px; }

/* =============================================
   SCROLL REVEAL ANIMATIONS
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

@keyframes fadeInDown  { from { opacity:0; transform:translateY(-20px) } to { opacity:1; transform:none } }
@keyframes fadeInLeft  { from { opacity:0; transform:translateX(-36px) } to { opacity:1; transform:none } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(36px)  } to { opacity:1; transform:none } }
@keyframes fadeInUp    { from { opacity:0; transform:translateY(24px)  } to { opacity:1; transform:none } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-eyebrow { display: flex; margin: 0 auto 24px; }
  .hero h1 { text-align: center; }
  .hero-subtitle { max-width: none; text-align: center; margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .hero-shelf-bg { display: block; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .ref-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .navbar-nav, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-brand { text-align: center; }
  .footer-brand img { max-width: 200px; margin: 0 auto 18px; }
  .hero-accent { display: none; }
  .ref-grid { grid-template-columns: 1fr; }
  .testimonials-row { grid-template-columns: 1fr; }
  .three-col-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }
}

/* =============================================
   NAVBAR DROPDOWN
============================================= */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 4px; }
.dropdown-arrow { display: flex; align-items: center; transition: transform 0.2s; }
.has-dropdown:hover .dropdown-arrow,
.has-dropdown:focus-within .dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 290px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(15, 32, 53, 0.28);
  border: 1px solid var(--gray-border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 998;
  /* Bridge to prevent hover gap closing the menu */
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  color: var(--text) !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  background: none !important;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover {
  background: var(--gray-bg) !important;
  color: var(--orange) !important;
}
.nav-dropdown-icon {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: rgba(240, 120, 32, 0.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  transition: background 0.15s;
}
.nav-dropdown a:hover .nav-dropdown-icon { background: rgba(240, 120, 32, 0.20); }

/* Mobile Palvelut sub-section */
.mobile-svc-toggle {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  padding: 14px 32px;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}
.mobile-svc-toggle:hover { background: rgba(255,255,255,0.08); }
.mobile-svc-arrow { display: flex; transition: transform 0.3s; }
.mobile-svc-toggle.open .mobile-svc-arrow { transform: rotate(180deg); }
.mobile-svc-sub {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 80%;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 4px;
}
.mobile-svc-sub.open { display: flex; }
.mobile-svc-sub a {
  color: rgba(255,255,255,0.72) !important;
  font-size: 1rem !important;
  padding: 12px 24px !important;
  width: 100%;
  text-align: center;
}
.mobile-svc-sub a:hover { background: rgba(255,255,255,0.08); color: var(--white) !important; }

/* =============================================
   BREADCRUMB
============================================= */
.breadcrumb-bar {
  background: var(--gray-bg);
  border-bottom: 1px solid var(--gray-border);
  padding: 12px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: var(--gray-border); }
.breadcrumb-current { color: var(--text); font-weight: 500; }

/* =============================================
   PAGE HERO (alasivut)
============================================= */
.page-hero {
  min-height: 82vh;
  padding-top: 112px;
  padding-bottom: 72px;
}
/* Ei hero-wavea alasivuille oletuksena */
.page-hero .hero-wave { display: none; }

/* =============================================
   INSPECTION REPORT CARD
============================================= */
.report-card {
  background: linear-gradient(145deg, var(--blue-dark) 0%, #0A1929 100%);
  border-radius: 20px;
  padding: 28px;
  max-width: 430px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.report-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.report-header-meta h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  margin: 0 0 3px;
}
.report-header-meta p {
  color: rgba(255,255,255,0.38);
  font-size: 0.72rem;
  margin: 0;
  line-height: 1.4;
}
.report-en-badge {
  background: rgba(240,120,32,0.20);
  color: var(--orange-light);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(240,120,32,0.3);
  white-space: nowrap;
  flex-shrink: 0;
}
.report-rows { display: flex; flex-direction: column; gap: 8px; }
.report-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.report-row.in { opacity: 1; transform: none; }
.report-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.report-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  animation: rdot-pulse 2.2s ease-in-out infinite;
}
.report-dot.green  { background: #22c55e; }
.report-dot.green::after  { background: #22c55e; }
.report-dot.yellow { background: #eab308; }
.report-dot.yellow::after { background: #eab308; }
.report-dot.red    { background: #ef4444; }
.report-dot.red::after    { background: #ef4444; }
@keyframes rdot-pulse {
  0%, 100% { transform: scale(1); opacity: 0.25; }
  50%       { transform: scale(2);   opacity: 0;    }
}
.report-info { flex: 1; min-width: 0; }
.report-info-name   { color: rgba(255,255,255,0.82); font-size: 0.82rem; font-weight: 600; display: block; }
.report-info-status { color: rgba(255,255,255,0.38); font-size: 0.70rem; display: block; margin-top: 2px; }
.report-count { color: rgba(255,255,255,0.40); font-size: 0.72rem; font-weight: 500; white-space: nowrap; }
.report-health {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.report-health.in { opacity: 1; }
.report-health-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 7px;
}
.report-health-label strong { color: rgba(255,255,255,0.78); font-weight: 700; }
.report-health-track {
  height: 7px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.report-health-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  border-radius: 100px;
  transition: width 0.9s cubic-bezier(.4,0,.2,1);
}
.report-footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.report-stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.15);
  color: #86efac;
  border: 1px solid rgba(34,197,94,0.3);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.report-stamp.in { opacity: 1; transform: scale(1); }
.report-date { color: rgba(255,255,255,0.22); font-size: 0.70rem; }

/* =============================================
   PROCESS STEPS TIMELINE
============================================= */
.steps-timeline { display: flex; flex-direction: column; }
.step-item {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 28px;
}
.step-item:last-child { padding-bottom: 0; }
.step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 44px; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(240,120,32,0.35);
}
.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, var(--orange) 0%, var(--gray-border) 100%);
  margin-top: 6px;
  min-height: 24px;
}
.step-item:last-child .step-line { display: none; }
.step-body { padding-top: 10px; }
.step-body h4 { color: var(--blue); font-size: 0.98rem; margin-bottom: 6px; }
.step-body p  { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; }

/* =============================================
   TRAFFIC LIGHT LEGEND
============================================= */
.traffic-legend { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.traffic-card {
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.traffic-card:hover { transform: translateY(-4px); }
.traffic-card.green  { background: rgba(34,197,94,0.07);  border: 1.5px solid rgba(34,197,94,0.2);  }
.traffic-card.yellow { background: rgba(234,179,8,0.07);  border: 1.5px solid rgba(234,179,8,0.2);  }
.traffic-card.red    { background: rgba(239,68,68,0.07);  border: 1.5px solid rgba(239,68,68,0.2);  }
.traffic-card:hover.green  { box-shadow: 0 8px 24px rgba(34,197,94,0.15);  }
.traffic-card:hover.yellow { box-shadow: 0 8px 24px rgba(234,179,8,0.15);  }
.traffic-card:hover.red    { box-shadow: 0 8px 24px rgba(239,68,68,0.15);  }
.traffic-dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  margin: 0 auto 12px;
}
.traffic-card.green  .traffic-dot { background: #22c55e; box-shadow: 0 4px 16px rgba(34,197,94,0.45);  }
.traffic-card.yellow .traffic-dot { background: #eab308; box-shadow: 0 4px 16px rgba(234,179,8,0.45);  }
.traffic-card.red    .traffic-dot { background: #ef4444; box-shadow: 0 4px 16px rgba(239,68,68,0.45);  }
.traffic-card h4 { font-size: 0.875rem; margin-bottom: 5px; }
.traffic-card.green  h4 { color: #16a34a; }
.traffic-card.yellow h4 { color: #ca8a04; }
.traffic-card.red    h4 { color: #dc2626; }
.traffic-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* =============================================
   FAQ ACCORDION
============================================= */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  list-style: none;
}
.faq-question h3 { font-size: 0.95rem; color: var(--blue); font-weight: 600; margin: 0; line-height: 1.4; }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
  color: var(--text-muted);
}
.faq-item.open .faq-icon { background: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0,1,0,1);
}
.faq-item.open .faq-answer { max-height: 600px; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 22px 20px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }

/* =============================================
   BENEFIT CARDS 2×2
============================================= */
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.benefit-card {
  background: var(--gray-bg);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.25s;
}
.benefit-card:hover { border-color: var(--orange); background: var(--white); transform: translateY(-3px); box-shadow: var(--shadow); }
.benefit-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.benefit-card h4 { color: var(--blue); font-size: 0.95rem; margin-bottom: 6px; }
.benefit-card p  { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; margin: 0; }

/* =============================================
   BRAND CHIPS
============================================= */
.brand-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.brand-chip {
  background: var(--gray-bg);
  border: 1.5px solid var(--gray-border);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s;
}
.brand-chip:hover { border-color: var(--orange); color: var(--orange); background: var(--white); }

/* =============================================
   SUBPAGE RESPONSIVE ADDITIONS
============================================= */
@media (max-width: 900px) {
  .traffic-legend { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 768px) {
  .benefit-grid { grid-template-columns: 1fr; }
  .report-card { max-width: 100%; }
  .page-hero { min-height: auto; padding-top: 100px; padding-bottom: 48px; }
  .traffic-legend { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .traffic-card { padding: 14px 10px; }
  .traffic-dot { width: 26px; height: 26px; }
}

/* ── Evästebanneri ───────────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0F2035;
  color: #e0e8f0;
  padding: 20px;
  z-index: 9999;
  font-size: 14px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  animation: cookieSlideUp 0.4s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
}

.cookie-banner-title {
  margin: 0 0 4px;
  font-weight: 600;
  font-size: 15px;
}

.cookie-banner-desc {
  margin: 0;
  color: #8899aa;
  font-size: 13px;
  line-height: 1.4;
}

.cookie-banner-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: opacity 0.2s;
}

.cookie-btn:hover {
  opacity: 0.9;
}

.cookie-btn-primary {
  background: #F07820;
  color: #fff;
}

.cookie-btn-secondary {
  background: transparent;
  color: #8899aa;
  border: 1px solid #334455;
}
