:root {
  --navy: #07111f;
  --blue: #0b63ce;
  --blue2: #1687ff;
  --cyan: #26c6ff;

  --soft: #f4f8fc;
  --white: #ffffff;

  --text: #111b2a;
  --muted: #647084;
  --line: #e3eaf2;

  --success: #16a36a;

  --max: 1240px;
  --radius: 22px;

  --shadow: 0 20px 60px rgba(7, 17, 31, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.wrap {
  max-width: var(--max);
  margin: auto;
  padding: 0 28px;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section {
  padding: 100px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--blue);
  font-weight: 700;
  font-size: 13px;

  text-transform: uppercase;
  letter-spacing: 0.1em;

  margin-bottom: 15px;
}

.eyebrow::before {
  content: "";

  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: var(--cyan);

  box-shadow: 0 0 0 5px rgba(38, 198, 255, 0.13);
}

/* =========================================
           BUTTONS
        ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  min-height: 50px;

  padding: 0 22px;

  border-radius: 12px;

  border: 1px solid transparent;

  font-weight: 700;
  font-size: 14px;

  cursor: pointer;

  transition: 0.2s ease;
}

.btn-primary {
  color: #fff;

  background: linear-gradient(135deg, var(--blue), var(--blue2));

  box-shadow: 0 10px 24px rgba(11, 99, 206, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);

  box-shadow: 0 15px 32px rgba(11, 99, 206, 0.28);
}

.btn-outline {
  border-color: var(--line);

  background: #fff;

  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--blue);

  color: var(--blue);

  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);

  color: #fff;
}

.btn-dark:hover {
  background: var(--blue);

  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-light:hover {
  background: #69d5ff;
  color: #06101d;
}

/* =========================================
           TOP ANNOUNCEMENT
        ========================================= */

.announcement {
  position: relative;
  z-index: 120;

  background: linear-gradient(90deg, #06101d, #0a2e58 55%, #0879df);

  color: #fff;
}

.announcement-inner {
  min-height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  position: relative;

  padding: 8px 48px 8px 12px;
}

.announcement-badge {
  padding: 4px 9px;

  border-radius: 999px;

  background: #fff;
  color: var(--blue);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.announcement-text {
  font-size: 13px;
}

.announcement a {
  font-size: 13px;

  font-weight: 700;

  text-decoration: underline;

  text-underline-offset: 3px;
}

.banner-close {
  position: absolute;

  right: 4px;
  top: 50%;

  transform: translateY(-50%);

  width: 30px;
  height: 30px;

  border: 0;

  background: transparent;

  color: #fff;

  cursor: pointer;

  font-size: 20px;

  opacity: 0.8;
}

/* =========================================
           HEADER
        ========================================= */

header {
  position: sticky;

  top: 0;

  z-index: 110;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(227, 234, 242, 0.9);
}

.nav {
  height: 76px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;

  align-items: center;

  gap: 31px;
}

.nav-links a {
  font-size: 14px;

  font-weight: 600;

  color: #263245;

  position: relative;
}

.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -7px;

  width: 0;

  height: 2px;

  background: var(--blue);

  transition: 0.2s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;

  align-items: center;

  gap: 10px;
}

.mobile-toggle {
  display: none;

  border: 0;

  background: none;

  width: 42px;
  height: 42px;

  cursor: pointer;
}

.mobile-toggle span {
  display: block;

  width: 23px;
  height: 2px;

  background: var(--navy);

  margin: 5px auto;
}

/* =========================================
           HERO
        ========================================= */

.hero {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 82% 30%,
      rgba(38, 198, 255, 0.24),
      transparent 28%
    ),
    radial-gradient(
      circle at 15% 20%,
      rgba(11, 99, 206, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #f8fbff, #fff);

  padding: 76px 0 82px;
}

.hero::after {
  content: "";

  position: absolute;

  right: -180px;
  bottom: -220px;

  width: 560px;
  height: 560px;

  border: 1px solid rgba(11, 99, 206, 0.12);

  border-radius: 50%;

  box-shadow:
    0 0 0 70px rgba(11, 99, 206, 0.025),
    0 0 0 140px rgba(11, 99, 206, 0.018);
}

.hero-grid {
  display: grid;

  grid-template-columns: 1.03fr 0.97fr;

  gap: 55px;

  align-items: center;

  position: relative;

  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(42px, 5vw, 70px);

  max-width: 720px;

  margin-bottom: 22px;
}

.hero-copy h1 span {
  color: var(--blue);

  background: linear-gradient(90deg, var(--blue), var(--cyan));

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.hero-copy p {
  font-size: 17px;

  color: var(--muted);

  max-width: 610px;

  margin-bottom: 30px;
}

.hero-actions {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}

.hero-trust {
  display: flex;

  gap: 24px;

  flex-wrap: wrap;

  margin-top: 30px;
}

.trust-item {
  display: flex;

  align-items: center;

  gap: 9px;

  font-size: 12px;

  color: #58667a;

  font-weight: 600;
}

.trust-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--success);
}

/* =========================================
           HERO GALLERY
        ========================================= */

.hero-products {
  position: relative;

  min-height: 560px;
}

.hero-gallery {
  position: relative;

  width: 100%;
  height: 100%;
}

.hero-main-card {
  width: min(88%, 500px);

  margin-left: auto;

  background: #fff;

  border: 1px solid rgba(17, 27, 42, 0.08);

  border-radius: 28px;

  box-shadow: var(--shadow);

  padding: 14px;

  overflow: hidden;

  position: relative;

  z-index: 2;
}

.hero-image-wrap {
  height: 340px;

  border-radius: 20px;

  background: #f5f8fb;

  overflow: hidden;

  position: relative;

  display: grid;

  place-items: center;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  transition:
    opacity 0.25s ease,
    transform 0.35s ease;
}

.hero-image-wrap:hover img {
  transform: scale(1.03);
}

.hero-image-label {
  position: absolute;

  left: 14px;
  top: 14px;

  background: rgba(7, 17, 31, 0.88);

  color: #fff;

  padding: 7px 11px;

  border-radius: 999px;

  font-size: 10px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}

.hero-main-caption {
  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  padding: 17px 7px 6px;

  gap: 15px;
}

.hero-main-caption strong {
  display: block;

  font-family: "Space Grotesk";

  font-size: 19px;
}

.hero-main-caption span {
  display: block;

  font-size: 12px;

  color: var(--muted);

  margin-top: 4px;
}

.hero-counter {
  white-space: nowrap !important;

  color: var(--blue) !important;

  font-weight: 800;
}

/* =========================================
           HERO THUMBNAILS
        ========================================= */

.hero-thumbnails {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 10px;

  position: absolute;

  left: 0;

  bottom: 5px;

  z-index: 5;

  width: 210px;
}

.hero-thumb {
  width: 100%;
  height: 96px;

  border-radius: 15px;

  background: #fff;

  border: 2px solid #fff;

  padding: 5px;

  box-shadow: 0 10px 25px rgba(7, 17, 31, 0.14);

  cursor: pointer;

  transition: 0.2s ease;

  position: relative;
}

.hero-thumb img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  border-radius: 10px;

  background: #f4f7fa;
}

.hero-thumb:hover {
  transform: translateY(-4px);

  border-color: #9bcfff;
}

.hero-thumb.active {
  border-color: var(--blue);

  box-shadow: 0 12px 28px rgba(11, 99, 206, 0.2);
}

.hero-thumb::after {
  content: "";

  position: absolute;

  right: 7px;
  top: 7px;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: transparent;
}

.hero-thumb.active::after {
  background: var(--blue);

  box-shadow: 0 0 0 4px rgba(11, 99, 206, 0.12);
}

.floating-pill {
  position: absolute;

  right: 24px;

  bottom: -8px;

  z-index: 6;

  background: var(--navy);

  color: #fff;

  border-radius: 999px;

  padding: 11px 15px;

  font-size: 12px;

  font-weight: 700;

  box-shadow: 0 12px 28px rgba(7, 17, 31, 0.2);
}

/* =========================================
           FEATURE STRIP
        ========================================= */

.feature-strip {
  border-top: 1px solid var(--line);

  border-bottom: 1px solid var(--line);

  background: #fff;
}

.feature-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);
}

.feature {
  padding: 22px 18px;

  display: flex;

  align-items: center;

  gap: 12px;

  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: 0;
}

.feature-icon {
  width: 38px;
  height: 38px;

  border-radius: 11px;

  display: grid;

  place-items: center;

  color: var(--blue);

  background: #edf6ff;

  font-weight: 800;

  flex-shrink: 0;
}

.feature strong {
  display: block;

  font-size: 13px;
}

.feature span {
  font-size: 11px;

  color: var(--muted);
}

/* =========================================
           ABOUT
        ========================================= */

.about-grid {
  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 70px;

  align-items: start;
}

.about h2 {
  font-size: clamp(32px, 3.4vw, 48px);

  margin-bottom: 18px;
}

.about .lede {
  font-size: 16px;

  color: var(--muted);

  max-width: 500px;

  margin-bottom: 25px;
}

.points {
  display: grid;

  gap: 0;
}

.point {
  display: grid;

  grid-template-columns: 48px 1fr;

  gap: 15px;

  padding: 22px 0;

  border-top: 1px solid var(--line);
}

.point:last-child {
  border-bottom: 1px solid var(--line);
}

.point-num {
  width: 36px;
  height: 36px;

  border-radius: 10px;

  background: var(--navy);

  color: #fff;

  display: grid;

  place-items: center;

  font-size: 12px;

  font-weight: 700;
}

.point h3 {
  font-size: 17px;

  letter-spacing: -0.015em;

  margin-bottom: 5px;
}

.point p {
  font-size: 14px;

  color: var(--muted);
}

/* =========================================
           SERVICES
        ========================================= */

.services {
  background: var(--soft);
}

.section-head {
  display: flex;

  justify-content: space-between;

  align-items: end;

  gap: 30px;

  margin-bottom: 45px;
}

.section-head h2 {
  font-size: clamp(31px, 3.4vw, 46px);

  max-width: 650px;
}

.section-head p {
  max-width: 420px;

  color: var(--muted);

  font-size: 15px;
}

.service-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 16px;
}

.service-card {
  background: #fff;

  border: 1px solid var(--line);

  border-radius: 18px;

  padding: 27px;

  min-height: 250px;

  transition: 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);

  box-shadow: var(--shadow);

  border-color: #cfe0f2;
}

.service-icon {
  width: 48px;
  height: 48px;

  border-radius: 14px;

  background: #edf6ff;

  color: var(--blue);

  display: grid;

  place-items: center;

  margin-bottom: 24px;
}

.service-icon svg {
  width: 23px;
  height: 23px;
}

.service-card h3 {
  font-size: 19px;

  margin-bottom: 9px;

  letter-spacing: -0.02em;
}

.service-card p {
  font-size: 14px;

  color: var(--muted);
}

/* =========================================
           PROMOTIONAL BANNER SECTION
        ========================================= */

.banner-section {
  background: #fff;
}

.campaign-banner {
  position: relative;

  min-height: 350px;

  display: grid;

  grid-template-columns: 0.82fr 1.18fr;

  border-radius: 26px;

  overflow: hidden;

  background: var(--navy);

  box-shadow: 0 25px 65px rgba(7, 17, 31, 0.15);
}

.campaign-copy {
  padding: 44px;

  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  justify-content: center;
}

.campaign-kicker {
  color: #69d5ff;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  font-size: 11px;

  font-weight: 800;

  margin-bottom: 9px;
}

.campaign-copy h3 {
  font-size: clamp(28px, 3vw, 42px);

  color: #fff;

  max-width: 490px;

  margin-bottom: 12px;
}

.campaign-copy p {
  color: #b9c8d9;

  font-size: 14px;

  max-width: 500px;

  margin-bottom: 22px;
}

.campaign-art {
  background: #f3f7fb;

  min-height: 350px;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;
}

.campaign-art img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    opacity 0.25s ease,
    transform 0.3s ease;
}

.campaign-dots {
  display: flex;

  justify-content: center;

  gap: 8px;

  margin-top: 17px;
}

.campaign-dot {
  width: 9px;
  height: 9px;

  border: 0;

  border-radius: 50%;

  background: #c8d3df;

  cursor: pointer;

  padding: 0;

  transition: 0.2s;
}

.campaign-dot.active {
  background: var(--blue);

  transform: scale(1.25);
}

/* =========================================
           PRODUCTS
        ========================================= */

.products {
  background: var(--navy);

  color: #fff;
}

.products .eyebrow {
  color: #69d5ff;
}

.products .section-head p {
  color: #9aa9bc;
}

.product-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}

.product-card {
  background: #0d1b2d;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 22px;

  padding: 14px;

  overflow: hidden;

  transition: 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);

  border-color: rgba(38, 198, 255, 0.45);
}

.product-photo {
  height: 280px;

  border-radius: 16px;

  background: #f4f7fa;

  display: grid;

  place-items: center;

  overflow: hidden;
}

.product-photo img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.product-content {
  padding: 22px 10px 10px;
}

.product-tag {
  display: inline-flex;

  padding: 5px 9px;

  border-radius: 999px;

  background: rgba(38, 198, 255, 0.12);

  color: #69d5ff;

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: 0.08em;

  font-weight: 800;

  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 21px;

  margin-bottom: 9px;
}

.product-card p {
  font-size: 14px;

  color: #a9b7c8;

  margin-bottom: 18px;
}

.product-link {
  color: #69d5ff;

  font-weight: 700;

  font-size: 13px;
}

/* =========================================
           PROMO CTA
        ========================================= */

.promo {
  padding: 26px 0;

  background: linear-gradient(135deg, #eaf7ff, #f7fbff);
}

.promo-box {
  position: relative;

  overflow: hidden;

  background: linear-gradient(120deg, #081426 0%, #0b3870 58%, #0787dd 100%);

  border-radius: 26px;

  padding: 42px 48px;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 35px;

  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.16);
}

.promo-box::after {
  content: "";

  position: absolute;

  width: 360px;
  height: 360px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 50%;

  right: -120px;
  top: -180px;
}

.promo-content {
  position: relative;

  z-index: 2;
}

.promo-label {
  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 0.13em;

  font-weight: 800;

  color: #76dcff;

  margin-bottom: 8px;
}

.promo-box h2 {
  font-size: clamp(25px, 3vw, 39px);

  max-width: 670px;

  margin-bottom: 8px;
}

.promo-box p {
  color: #c7d6e6;

  font-size: 14px;

  max-width: 650px;
}

.promo .btn-light {
  position: relative;

  z-index: 2;

  white-space: nowrap;
}

/* =========================================
           WHY US
        ========================================= */

.why-grid {
  display: grid;

  grid-template-columns: 0.95fr 1.05fr;

  gap: 70px;

  align-items: center;
}

.why-panel {
  min-height: 480px;

  border-radius: 26px;

  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(38, 198, 255, 0.3),
      transparent 30%
    ),
    linear-gradient(145deg, #081426, #0b3970);

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  overflow: hidden;
}

.why-panel img {
  width: 62%;

  filter: drop-shadow(0 28px 35px rgba(0, 0, 0, 0.35));

  position: relative;

  z-index: 2;
}

.why-badge {
  position: absolute;

  left: 24px;
  bottom: 24px;

  background: #fff;

  color: var(--navy);

  padding: 13px 16px;

  border-radius: 14px;

  box-shadow: var(--shadow);

  font-size: 12px;

  font-weight: 800;

  z-index: 3;
}

.why h2 {
  font-size: clamp(32px, 3.4vw, 47px);

  margin-bottom: 28px;
}

.why-list {
  border-top: 1px solid var(--line);
}

.why-row {
  display: grid;

  grid-template-columns: 44px 1fr;

  gap: 16px;

  padding: 21px 0;

  border-bottom: 1px solid var(--line);
}

.why-number {
  font-family: "Space Grotesk";

  font-weight: 700;

  color: #b7c5d6;

  font-size: 17px;
}

.why-row h3 {
  font-size: 17px;

  margin-bottom: 5px;

  letter-spacing: -0.015em;
}

.why-row p {
  font-size: 14px;

  color: var(--muted);
}

/* =========================================
           TESTIMONIALS
        ========================================= */

.testimonials {
  background: var(--soft);
}

.testimonial-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.testimonial {
  background: #fff;

  border: 1px solid var(--line);

  border-radius: 18px;

  padding: 28px;
}

.stars {
  color: #f3ad22;

  letter-spacing: 2px;

  margin-bottom: 16px;
}

.testimonial > p {
  font-size: 14.5px;

  margin-bottom: 22px;
}

.person {
  display: flex;

  align-items: center;

  gap: 11px;
}

.avatar {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: var(--navy);

  color: #fff;

  display: grid;

  place-items: center;

  font-weight: 700;
}

.person strong {
  display: block;

  font-size: 13px;
}

.person span {
  display: block;

  font-size: 11px;

  color: var(--muted);
}

/* =========================================
           CONTACT
        ========================================= */

.contact-grid {
  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 70px;
}

.contact h2 {
  font-size: clamp(32px, 3.3vw, 45px);

  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--muted);

  font-size: 15px;

  max-width: 480px;

  margin-bottom: 28px;
}

.contact-line {
  display: flex;

  gap: 13px;

  padding: 17px 0;

  border-top: 1px solid var(--line);
}

.contact-line:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-icon {
  width: 20px;

  color: var(--blue);

  flex-shrink: 0;
}

.contact-line strong {
  display: block;

  font-size: 12px;
}

.contact-line span,
.contact-line a {
  font-size: 14px;

  color: var(--muted);
}

.contact-form {
  background: #f8fbfe;

  border: 1px solid var(--line);

  border-radius: 22px;

  padding: 28px;
}

.form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 13px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;

  border: 1px solid var(--line);

  background: #fff;

  border-radius: 11px;

  padding: 14px 15px;

  color: var(--text);

  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--blue);

  box-shadow: 0 0 0 3px rgba(11, 99, 206, 0.08);
}

.contact-form textarea {
  min-height: 130px;

  resize: vertical;

  margin-top: 13px;
}

.contact-form select {
  margin-top: 13px;
}

.contact-form button {
  margin-top: 14px;
}

/* =========================================
           FOOTER
        ========================================= */

footer {
  background: #050d18;

  color: #aab8c9;

  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;

  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;

  gap: 45px;

  padding-bottom: 45px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-brand img {
  height: 40px;

  width: auto;

  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 13px;

  line-height: 1.75;

  max-width: 300px;
}

.footer-col h4 {
  font-family: "DM Sans";

  font-size: 13px;

  color: #fff;

  margin-bottom: 17px;
}

.footer-col ul {
  display: grid;

  gap: 10px;

  list-style: none;
}

.footer-col a,
.footer-col span {
  font-size: 13px;
}

.footer-col a:hover {
  color: #69d5ff;
}

.socials {
  display: flex;

  gap: 9px;

  margin-top: 18px;
}

.socials a {
  width: 34px;
  height: 34px;

  border: 1px solid rgba(255, 255, 255, 0.14);

  border-radius: 10px;

  display: grid;

  place-items: center;
}

.socials a:hover {
  border-color: #69d5ff;

  color: #69d5ff;
}

.socials svg {
  width: 15px;
  height: 15px;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  gap: 15px;

  flex-wrap: wrap;

  padding-top: 22px;

  font-size: 11px;

  color: #718095;
}

/* =========================================
           TABLET
        ========================================= */

@media (max-width: 1050px) {
  .nav-links {
    gap: 20px;
  }

  .hero-grid {
    gap: 25px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature:nth-child(2) {
    border-right: 0;
  }

  .feature:nth-child(3),
  .feature:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .hero-main-card {
    width: 92%;
  }

  .hero-thumbnails {
    width: 190px;
  }
}

/* =========================================
           MOBILE NAV
        ========================================= */

@media (max-width: 820px) {
  .section {
    padding: 72px 0;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;

    left: 0;
    right: 0;

    top: 76px;

    background: #fff;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 22px;

    padding: 28px;

    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);

    transform: translateY(-140%);

    transition: 0.25s;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .hero {
    padding: 55px 0;
  }

  .hero-grid,
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .hero-products {
    min-height: 500px;
  }

  .hero-main-card {
    width: 82%;
  }

  .hero-thumbnails {
    width: 205px;
  }

  .section-head {
    align-items: flex-start;

    flex-direction: column;
  }

  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .promo-box {
    padding: 32px;

    align-items: flex-start;

    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================
           SMALL MOBILE
        ========================================= */

@media (max-width: 700px) {
  .hero-main-card {
    width: 86%;
  }

  .hero-thumbnails {
    position: static;

    width: 100%;

    margin-top: 13px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 7px;
  }

  .hero-thumb {
    width: 100%;
    height: 70px;
  }

  .hero-products {
    min-height: auto;
  }

  .hero-products .floating-pill {
    right: 5px;

    bottom: 88px;
  }

  .campaign-banner {
    grid-template-columns: 1fr;
  }

  .campaign-copy {
    padding: 32px;
  }

  .campaign-art {
    min-height: 240px;
  }
}

/* =========================================
           VERY SMALL MOBILE
        ========================================= */

@media (max-width: 560px) {
  .wrap {
    padding: 0 18px;
  }

  .announcement-inner {
    justify-content: flex-start;

    flex-wrap: wrap;

    gap: 7px;

    padding-right: 42px;
  }

  .announcement-text {
    font-size: 11px;
  }

  .hero-copy h1 {
    font-size: 39px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-main-card {
    width: 100%;

    padding: 12px;

    border-radius: 20px;
  }

  .hero-image-wrap {
    height: 250px;
  }

  .hero-main-caption {
    padding: 14px 4px 4px;
  }

  .hero-main-caption strong {
    font-size: 16px;
  }

  .hero-main-caption span {
    font-size: 11px;
  }

  .hero-thumbnails {
    grid-template-columns: repeat(4, 1fr);

    gap: 6px;
  }

  .hero-thumb {
    height: 66px;

    padding: 3px;

    border-radius: 11px;
  }

  .floating-pill {
    right: 5px;

    bottom: 83px;

    font-size: 10px;

    padding: 9px 11px;
  }

  .feature-grid,
  .service-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: 0 !important;

    border-top: 1px solid var(--line);
  }

  .feature:first-child {
    border-top: 0;
  }

  .service-card {
    min-height: auto;
  }

  .product-photo {
    height: 250px;
  }

  .promo-box {
    padding: 28px 22px;
  }

  .why-panel {
    min-height: 370px;
  }

  .contact-form {
    padding: 18px;
  }

  .campaign-copy {
    padding: 28px 22px;
  }
}
