/* =========================================================
   INFINI BOOST — PREMIUM MARKETMEDIA STYLE
   Dark UI • Strong Cards • Orange Effects • Responsive
========================================================= */

/* ===================== ROOT ===================== */

:root {
  --bg: #071522;
  --bg-soft: #0b1b2a;
  --card: #102131;
  --card-light: #14283a;
  --text: #f4f7fb;
  --text-soft: #aebbc8;
  --orange: #ff7a36;
  --orange-light: #ff9b63;
  --orange-dark: #e85d1c;
  --blue: #1b4d89;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 122, 54, 0.55);
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
  --glow: 0 0 45px rgba(255, 122, 54, 0.18);
  --radius: 24px;
  --radius-small: 16px;
  --container: 1240px;
}

/* ===================== RESET ===================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(255, 122, 54, 0.08),
      transparent 25%
    ),
    radial-gradient(
      circle at 10% 35%,
      rgba(35, 90, 150, 0.10),
      transparent 30%
    ),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  width: 500px;
  height: 500px;
  top: -250px;
  right: -150px;
  border-radius: 50%;
  background: rgba(255, 122, 54, 0.08);
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* ===================== GLOBAL CONTAINER ===================== */

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

section {
  position: relative;
  padding: 100px 0;
}

/* ===================== TYPOGRAPHY ===================== */

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.section-label::before,
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
}

h1,
h2,
h3,
h4 {
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 6vw, 6.8rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 850;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

p {
  color: var(--text-soft);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 55px;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading p {
  max-width: 720px;
  font-size: 1.08rem;
}

/* ===================== BUTTONS ===================== */

.btn,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 58px;
  padding: 0 28px;

  border-radius: 16px;
  border: 1px solid transparent;

  background:
    linear-gradient(
      135deg,
      var(--orange-light),
      var(--orange)
    );

  color: #151515;
  font-weight: 850;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.btn:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 40px rgba(255, 122, 54, 0.32),
    0 0 30px rgba(255, 122, 54, 0.20);
  filter: brightness(1.06);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange-light);
}

/* ===================== HEADER ===================== */

header {
  position: sticky;
  top: 0;
  z-index: 999;

  width: 100%;

  background: rgba(7, 21, 34, 0.84);
  backdrop-filter: blur(20px);

  border-bottom: 1px solid var(--border);
}

.navbar,
nav {
  width: min(92%, var(--container));
  min-height: 88px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.logo,
.logo img,
.nav-logo img {
  width: auto;
  max-height: 58px;
  object-fit: contain;
}

nav ul {
  list-style: none;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;

  flex: 1;
}

nav ul li a,
.nav-links a {
  position: relative;

  color: var(--text-soft);
  font-weight: 700;

  transition: color 0.25s ease;
}

nav ul li a::after,
.nav-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -9px;

  width: 0;
  height: 2px;

  background: var(--orange);

  transition: width 0.25s ease;
}

nav ul li a:hover,
.nav-links a:hover {
  color: var(--text);
}

nav ul li a:hover::after,
.nav-links a:hover::after {
  width: 100%;
}

/* ===================== HERO ===================== */

.hero {
  min-height: 88vh;

  display: flex;
  align-items: center;

  padding: 120px 0 100px;

  overflow: hidden;
}

.hero::after {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  right: -300px;
  top: 50%;

  transform: translateY(-50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255, 122, 54, 0.16),
      transparent 65%
    );

  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 1000px;
}

.hero h1 {
  max-width: 1050px;

  margin-bottom: 28px;

  background:
    linear-gradient(
      135deg,
      #ffffff 10%,
      #dbe7f2 55%,
      #9bb5ca
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.hero h1 span,
.hero .highlight {
  background:
    linear-gradient(
      135deg,
      var(--orange-light),
      var(--orange)
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.hero p {
  max-width: 820px;

  font-size: clamp(1.05rem, 1.5vw, 1.28rem);

  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 45px;
}

/* ===================== TRUST STRIP ===================== */

.hero-stats,
.trust-bar,
.quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-stats > *,
.trust-bar > *,
.quick-stats > * {
  padding: 12px 18px;

  border: 1px solid var(--border);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.025);

  color: var(--text);
  font-weight: 750;
}

.hero-stats strong,
.quick-stats strong {
  color: var(--orange-light);
}

/* ===================== PROOF CARDS ===================== */

.proof-grid,
.stats-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

  margin-top: 35px;
}

.proof-card,
.stat-card {
  position: relative;

  padding: 34px;

  border-radius: var(--radius);

  background:
    linear-gradient(
      145deg,
      rgba(23, 43, 59, 0.95),
      rgba(12, 29, 43, 0.95)
    );

  border: 1px solid var(--border);

  overflow: hidden;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.proof-card::before,
.stat-card::before {
  content: "";

  position: absolute;

  width: 140px;
  height: 140px;

  top: -80px;
  right: -70px;

  border-radius: 50%;

  background: rgba(255, 122, 54, 0.12);

  filter: blur(15px);
}

.proof-card:hover,
.stat-card:hover {
  transform: translateY(-8px);

  border-color: var(--border-strong);

  box-shadow:
    var(--shadow),
    var(--glow);
}

.proof-number,
.stat-number {
  display: block;

  font-size: clamp(2rem, 4vw, 4rem);

  font-weight: 900;

  color: var(--orange-light);

  margin-bottom: 8px;
}

.proof-card h3,
.stat-card h3 {
  margin-bottom: 10px;
}

/* ===================== ABOUT ===================== */

.about-content {
  max-width: 980px;
}

.about-content h2 {
  margin-bottom: 22px;
}

.about-content p {
  margin-bottom: 18px;
  font-size: 1.08rem;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;

  margin-top: 38px;
}

.about-list > div,
.about-item {
  padding: 26px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid var(--border);
  border-radius: var(--radius-small);

  transition: all 0.3s ease;
}

.about-list > div:hover,
.about-item:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--glow);
}

.about-list strong,
.about-item strong {
  display: block;
  color: var(--orange-light);
  margin-bottom: 10px;
}

/* ===================== SERVICES ===================== */

.services-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;
}

.service-card {
  position: relative;

  min-height: 340px;

  padding: 38px;

  display: flex;
  flex-direction: column;

  border-radius: var(--radius);

  background:
    linear-gradient(
      145deg,
      rgba(21, 42, 59, 0.98),
      rgba(10, 26, 39, 0.98)
    );

  border: 1px solid var(--border);

  overflow: hidden;

  transition:
    transform 0.4s cubic-bezier(.2,.8,.2,1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.service-card::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  top: -170px;
  right: -150px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255, 122, 54, 0.18),
      transparent 70%
    );

  transition: transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);

  border-color: rgba(255, 122, 54, 0.7);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.32),
    0 0 40px rgba(255, 122, 54, 0.10);
}

.service-card:hover::before {
  transform: scale(1.5);
}

.service-icon {
  position: relative;

  width: 64px;
  height: 64px;

  display: grid;
  place-items: center;

  margin-bottom: 30px;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 122, 54, 0.24),
      rgba(255, 122, 54, 0.05)
    );

  border: 1px solid rgba(255, 122, 54, 0.25);

  color: var(--orange-light);

  font-size: 1.6rem;

  transition: transform 0.35s ease;
}

.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.08);
}

.service-card h3 {
  position: relative;
  margin-bottom: 16px;
}

.service-card p {
  position: relative;
  max-width: 620px;
}

.service-card a {
  position: relative;

  display: inline-flex;

  margin-top: auto;
  padding-top: 30px;

  color: var(--orange-light);

  font-weight: 850;

  transition: gap 0.3s ease;
}

.service-card a:hover {
  color: #fff;
}

/* ===================== PARTNERS ===================== */

.partners-section {
  padding-top: 70px;
}

.partners-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 18px;
}

.partner-card {
  min-height: 180px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 28px;

  border-radius: var(--radius-small);

  background:
    linear-gradient(
      145deg,
      rgba(22, 43, 59, 0.95),
      rgba(12, 28, 41, 0.95)
    );

  border: 1px solid var(--border);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.partner-card:hover {
  transform: translateY(-7px) scale(1.02);

  border-color: var(--orange);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.25),
    var(--glow);
}

.partner-card img {
  width: 100%;
  max-width: 180px;
  max-height: 95px;

  object-fit: contain;

  filter: grayscale(1) brightness(1.8);

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.partner-card:hover img {
  transform: scale(1.08);
  filter: grayscale(0) brightness(1);
}

/* Prevent duplicate alt/text appearance */

.partner-card img:not([src]),
.partner-card img[src=""] {
  display: none;
}

/* ===================== CLIENTS ===================== */

.clients-grid,
.client-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.client-card,
.client-logo {
  min-height: 180px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  border-radius: 20px;

  background:
    rgba(255, 255, 255, 0.025);

  border: 1px solid var(--border);

  overflow: hidden;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.client-card:hover,
.client-logo:hover {
  transform: translateY(-8px);

  border-color: var(--orange);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    var(--glow);
}

.client-card img,
.client-logo img {
  max-width: 180px;
  max-height: 90px;

  object-fit: contain;

  transition: transform 0.35s ease;
}

.client-card:hover img,
.client-logo:hover img {
  transform: scale(1.08);
}

/* ===================== COMPARISON ===================== */

.comparison {
  overflow: hidden;
}

.comparison-table {
  width: 100%;

  border-collapse: separate;
  border-spacing: 0 12px;
}

.comparison-table th,
.comparison-table td {
  padding: 22px;

  text-align: left;
}

.comparison-table th {
  color: var(--text-soft);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comparison-table tbody tr {
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.25s ease;
}

.comparison-table tbody tr:hover {
  transform: scale(1.01);
}

.comparison-table td:first-child {
  border-radius: 16px 0 0 16px;
  font-weight: 750;
}

.comparison-table td:last-child {
  border-radius: 0 16px 16px 0;
}

.comparison-table .infiniboost,
.comparison-table td:last-child {
  color: var(--orange-light);
  font-weight: 800;
}

/* ===================== GOOGLE REVIEWS ===================== */

.reviews-grid,
.review-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}

.review-card {
  position: relative;

  min-height: 360px;

  padding: 32px;

  border-radius: var(--radius);

  background:
    linear-gradient(
      145deg,
      rgba(21, 42, 59, 0.95),
      rgba(10, 25, 37, 0.98)
    );

  border: 1px solid var(--border);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-8px);

  border-color: rgba(255, 122, 54, 0.6);

  box-shadow:
    var(--shadow),
    var(--glow);
}

.review-card::before {
  content: "★★★★★";

  display: block;

  color: var(--orange-light);

  letter-spacing: 4px;

  margin-bottom: 24px;

  font-size: 1.05rem;
}

.review-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.review-card .review-meta {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.review-card p {
  font-size: 1.05rem;
}

.review-link {
  display: inline-flex;

  margin-top: 28px;

  color: var(--orange-light);

  font-weight: 800;
}

/* ===================== CONTACT ===================== */

.contact-grid,
.contact-wrapper {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 35px;

  align-items: stretch;
}

.contact-info {
  padding: 45px;

  border-radius: var(--radius);

  background:
    linear-gradient(
      145deg,
      rgba(18, 38, 53, 0.98),
      rgba(9, 24, 36, 0.98)
    );

  border: 1px solid var(--border);
}

.contact-info h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 24px;
}

.contact-details {
  display: grid;
  gap: 14px;

  margin: 28px 0;
}

.contact-details a,
.contact-details div {
  color: var(--text-soft);
}

.contact-details strong {
  color: var(--text);
}

.contact-form {
  padding: 45px;

  border-radius: var(--radius);

  background:
    linear-gradient(
      145deg,
      rgba(22, 43, 60, 0.98),
      rgba(12, 28, 41, 0.98)
    );

  border: 1px solid var(--border);

  box-shadow: var(--shadow);
}

.contact-form h2,
.contact-form h3 {
  margin-bottom: 12px;
}

.contact-form > p {
  margin-bottom: 28px;
}

/* ===================== FORM ===================== */

form {
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

label {
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;

  padding: 16px 18px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.055);

  border: 1px solid var(--border);

  color: var(--text);

  outline: none;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

input::placeholder,
textarea::placeholder {
  color: #7f91a0;
}

select option {
  background: #102131;
  color: #fff;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--orange);

  background: rgba(255, 255, 255, 0.075);

  box-shadow:
    0 0 0 4px rgba(255, 122, 54, 0.08);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

/* ===================== MAP ===================== */

.map-section,
.map-wrapper {
  margin-top: 35px;

  border-radius: var(--radius);

  overflow: hidden;

  border: 1px solid var(--border);

  box-shadow: var(--shadow);
}

.map-section iframe,
.map-wrapper iframe,
iframe[src*="google.com/maps"] {
  width: 100%;
  min-height: 500px;

  display: block;

  border: 0;
}

/* ===================== FINAL CTA ===================== */

.final-cta {
  padding: 110px 0;
}

.final-cta .container,
.cta-content {
  position: relative;

  padding: 65px;

  border-radius: 32px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(255, 122, 54, 0.15),
      rgba(17, 36, 51, 0.95)
    );

  border: 1px solid rgba(255, 122, 54, 0.22);
}

.final-cta .container::after,
.cta-content::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -250px;
  top: -250px;

  border-radius: 50%;

  background: rgba(255, 122, 54, 0.18);

  filter: blur(80px);
}

.final-cta h2,
.cta-content h2 {
  position: relative;
  z-index: 2;

  max-width: 800px;

  margin-bottom: 18px;
}

.final-cta p,
.cta-content p {
  position: relative;
  z-index: 2;

  max-width: 700px;

  margin-bottom: 30px;

  font-size: 1.08rem;
}

.final-cta .btn,
.cta-content .btn {
  position: relative;
  z-index: 2;
}

/* ===================== FOOTER ===================== */

footer {
  padding: 60px 0 30px;

  border-top: 1px solid var(--border);

  background: #06111b;
}

.footer-grid {
  display: grid;

  grid-template-columns: 1.5fr 1fr 1fr 1fr;

  gap: 35px;
}

footer h3,
footer h4 {
  margin-bottom: 18px;
}

footer ul {
  list-style: none;

  display: grid;
  gap: 10px;
}

footer a {
  color: var(--text-soft);
  transition: color 0.25s ease;
}

footer a:hover {
  color: var(--orange-light);
}

.footer-bottom {
  margin-top: 45px;
  padding-top: 22px;

  border-top: 1px solid var(--border);

  color: #71808d;
  font-size: 0.9rem;
}

/* ===================== ANIMATIONS ===================== */

@keyframes floatGlow {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.service-card,
.proof-card,
.partner-card,
.client-card,
.review-card {
  will-change: transform;
}

/* ===================== SCROLLBAR ===================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #071522;
}

::-webkit-scrollbar-thumb {
  background:
    linear-gradient(
      var(--orange),
      var(--orange-dark)
    );

  border-radius: 10px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

  section {
    padding: 80px 0;
  }

  .proof-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .clients-grid,
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .about-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  body {
    font-size: 15px;
  }

  section {
    padding: 65px 0;
  }

  .navbar,
  nav {
    min-height: 75px;
    gap: 15px;
  }

  .logo img,
  .nav-logo img {
    max-height: 46px;
  }

  nav ul,
  .nav-links {
    display: none;
  }

  .navbar > .btn,
  nav > .btn {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding: 90px 0 70px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats,
  .trust-bar,
  .quick-stats {
    flex-direction: column;
  }

  .hero-stats > *,
  .trust-bar > *,
  .quick-stats > * {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 300px;
    padding: 28px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-card {
    min-height: 130px;
    padding: 20px;
  }

  .clients-grid,
  .client-grid {
    grid-template-columns: 1fr 1fr;
  }

  .client-card,
  .client-logo {
    min-height: 130px;
    padding: 18px;
  }

  .contact-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 28px;
  }

  .comparison-table {
    min-width: 700px;
  }

  .comparison {
    overflow-x: auto;
  }

  .map-section iframe,
  .map-wrapper iframe,
  iframe[src*="google.com/maps"] {
    min-height: 350px;
  }

  .final-cta .container,
  .cta-content {
    padding: 38px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .container {
    width: min(92%, 100%);
  }

  .navbar > .btn,
  nav > .btn {
    display: none;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .partners-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .clients-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .proof-card,
  .stat-card {
    padding: 26px;
  }

  .service-card {
    padding: 25px;
  }

  .btn {
    width: 100%;
  }
}
/* =========================================================
   FINAL LAYOUT FIX - INFINI BOOST
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* =========================================================
   HEADER
========================================================= */

.site-header,
header {
    position: relative;
    width: 100%;
    min-height: auto !important;
    padding: 22px 0 !important;
}

.nav-container,
.header-container,
nav {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 30px;
}

/* LOGO */

.logo,
.brand,
.nav-logo {
    flex-shrink: 0;
}

.logo img,
.brand img,
.nav-logo img {
    display: block;
    width: 170px !important;
    max-width: 170px !important;
    height: auto !important;
}

/* NAVIGATION */

.nav-links,
nav ul {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 32px !important;

    list-style: none;
    padding: 0 !important;
    margin: 0 !important;

    flex: 1;
}

.nav-links li,
nav ul li {
    margin: 0 !important;
    padding: 0 !important;
}

.nav-links a,
nav ul li a {
    text-decoration: none;
    white-space: nowrap;
}

/* HEADER CTA */

.header-cta,
.nav-cta {
    flex-shrink: 0;
}

.header-cta .btn,
.nav-cta .btn,
.nav-container > a.btn {
    white-space: nowrap;
}


/* =========================================================
   HERO FIX
========================================================= */

.hero {
    min-height: auto !important;
    padding: 100px 0 90px !important;
}

.hero-content {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.hero h1 {
    margin-top: 0 !important;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container,
.section-container {
    width: min(1280px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   SECTION SPACING
========================================================= */

section {
    position: relative;
}

.about-section,
.services-section,
.partners-section,
.work-section,
.why-us-section,
.reviews-section,
.contact-section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}


/* =========================================================
   PARTNERS SECTION
========================================================= */

.partners-grid {
    display: grid !important;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 20px !important;
    margin-top: 40px;
}

.partner-card {
    min-height: 180px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 30px !important;

    border-radius: 20px;
}

.partner-card img {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: contain;
}


/* =========================================================
   SERVICE CARDS
========================================================= */

.services-grid {
    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px !important;
}

.service-card {
    width: 100%;
    min-height: 320px;
}


/* =========================================================
   CLIENT LOGOS
========================================================= */

.clients-grid {
    display: grid !important;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 18px;
}

.client-card {
    min-height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-grid {
    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px !important;
}

.review-card {
    height: 100%;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid !important;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: start;
}

.map-wrapper,
.contact-map {
    width: 100%;
    margin-top: 40px;
}

.map-wrapper iframe,
.contact-map iframe {
    width: 100% !important;
    min-height: 450px;
    border: 0;
    border-radius: 20px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .nav-container,
    .header-container,
    nav {
        width: min(100% - 32px, 1280px);
    }

    .nav-links,
    nav ul {
        gap: 18px !important;
    }

    .logo img,
    .brand img,
    .nav-logo img {
        width: 130px !important;
        max-width: 130px !important;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .site-header,
    header {
        padding: 18px 0 !important;
    }

    .nav-container,
    .header-container,
    nav {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .nav-links,
    nav ul {
        order: 3;

        width: 100%;

        flex-wrap: wrap !important;

        justify-content: center !important;

        gap: 16px !important;
    }

    .header-cta,
    .nav-cta {
        display: none;
    }

    .hero {
        padding: 80px 0 70px !important;
    }

    .container,
    .section-container {
        width: min(100% - 32px, 1280px);
    }

    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 480px) {

    .logo img,
    .brand img,
    .nav-logo img {
        width: 115px !important;
    }

    .partners-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .partner-card {
        min-height: 150px !important;
    }

}

/* =========================================================
   INFINI BOOST — FINAL HEADER FIX
   ADD THIS AT THE VERY END OF styles.css
========================================================= */

.top-nav {
  position: relative !important;
  top: 0 !important;
  z-index: 9999 !important;

  width: 100% !important;
  padding: 0 !important;

  background: rgba(7, 21, 34, 0.88) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.top-nav .nav-inner {
  width: min(1280px, calc(100% - 48px)) !important;
min-height: 72px !important;
  margin: 0 auto !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  gap: 32px !important;
}

/* LOGO */

.top-nav .brand {
  display: flex !important;
  align-items: center !important;

  flex: 0 0 auto !important;
  text-decoration: none !important;
}

.top-nav .brand img {
  display: block !important;

width: 145px !important;
max-width: 145px !important;
  height: auto !important;

  object-fit: contain !important;
}

/* NAVIGATION */

.top-nav .nav-links {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  flex: 1 !important;

  gap: 30px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.top-nav .nav-links a {
  position: relative !important;

  display: inline-flex !important;
  align-items: center !important;

  padding: 8px 0 !important;

  color: rgba(255, 255, 255, 0.78) !important;
  text-decoration: none !important;

  font-size: 0.94rem !important;
  font-weight: 700 !important;

  white-space: nowrap !important;

  transition:
    color 0.25s ease,
    transform 0.25s ease !important;
}

.top-nav .nav-links a::after {
  content: "" !important;

  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;

  width: 0 !important;
  height: 2px !important;

  background: var(--orange) !important;

  transition: width 0.25s ease !important;
}

.top-nav .nav-links a:hover {
  color: #ffffff !important;
}

.top-nav .nav-links a:hover::after {
  width: 100% !important;
}

/* CTA BUTTON */

.top-nav .quote-btn {
  flex: 0 0 auto !important;

  min-height: 48px !important;

  padding: 0 22px !important;

  border-radius: 14px !important;

  white-space: nowrap !important;

  font-size: 0.88rem !important;
  font-weight: 800 !important;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .top-nav .nav-inner {
    width: min(100% - 32px, 1280px) !important;
    gap: 20px !important;
  }

  .top-nav .brand img {
    width: 150px !important;
    max-width: 150px !important;
  }

  .top-nav .nav-links {
    gap: 20px !important;
  }

  .top-nav .nav-links a {
    font-size: 0.88rem !important;
  }

  .top-nav .quote-btn {
    padding: 0 18px !important;
    font-size: 0.82rem !important;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

  .top-nav {
    position: relative !important;
  }

  .top-nav .nav-inner {
    width: min(100% - 32px, 1280px) !important;
    min-height: auto !important;

    padding: 16px 0 !important;

    flex-wrap: wrap !important;

    gap: 14px !important;
  }

  .top-nav .brand img {
    width: 145px !important;
    max-width: 145px !important;
  }

  .top-nav .quote-btn {
    min-height: 44px !important;

    padding: 0 16px !important;

    font-size: 0.78rem !important;
  }

  .top-nav .nav-links {
    order: 3 !important;

    width: 100% !important;

    display: flex !important;
    justify-content: center !important;

    flex-wrap: wrap !important;

    gap: 10px 18px !important;

    padding-top: 8px !important;
  }

  .top-nav .nav-links a {
    padding: 6px 0 !important;

    font-size: 0.82rem !important;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .top-nav .nav-inner {
    width: calc(100% - 24px) !important;
  }

  .top-nav .brand img {
    width: 125px !important;
    max-width: 125px !important;
  }

  .top-nav .quote-btn {
    min-height: 42px !important;

    padding: 0 13px !important;

    font-size: 0.72rem !important;
  }

  .top-nav .nav-links {
    gap: 8px 14px !important;
  }

  .top-nav .nav-links a {
    font-size: 0.76rem !important;
  }
}
/* =========================================================
   HEADER FINAL
========================================================= */

.top-nav {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  z-index: 10 !important;
}

.top-nav .nav-inner {
  min-height: 80px !important;
  padding: 0 28px !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
}

.top-nav .brand {
  justify-self: start !important;
}

.top-nav .brand img {
  width: 125px !important;
  max-width: 125px !important;
  height: auto !important;
  display: block !important;
}

.top-nav .nav-links {
  justify-self: center !important;
  display: flex !important;
  align-items: center !important;
  gap: 30px !important;
}

.top-nav .nav-links a {
  font-size: 0.82rem !important;
  white-space: nowrap !important;
}

.top-nav .quote-btn {
  justify-self: end !important;
  min-width: 180px !important;
  padding: 15px 24px !important;
  font-size: 0.85rem !important;
}
/* =========================================================
   HERO – PREMIUM SMALLER TYPOGRAPHY
========================================================= */

.hero {
  min-height: auto !important;
  padding: 95px 0 80px !important;
}

.hero-content {
  max-width: 950px !important;
}

.hero .eyebrow {
  font-size: 0.82rem !important;
  margin-bottom: 18px !important;
}

.hero h1 {
  font-size: clamp(3.2rem, 5.2vw, 5.8rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.055em !important;
  max-width: 1000px !important;
  margin-bottom: 28px !important;
}

.hero .hero-text,
.hero p {
  font-size: 1rem !important;
  line-height: 1.7 !important;
  max-width: 680px !important;
}

.hero-actions {
  margin-top: 30px !important;
  gap: 14px !important;
}

.hero-actions .btn {
  padding: 15px 24px !important;
  font-size: 0.85rem !important;
}
/* =========================================
   HERO - CLEAN & BALANCED VERSION
========================================= */

.hero-content {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 85px 40px 95px !important;
}

.hero-copy {
  max-width: 900px !important;
}

.hero-eyebrow {
  font-size: 0.9rem !important;
  margin-bottom: 18px !important;
}

.hero h1 {
  max-width: 850px !important;
  font-size: clamp(3.2rem, 5vw, 5.4rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
  margin: 0 0 26px !important;
}

.hero-text {
  max-width: 620px !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
  margin: 0 0 28px !important;
}

.hero-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 22px !important;
}

.hero-actions .btn {
  min-height: 52px !important;
  padding: 0 24px !important;
  font-size: 0.88rem !important;
}

.hero-trust {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px 22px !important;
  margin-top: 0 !important;
}

.hero-trust > * {
  margin: 0 !important;
  font-size: 0.9rem !important;
}


/* MOBILE */

@media (max-width: 768px) {

  .hero-content {
    padding: 65px 22px 75px !important;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 4.5rem) !important;
    line-height: 1.05 !important;
  }

  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero-actions .btn {
    width: 100% !important;
  }

  .hero-trust {
    gap: 8px 14px !important;
  }
}