:root {
  --navy: #06394a;
  --navy-dark: #032b38;
  --red: #ef3e3a;
  --red-dark: #cf302d;
  --cream: #fff9f2;
  --white: #ffffff;
  --ink: #0c2933;
  --muted: #6e7d82;
  --line: rgba(6, 57, 74, .12);
  --shadow: 0 24px 70px rgba(3, 43, 56, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 249, 242, .82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 57, 74, .08);
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand img { width: 76px; height: 76px; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { font-size: 14px; font-weight: 700; transition: color .25s; }
.nav-links a:hover { color: var(--red); }
.nav-cta {
  padding: 12px 19px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.menu-toggle { display: none; border: 0; background: none; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: var(--navy); margin: 5px; }

.hero {
  min-height: 770px;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 78% 30%, rgba(239,62,58,.16), transparent 25%),
    linear-gradient(120deg, #fff9f2 0%, #f5eee7 100%);
  position: relative;
}
.hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 55px;
  align-items: center;
}
.eyebrow {
  color: var(--red);
  font-size: 11px;
  letter-spacing: 2.4px;
  font-weight: 800;
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 20px;
}
.eyebrow span { width: 28px; height: 2px; background: var(--red); display: inline-block; }
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; }
h1 {
  font-size: clamp(52px, 6.4vw, 86px);
  line-height: .95;
  letter-spacing: -4px;
  max-width: 730px;
  margin: 0 0 28px;
}
h1 em, h2 em { color: var(--red); font-style: normal; }
.hero-text {
  max-width: 600px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 30px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 15px 22px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 13px;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: #fff; background: var(--red); box-shadow: 0 13px 30px rgba(239,62,58,.22); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.4); }
.hero-note {
  margin-top: 25px;
  color: #819096;
  font-size: 11px;
  letter-spacing: .7px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.pulse { width: 8px; height: 8px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 6px rgba(239,62,58,.1); }

.hero-visual { min-height: 490px; position: relative; display: grid; place-items: center; }
.growth-card {
  position: relative;
  width: min(410px, 86%);
  height: 320px;
  padding: 25px;
  border-radius: 22px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 35px 90px rgba(6,57,74,.28);
  transform: rotate(3deg);
  z-index: 2;
}
.growth-top, .growth-bottom { display: flex; justify-content: space-between; align-items: center; }
.growth-top { color: rgba(255,255,255,.62); font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; }
.live-dot { color: #ff7773; }
.bars { height: 185px; display: flex; align-items: end; justify-content: center; gap: 15px; padding: 20px 10px; }
.bar { width: 42px; border-radius: 20px 20px 7px 7px; background: var(--red); box-shadow: inset 0 1px 0 rgba(255,255,255,.15); }
.b1 { height: 53px; opacity: .55; }
.b2 { height: 90px; opacity: .68; }
.b3 { height: 125px; opacity: .8; }
.b4 { height: 160px; opacity: .9; }
.b5 { height: 185px; }
.growth-bottom { border-top: 1px solid rgba(255,255,255,.13); padding-top: 15px; }
.growth-bottom strong { font-family: "Space Grotesk"; font-size: 16px; }
.growth-bottom span { font-size: 20px; color: var(--red); }
.orbit { position: absolute; border: 1px solid rgba(6,57,74,.13); border-radius: 50%; }
.orbit-one { width: 530px; height: 530px; }
.orbit-two { width: 390px; height: 390px; border-color: rgba(239,62,58,.16); transform: rotate(40deg) skewX(-20deg); }
.floating-chip {
  position: absolute;
  background: #fff;
  padding: 11px 15px;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(6,57,74,.12);
  font-size: 11px;
  font-weight: 800;
  z-index: 4;
}
.chip-one { top: 70px; right: 10px; transform: rotate(-4deg); }
.chip-two { left: 10px; bottom: 75px; transform: rotate(5deg); }
.chip-three { right: 40px; bottom: 35px; background: var(--red); color: #fff; transform: rotate(-4deg); }

.scroll-line { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); width: 1px; height: 55px; background: rgba(6,57,74,.18); }
.scroll-line span { position: absolute; width: 5px; height: 5px; background: var(--red); border-radius: 50%; left: -2px; top: 0; animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(48px); opacity: 0; } }

.marquee-section { overflow: hidden; background: var(--red); color: #fff; }
.marquee {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 17px 0;
  font-family: "Space Grotesk";
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  animation: marquee 25s linear infinite;
}
.marquee i { font-style: normal; font-size: 10px; opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1fr .65fr; gap: 80px; align-items: end; margin-bottom: 55px; }
.section-heading h2, .about-copy h2, .cta-content h2 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -3px;
  margin: 0;
}
.section-heading > p { color: var(--muted); line-height: 1.8; margin: 0; font-size: 15px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.service-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.45);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(239,62,58,.22); }
.service-card.featured { background: var(--navy); color: #fff; }
.service-icon {
  width: 47px; height: 47px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(239,62,58,.12); color: var(--red);
  font-size: 23px; font-weight: 800;
}
.service-card small { display: block; margin-top: 24px; opacity: .5; font-size: 10px; letter-spacing: 1px; }
.service-card h3 { font-size: 21px; margin: 8px 0 10px; letter-spacing: -.6px; }
.service-card p { color: var(--muted); font-size: 13px; line-height: 1.65; margin: 0; }
.featured p { color: rgba(255,255,255,.65); }
.card-arrow { position: absolute; top: 27px; right: 28px; color: var(--red); }

.about-section { background: var(--navy); color: #fff; padding: 120px 0; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.about-visual { min-height: 500px; position: relative; display: grid; place-items: center; }
.about-logo-wrap {
  width: 320px; height: 320px; border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
  box-shadow: 0 30px 90px rgba(0,0,0,.24);
  border: 12px solid rgba(255,255,255,.06);
}
.about-logo-wrap img { width: 235px; height: 235px; object-fit: contain; border-radius: 50%; }
.mini-stat {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(12px);
  padding: 10px 14px;
  border-radius: 9px;
}
.mini-stat strong { color: var(--red); font-family: "Space Grotesk"; }
.mini-stat span { font-size: 10px; line-height: 1.2; color: rgba(255,255,255,.7); }
.stat-a { top: 42px; left: 0; transform: rotate(-5deg); }
.stat-b { right: 0; top: 155px; transform: rotate(4deg); }
.stat-c { left: 45px; bottom: 52px; transform: rotate(-3deg); }
.about-copy .eyebrow { color: #ff7773; }
.about-copy .eyebrow span { background: #ff7773; }
.about-copy h2 { max-width: 700px; margin-bottom: 28px; }
.about-copy p { max-width: 630px; color: rgba(255,255,255,.66); line-height: 1.8; font-size: 15px; }
.check-list { margin-top: 27px; display: grid; gap: 12px; color: rgba(255,255,255,.85); font-size: 13px; font-weight: 700; }
.check-list div::first-letter { color: var(--red); }

.center { display: block; text-align: center; }
.center .eyebrow { justify-content: center; }
.process { background: #f7efe8; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.process-step { min-height: 260px; background: var(--cream); padding: 28px; position: relative; }
.step-no { color: var(--red); font-family: "Space Grotesk"; font-size: 13px; font-weight: 700; margin-bottom: 65px; }
.process-step h3 { font-size: 24px; margin: 0 0 10px; }
.process-step p { color: var(--muted); font-size: 13px; line-height: 1.65; margin: 0; max-width: 230px; }

.cta-section { padding: 100px 0; background: var(--cream); }
.cta-box {
  min-height: 480px;
  background: var(--red);
  color: #fff;
  border-radius: 24px;
  padding: 65px 70px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-box::after {
  content: "";
  position: absolute; width: 420px; height: 420px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%; right: -130px; bottom: -190px;
}
.cta-content .eyebrow { color: rgba(255,255,255,.72); }
.cta-content .eyebrow span { background: rgba(255,255,255,.72); }
.cta-content h2 { margin-bottom: 20px; }
.cta-content p { color: rgba(255,255,255,.78); max-width: 480px; line-height: 1.7; font-size: 14px; margin-bottom: 28px; }
.btn-light { background: #fff; color: var(--navy); }
.contact-details { position: relative; z-index: 2; display: grid; gap: 26px; }
.detail { padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.2); }
.detail span { display: block; color: rgba(255,255,255,.6); font-size: 9px; letter-spacing: 2px; margin-bottom: 8px; }
.detail a, .detail p { margin: 0; font-family: "Space Grotesk"; font-size: 17px; font-weight: 600; line-height: 1.5; }
.detail a:hover { text-decoration: underline; }

footer { background: var(--navy-dark); color: rgba(255,255,255,.62); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; }
.footer-brand span, footer p, footer a { font-size: 11px; }
footer a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav { height: 74px; }
  .brand img { width: 66px; height: 66px; }
  .nav-links {
    position: absolute; top: 73px; left: 0; right: 0;
    background: var(--cream); padding: 20px 24px;
    flex-direction: column; gap: 17px;
    display: none; border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; }
  .hero { padding-top: 125px; }
  .hero-grid, .about-grid, .cta-box { grid-template-columns: 1fr; }
  .hero-grid { gap: 30px; }
  .hero-visual { min-height: 400px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .about-visual { min-height: 430px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { gap: 35px; padding: 45px 35px; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 30px, 1180px); }
  h1 { font-size: 51px; letter-spacing: -2.5px; }
  .hero { min-height: auto; padding-bottom: 80px; }
  .hero-visual { min-height: 360px; }
  .growth-card { height: 275px; padding: 20px; }
  .bars { height: 155px; gap: 8px; }
  .bar { width: 31px; }
  .b5 { height: 155px; }
  .b4 { height: 133px; }
  .b3 { height: 105px; }
  .b2 { height: 77px; }
  .b1 { height: 48px; }
  .orbit-one { width: 350px; height: 350px; }
  .orbit-two { width: 285px; height: 285px; }
  .chip-one { top: 25px; right: 0; }
  .chip-two { left: 0; bottom: 50px; }
  .chip-three { right: 0; bottom: 15px; }
  .section, .about-section { padding: 80px 0; }
  .section-heading h2, .about-copy h2, .cta-content h2 { font-size: 45px; letter-spacing: -2px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 250px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 215px; }
  .step-no { margin-bottom: 35px; }
  .cta-section { padding: 60px 0; }
  .cta-box { padding: 38px 25px; border-radius: 18px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .about-logo-wrap { width: 270px; height: 270px; }
  .about-logo-wrap img { width: 200px; height: 200px; }
  .mini-stat { transform: scale(.9); }
}
