:root {
  --navy: #1f3b9a;
  --navy-deep: #162d7a;
  --navy-dark: #0e1e52;
  --navy-mid: #253faa;
  --sky: #1ea9e1;
  --sky-light: #4dbdea;
  --sky-pale: #d6f0fa;
  --sky-wash: #eaf7fd;
  --white: #ffffff;
  --off-white: #f7fbfe;
  --text-dim: rgba(255, 255, 255, 0.68);
  --grad-navy: linear-gradient(160deg, #0e1e52 0%, #1f3b9a 55%, #253faa 100%);
  --grad-sky: linear-gradient(135deg, #1ea9e1, #4dbdea, #1ea9e1);
  --grad-hero: linear-gradient(160deg, #0a1535 0%, #1f3b9a 60%, #1a3590 100%);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--navy);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 1000;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--navy-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--sky);
  border-radius: 3px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 5vw;
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.4s,
    backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(14, 30, 82, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 169, 225, 0.2);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
}
.nav-logo-icon svg {
  width: 100%;
  height: 100%;
}
.nav-logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1;
}
.nav-logo-text span {
  color: var(--sky);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--sky-light);
}
.nav-cta {
  background: var(--sky) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 3px;
  font-weight: 500 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.14em !important;
  box-shadow: 0 4px 18px rgba(30, 169, 225, 0.35);
  transition:
    opacity 0.2s,
    transform 0.2s !important;
}
.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 5vw 80px;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url("./images/pexels-binyaminmellish-186077.jpg");
  background-size: cover;
  background-position: center 60%;
  z-index: 0;
}
/* dark overlay — left heavy for text legibility, right reveals photo */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 21, 53, 0.96) 0%,
    rgba(14, 30, 82, 0.88) 40%,
    rgba(14, 30, 82, 0.55) 65%,
    rgba(14, 30, 82, 0.25) 100%
  );
  z-index: 1;
}
/* subtle diagonal blue accent line */
.hero-accent-line {
  position: absolute;
  top: 0;
  right: 30%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(30, 169, 225, 0.2),
    transparent
  );
  z-index: 2;
  transform: skewX(-8deg);
}
.hero-watermark {
  position: absolute;
  bottom: -6%;
  right: -2%;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(8rem, 18vw, 20rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(30, 169, 225, 0.07);
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
  user-select: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--sky);
}
.eyebrow-text {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky-light);
  font-weight: 500;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
  color: #fff;
}
.hero-title .accent {
  color: var(--sky);
  font-style: italic;
}
.hero-title .sky-word {
  background: var(--grad-sky);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sky);
  color: #fff;
  text-decoration: none;
  padding: 16px 36px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.2s;
  box-shadow: 0 8px 32px rgba(30, 169, 225, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(30, 169, 225, 0.55);
  background: var(--sky-light);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid rgba(30, 169, 225, 0.4);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.btn-ghost:hover {
  color: var(--sky-light);
  border-color: var(--sky-light);
}
.hero-stats {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeLeft 1s 0.8s forwards;
}
.stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(30, 169, 225, 0.25);
  border-left: 3px solid var(--sky);
  padding: 1.4rem 1.8rem;
  min-width: 195px;
  backdrop-filter: blur(14px);
  transition: background 0.2s;
}
.stat-card:hover {
  background: rgba(30, 169, 225, 0.12);
}
.stat-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--sky);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(30, 169, 225, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
  animation: pulse 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(30, 169, 225, 0.7), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ─── TRUST BAR ─── */
#trust-bar {
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(30, 169, 225, 0.18);
  border-bottom: 1px solid rgba(30, 169, 225, 0.18);
  padding: 1.4rem 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  opacity: 0.78;
  transition: opacity 0.2s;
}
.trust-item:hover {
  opacity: 1;
}
.trust-icon {
  width: 22px;
  height: 22px;
  color: var(--sky);
  flex-shrink: 0;
}
.trust-text {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}
.trust-div {
  width: 1px;
  height: 22px;
  background: rgba(30, 169, 225, 0.2);
}

/* ─── SHARED SECTION ATOMS ─── */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.section-eyebrow span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 500;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}
.section-title .accent {
  font-style: italic;
  color: var(--sky);
}
.section-title-dark {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}
.section-title-dark .accent {
  font-style: italic;
  color: var(--sky);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s,
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.22s;
}
.reveal-delay-3 {
  transition-delay: 0.32s;
}
.reveal-delay-4 {
  transition-delay: 0.42s;
}

/* ─── PRODUCTS — WHITE ─── */
#services {
  padding: 7rem 5vw;
  background: #fff;
  position: relative;
  overflow: hidden;
}
#services::before {
  content: "02";
  position: absolute;
  top: 3rem;
  right: -2rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 14rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(31, 59, 154, 0.05);
  pointer-events: none;
}
#services .section-eyebrow span {
  color: var(--sky);
}
.section-desc-dark {
  max-width: 380px;
  color: rgba(31, 59, 154, 0.6);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* Product cards — image-led */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  background: #fff;
  border: 1px solid rgba(31, 59, 154, 0.08);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(31, 59, 154, 0.14);
}
.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s;
}
.product-card:hover .product-card-img {
  transform: scale(1.05);
}
.product-card-img-wrap {
  overflow: hidden;
  position: relative;
}
.product-card-img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(31, 59, 154, 0.08));
}
.product-card-body {
  padding: 1.6rem 1.5rem 1.8rem;
}
.product-card-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(30, 169, 225, 0.5);
  margin-bottom: 0.6rem;
}
.product-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}
.product-desc {
  font-size: 0.83rem;
  color: rgba(31, 59, 154, 0.58);
  line-height: 1.72;
  margin-bottom: 1.2rem;
}
.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 500;
}
.product-tag::before {
  content: "→";
}
.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sky);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 500;
}

/* ─── WHY — sky tint ─── */
#why {
  padding: 7rem 5vw;
  background: linear-gradient(180deg, var(--sky-wash) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-visual {
  position: relative;
}
.why-main-box {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.why-main-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  opacity: 0.55;
}
.why-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 30, 82, 0.95) 30%,
    rgba(14, 30, 82, 0.4) 70%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}
.why-big-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.85;
  color: var(--sky);
  margin-bottom: 0.3rem;
}
.why-big-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.why-main-subtext {
  margin-top: 1.2rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(30, 169, 225, 0.2);
}
.why-float-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--sky);
  padding: 1.5rem 1.8rem;
  width: 200px;
  border-radius: 3px;
  box-shadow: 0 12px 40px rgba(30, 169, 225, 0.35);
}
.why-float-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.4rem;
}
.why-float-val {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.why-feature {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.2rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(31, 59, 154, 0.1);
}
.why-feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.why-feature-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: var(--sky);
  opacity: 0.7;
  line-height: 1;
  padding-top: 2px;
}
.why-feature-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.why-feature-desc {
  font-size: 0.87rem;
  color: rgba(31, 59, 154, 0.58);
  line-height: 1.75;
}

/* ─── PROCESS — dark navy ─── */
#process {
  padding: 7rem 5vw;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
#process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 100%,
    rgba(30, 169, 225, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 4.5rem;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(
    to right,
    var(--sky),
    rgba(30, 169, 225, 0.2),
    var(--sky)
  );
}
.process-step {
  padding: 0 1.8rem;
  text-align: center;
  position: relative;
}
.step-node {
  width: 44px;
  height: 44px;
  border: 2px solid var(--sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  background: var(--navy-dark);
  position: relative;
  z-index: 1;
  transition: background 0.3s;
}
.process-step:hover .step-node {
  background: var(--sky);
}
.step-node span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  color: var(--sky);
  line-height: 1;
  transition: color 0.3s;
}
.process-step:hover .step-node span {
  color: #fff;
}
.step-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.7rem;
}
.step-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ─── TESTIMONIALS — white ─── */
#testimonials {
  padding: 7rem 5vw;
  background: #fff;
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 3vw;
  font-family: "Playfair Display", serif;
  font-size: 26rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(30, 169, 225, 0.07);
  line-height: 1;
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 3.5rem;
}
.testimonial-card {
  padding: 2.2rem 2rem;
  border: 1px solid rgba(31, 59, 154, 0.07);
  border-radius: 4px;
  background: var(--off-white);
  transition:
    background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.testimonial-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(31, 59, 154, 0.1);
}
.testimonial-card.featured {
  background: var(--navy);
  border-top: 3px solid var(--sky);
}
.testimonial-card.featured:hover {
  background: var(--navy-mid);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(31, 59, 154, 0.3);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.1rem;
  color: var(--sky);
  font-size: 0.88rem;
}
.testimonial-text {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.testimonial-card:not(.featured) .testimonial-text {
  color: var(--navy);
}
.testimonial-card.featured .testimonial-text {
  color: rgba(255, 255, 255, 0.88);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card:not(.featured) .author-avatar {
  background: var(--navy);
}
.author-name {
  font-size: 0.84rem;
  font-weight: 500;
}
.testimonial-card:not(.featured) .author-name {
  color: var(--navy);
}
.testimonial-card.featured .author-name {
  color: #fff;
}
.author-location {
  font-size: 0.73rem;
  letter-spacing: 0.06em;
}
.testimonial-card:not(.featured) .author-location {
  color: rgba(31, 59, 154, 0.5);
}
.testimonial-card.featured .author-location {
  color: rgba(255, 255, 255, 0.5);
}

/* ─── FINANCING — sky tint ─── */
#financing {
  padding: 7rem 5vw;
  background: linear-gradient(135deg, var(--sky-wash) 0%, var(--sky-pale) 100%);
}
.financing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  border: 1.5px solid rgba(30, 169, 225, 0.28);
  padding: 3.5rem;
  background: #fff;
  box-shadow: 0 20px 60px rgba(31, 59, 154, 0.08);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.financing-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 169, 225, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.financing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 169, 225, 0.1);
  border: 1px solid rgba(30, 169, 225, 0.3);
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.6rem;
}
.section-title-mid {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}
.section-title-mid .accent {
  font-style: italic;
  color: var(--sky);
}
.plan-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--off-white);
  border: 1px solid rgba(31, 59, 154, 0.07);
  margin-bottom: 0.7rem;
  border-radius: 3px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.plan-item:hover {
  border-color: rgba(30, 169, 225, 0.4);
  background: var(--sky-wash);
}
.plan-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}
.plan-label {
  font-size: 0.87rem;
  color: var(--navy);
  flex: 1;
}
.plan-highlight {
  font-size: 0.73rem;
  color: var(--sky);
  font-weight: 500;
}

/* ─── FAQ — white ─── */
#faq {
  padding: 7rem 5vw;
  background: #fff;
}
.faq-inner {
  max-width: 840px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 3.5rem;
}
.faq-item {
  border-bottom: 1px solid rgba(31, 59, 154, 0.1);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--navy);
  text-align: left;
  padding: 1.6rem 0;
  font-size: 1rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--sky);
}
.faq-icon {
  width: 26px;
  height: 26px;
  border: 1.5px solid rgba(30, 169, 225, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    border-color 0.2s;
  font-size: 1rem;
  color: var(--sky);
}
.faq-item.open .faq-icon {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 0 1.6rem;
  font-size: 0.91rem;
  color: rgba(31, 59, 154, 0.62);
  line-height: 1.85;
}

/* ─── CTA BANNER ─── */
#cta {
  padding: 8rem 5vw;
  background: var(--grad-navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  background-image: url("./images/pexels-curtis-adams-1694007-7601185.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
#cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(30, 169, 225, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-geometric {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(30, 169, 225, 0.07);
  border-radius: 50%;
  pointer-events: none;
}
.cta-geometric-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  border: 1px solid rgba(30, 169, 225, 0.1);
  border-radius: 50%;
  pointer-events: none;
}
.cta-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
}
.cta-title .accent {
  color: var(--sky);
  font-style: italic;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.68);
  margin: 1rem auto 3rem;
  max-width: 480px;
  line-height: 1.75;
  position: relative;
  z-index: 2;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 1.3rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.cta-phone:hover {
  color: var(--sky-light);
}
.cta-phone svg {
  color: var(--sky);
}
.cta-checks {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(30, 169, 225, 0.15);
  padding: 4rem 5vw 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand-tag {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.footer-logo-main {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  line-height: 1;
}

.footer-logo-main img{
    width: 100px;
}

.footer-logo-main span {
  color: var(--sky);
}
.footer-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.8rem;
}
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.6rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-line:hover {
  color: var(--sky-light);
}
.footer-contact-line svg {
  color: var(--sky);
  flex-shrink: 0;
}
.footer-col-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--sky-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.28);
}
.footer-warranty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 169, 225, 0.1);
  border: 1px solid rgba(30, 169, 225, 0.22);
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-light);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translate(28px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  #hero {
    grid-template-columns: 1fr;
    padding-right: 5vw;
  }
  .hero-stats {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 3rem;
    animation: fadeUp 0.9s 0.8s forwards;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-float-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps::before {
    display: none;
  }
  .financing-inner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats {
    gap: 1rem;
  }
  .stat-card {
    min-width: 140px;
  }
}
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.8rem;
  }
}

.nav-logo-icon img{
height: 75px;
width: auto;
padding-bottom: 15px;
}