@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --bg: #0c1117;
  --surface: #131b24;
  --surface-soft: #1a2430;
  --surface-alt: #101720;
  --card: #17212c;
  --primary: #f26d21;
  --primary-dark: #c95614;
  --secondary: #6ad7ff;
  --text: #f5f7fa;
  --muted: #a7b1bc;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(106, 215, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(242, 109, 33, 0.22), transparent 32%),
    linear-gradient(180deg, #0c1117 0%, #0b1015 100%);
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

p {
  color: var(--muted);
  margin-bottom: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
}

h1 {
  font-size: clamp(3rem, 6vw, 4.7rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.container {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 24px;
}

section {
  padding: 56px 0;
}

.site-header {
  left: 0;
  padding: 18px 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(12, 17, 23, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.logo img {
  width: 178px;
}

.header-link {
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  padding: 72px 0 64px;
}

.hero-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  background: rgba(242, 109, 33, 0.14);
  border: 1px solid rgba(242, 109, 33, 0.25);
  border-radius: 999px;
  color: #ffd4bc;
  display: inline-flex;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  padding: 8px 12px;
  text-transform: uppercase;
}

.lead-copy {
  color: var(--text);
  font-size: 1.2rem;
  max-width: 36rem;
}

.sub-copy,
.hero-note,
.muted-copy,
.footer-copy,
.footer-meta,
.order-note {
  font-size: 0.98rem;
}

.hero-note {
  max-width: 38rem;
}

.hero-image {
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  margin-inline: auto;
}

.btn {
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, #ff8f3d 100%);
  border: none;
  border-radius: 18px;
  box-shadow: 0 16px 35px rgba(242, 109, 33, 0.28);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 700;
  gap: 14px;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 58px;
  padding: 16px 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #f26d21 100%);
  box-shadow: 0 18px 42px rgba(242, 109, 33, 0.34);
  transform: translateY(-2px);
}

.img-box,
.feature-card,
.contact-card,
.order-card,
.legal-card,
.thanks-card {
  background: linear-gradient(180deg, rgba(23, 33, 44, 0.96) 0%, rgba(16, 23, 32, 0.96) 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.img-box {
  overflow: hidden;
  padding: 18px;
}

.img-content {
  bottom: 36px;
  position: absolute;
  right: 32px;
  text-align: center;
}

.img-content h3 {
  font-size: 1.5rem;
}

.img-numbers {
  display: flex;
  justify-content: space-between;
  padding: 10px 10px 0;
}

.icon-text {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.icon-text span {
  align-items: center;
  background: rgba(106, 215, 255, 0.12);
  border: 1px solid rgba(106, 215, 255, 0.22);
  border-radius: 14px;
  color: var(--secondary);
  display: inline-flex;
  flex-shrink: 0;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.feature-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  min-height: 100%;
  padding: 26px;
}

.feature-card p {
  margin-top: 12px;
}

.feature-kicker {
  color: var(--secondary);
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.contact-card {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 32px;
}

.contact-card p {
  margin-top: 10px;
  max-width: 44rem;
}

.contact-card a:not(.btn),
.testimonials-section a,
.cookPopup_desc a,
.order-form-consent a,
.legal-content a,
.footer-meta a,
.footer-links a {
  color: var(--secondary);
  text-decoration: none;
}

.section-intro {
  margin-bottom: 30px;
  text-align: center;
}

.section-intro p {
  margin: 14px auto 0;
  max-width: 40rem;
}

.testimonials-section {
  background: linear-gradient(180deg, rgba(19, 27, 36, 0.94) 0%, rgba(12, 17, 23, 0.96) 100%);
}

.slider-container {
  margin: 0 auto;
  max-width: 1120px;
  overflow: hidden;
  padding: 0 24px;
}

.slider-btns {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.slider-btn {
  align-items: center;
  background: rgba(242, 109, 33, 0.12);
  border: 1px solid rgba(242, 109, 33, 0.26);
  border-radius: 50%;
  color: var(--primary);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.25rem;
  height: 48px;
  justify-content: center;
  transition: all 0.2s ease;
  width: 48px;
}

.slider-btn:hover {
  background: rgba(242, 109, 33, 0.2);
}

.slider-btn.disabled {
  cursor: default;
  opacity: 0.32;
  pointer-events: none;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
}

.slide {
  flex-shrink: 0;
  width: calc(33.333% - 14px);
}

.testimonial-card {
  background: rgba(23, 33, 44, 0.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  height: 100%;
  overflow: hidden;
}

.testimonal-heading {
  background: rgba(106, 215, 255, 0.06);
  border-bottom: 1px solid var(--border);
  padding: 16px 18px;
}

.name {
  align-items: center;
  display: flex;
  gap: 12px;
}

.name img {
  border-radius: 50%;
  height: 52px;
  object-fit: cover;
  width: 52px;
}

.name p {
  color: var(--text);
  font-size: 0.92rem;
}

.testimonial-text {
  color: var(--text);
  padding: 20px 18px 24px;
}

.slider-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.dot {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  height: 10px;
  transition: all 0.2s ease;
  width: 10px;
}

.dot.active {
  background: var(--primary);
  width: 30px;
}

.order-section {
  background:
    radial-gradient(circle at left center, rgba(242, 109, 33, 0.2), transparent 22%),
    radial-gradient(circle at right center, rgba(106, 215, 255, 0.16), transparent 22%);
}

.order-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1.15fr;
}

.order-layout p {
  margin-top: 14px;
}

.order-card {
  padding: 28px;
}

.order-form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.order-form-field {
  display: block;
}

.order-form-field.full {
  grid-column: 1 / -1;
}

.order-form-label {
  color: var(--text);
  display: block;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.order-form-input {
  background: rgba(12, 17, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  color: var(--text);
  min-height: 56px;
  outline: none;
  padding: 14px 16px;
  width: 100%;
}

.order-form-input::placeholder {
  color: rgba(167, 177, 188, 0.72);
}

.order-form-input:focus {
  border-color: rgba(106, 215, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(106, 215, 255, 0.12);
}

.order-form-consent {
  align-items: flex-start;
  display: flex;
  gap: 12px;
}

.order-form-consent input {
  accent-color: var(--primary);
  margin-top: 5px;
}

.order-form-consent span {
  color: var(--muted);
  font-size: 0.95rem;
}

.order-submit {
  margin-top: 18px;
  width: 100%;
}

.disclaimer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.disclaimer-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--text);
  padding: 10px 14px;
}

.disclosure-section {
  padding-top: 24px;
}

.site-footer {
  background: rgba(7, 11, 16, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 32px 0 44px;
}

.footer-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.footer-logo img {
  width: 162px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  list-style: none;
}

.footer-links li {
  display: flex;
}

.footer-links a,
.footer-btn {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: var(--text);
  display: inline-flex;
  min-height: 46px;
  padding: 10px 14px;
  text-decoration: none;
}

.footer-btn {
  cursor: pointer;
  font: inherit;
}

#cookPopup {
  background: rgba(12, 17, 23, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  bottom: 20px;
  box-shadow: var(--shadow);
  display: none;
  gap: 16px;
  left: 50%;
  max-width: 960px;
  padding: 24px;
  position: fixed;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  z-index: 9999;
}

#cookPopup.show {
  display: flex;
}

.cookPopup_title {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.cookPopup_desc {
  flex: 1;
}

.cookPopup_btn {
  min-width: 180px;
}

.legal-body .site-header,
.thanks-body .site-header {
  position: static;
}

.legal-hero,
.thanks {
  padding-top: 72px;
}

.legal-card,
.thanks-card {
  margin: 0 auto;
  max-width: 880px;
  padding: 34px;
}

.legal-content {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.legal-content section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 24px;
}

.legal-content h2 {
  font-size: 1.5rem;
}

.legal-content p + p,
.legal-content ul {
  margin-top: 12px;
}

.legal-content ul {
  color: var(--muted);
  padding-left: 20px;
}

.legal-note {
  background: rgba(242, 109, 33, 0.08);
  border: 1px solid rgba(242, 109, 33, 0.18);
  border-radius: 18px;
  color: #ffd7c2;
  margin-top: 18px;
  padding: 16px;
}

.thanks-card {
  text-align: center;
}

.thanks-card img {
  margin: 0 auto 16px;
  width: 72px;
}

.thanks-card p {
  margin-top: 14px;
}

@media (max-width: 991.98px) {
  .feature-grid,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .slide {
    width: calc(50% - 10px);
  }
}

@media (max-width: 767.98px) {
  section,
  .hero,
  .legal-hero,
  .thanks {
    padding: 42px 0;
  }

  .header-inner {
    flex-direction: column;
  }

  .logo img,
  .footer-logo img {
    width: 150px;
  }

  .hero-content,
  .contact-card {
    text-align: left;
  }

  .btn,
  .header-link,
  .footer-links a,
  .footer-btn {
    width: 100%;
  }

  .order-form-grid {
    grid-template-columns: 1fr;
  }

  .slide {
    width: 100%;
  }

  .slider-container {
    padding: 0 16px;
  }

  .slider-btns {
    justify-content: center;
  }

  #cookPopup.show {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookPopup_btn {
    width: 100%;
  }

  .legal-card,
  .thanks-card,
  .order-card,
  .feature-card,
  .contact-card {
    padding: 22px;
  }
}
