:root {
  --navy: #071f49;
  --navy-2: #0b3474;
  --blue: #1263c6;
  --light-blue: #73a6e8;
  --orange: #ff5a36;
  --gold: #ffb000;
  --white: #ffffff;
  --ink: #172033;
  --muted: #667085;
  --surface: #f4f7fb;
  --line: #dce5f0;
  --shadow: 0 24px 60px rgba(7, 31, 73, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 110px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(7,31,73,.08);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 205px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .91rem; font-weight: 700; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 100%;
  bottom: -8px;
  background: var(--orange);
  transition: right .25s ease;
}
.main-nav > a:hover::after { right: 0; }
.nav-cta {
  padding: 13px 19px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
  box-shadow: 0 12px 28px rgba(18,99,198,.22);
}
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px; background: var(--navy); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
  background:
    radial-gradient(circle at 15% 15%, rgba(115,166,232,.22), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f5f8fd 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 660px;
  height: 660px;
  border: 110px solid rgba(18,99,198,.06);
  border-radius: 50%;
  right: -360px;
  top: -300px;
}
.hero-shape { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-shape-one { width: 180px; height: 180px; background: rgba(255,90,54,.10); left: -75px; bottom: 20px; }
.hero-shape-two { width: 90px; height: 90px; background: rgba(255,176,0,.16); left: 48%; top: 80px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; border-radius: 3px; background: var(--orange); }
.hero h1 {
  max-width: 760px;
  margin: 18px 0 22px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  line-height: .96;
  letter-spacing: -.03em;
  color: var(--navy);
  text-transform: uppercase;
}
.hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy > p { max-width: 680px; margin: 0 0 30px; font-size: 1.08rem; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--orange), #ff833c); box-shadow: 0 16px 30px rgba(255,90,54,.26); }
.btn-secondary { color: var(--navy); border: 1px solid var(--line); background: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-full { width: 100%; }
.hero-stats { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hero-stats div { padding-left: 14px; border-left: 3px solid var(--light-blue); }
.hero-stats strong { display: block; color: var(--navy); font-size: 1.05rem; }
.hero-stats span { display: block; color: var(--muted); font-size: .72rem; line-height: 1.35; }
.hero-media { position: relative; }
.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 34px 34px 110px 34px;
  box-shadow: var(--shadow);
  background: var(--navy);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7,31,73,.62) 100%);
}
.hero-image img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.floating-card {
  position: absolute;
  right: -28px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 18px 40px rgba(7,31,73,.18);
}
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { color: var(--navy); }
.floating-card small { color: var(--muted); }
.pulse { width: 14px; height: 14px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 8px rgba(255,90,54,.15); }

.brands-strip { padding: 18px 0; color: var(--white); background: var(--navy); overflow: hidden; }
.strip-content { display: flex; align-items: center; justify-content: space-between; gap: 18px; white-space: nowrap; font-weight: 800; font-size: .84rem; text-transform: uppercase; letter-spacing: .05em; }
.strip-content i { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }

.section-heading { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-heading .eyebrow { justify-content: center; }
.section-heading h2, .about-copy h2, .contact-copy h2 {
  margin: 15px 0 17px;
  color: var(--navy);
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 4.3rem);
  line-height: 1.05;
  text-transform: uppercase;
}
.section-heading p { margin: 0; color: var(--muted); }

.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  right: -35px;
  bottom: -35px;
  background: linear-gradient(135deg, rgba(18,99,198,.12), rgba(255,90,54,.12));
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(18,99,198,.36); box-shadow: 0 22px 48px rgba(7,31,73,.10); }
.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: .95rem;
  letter-spacing: .04em;
  box-shadow: 0 13px 26px rgba(18,99,198,.24);
}
.service-card:nth-child(even) .service-icon { background: linear-gradient(135deg, var(--orange), #ff9933); }
.service-card h3 { margin: 22px 0 10px; color: var(--navy); font-size: 1.18rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .91rem; }

.about { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 80px; }
.about-card { overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); transform: rotate(-1.5deg); background: var(--white); padding: 9px; }
.about-card img { border-radius: 21px; }
.about-copy p { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 28px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check-list li { position: relative; padding-left: 30px; font-weight: 700; font-size: .9rem; color: var(--navy); }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-size: .72rem;
}
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-weight: 900; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.process { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #061a3b, #0c397a); }
.process::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border: 90px solid rgba(255,255,255,.035);
  border-radius: 50%;
  right: -260px;
  top: -300px;
}
.section-heading.light h2, .section-heading.light p { color: var(--white); }
.section-heading.light p { opacity: .72; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step { padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.process-step span { font-family: "Oswald", sans-serif; font-size: 2.5rem; color: var(--gold); }
.process-step h3 { margin: 12px 0 8px; font-size: 1.2rem; }
.process-step p { margin: 0; color: rgba(255,255,255,.70); font-size: .88rem; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.contact-copy > p { color: var(--muted); }
.contact-list { margin-top: 34px; display: grid; gap: 12px; }
.contact-list a { padding: 17px 19px; border: 1px solid var(--line); border-radius: 14px; transition: border-color .2s ease, transform .2s ease; }
.contact-list a:hover { border-color: var(--blue); transform: translateX(4px); }
.contact-list span, .contact-list strong { display: block; }
.contact-list span { margin-bottom: 3px; color: var(--muted); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.contact-list strong { color: var(--navy); font-size: .93rem; overflow-wrap: anywhere; }
.contact-form { padding: 36px; border-radius: 24px; background: var(--surface); box-shadow: 0 24px 55px rgba(7,31,73,.09); }
.form-title h3 { margin: 0; color: var(--navy); font-size: 1.55rem; }
.form-title p { margin: 5px 0 24px; color: var(--muted); font-size: .88rem; }
.contact-form label { display: block; margin-top: 15px; color: var(--navy); font-size: .83rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(18,99,198,.10); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { margin-top: 20px; }

.cta-banner { padding: 55px 0; color: var(--white); background: linear-gradient(100deg, var(--orange), #ff842f); }
.cta-content { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-content span { font-size: .82rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.cta-content h2 { margin: 7px 0 0; font-family: "Oswald", sans-serif; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; text-transform: uppercase; }

footer { padding: 65px 0 25px; color: rgba(255,255,255,.76); background: #04142f; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 60px; }
.footer-logo { width: 220px; margin-bottom: 15px; background: white; border-radius: 12px; padding: 8px; }
.footer-grid p { max-width: 420px; }
.footer-grid h4 { margin: 0 0 14px; color: var(--white); }
.footer-grid a { display: block; margin: 8px 0; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.10); display: flex; justify-content: space-between; gap: 20px; font-size: .8rem; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.07); }
.whatsapp-float svg { width: 31px; fill: white; }

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

@media (max-width: 1020px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px; }
  .nav-cta { margin-top: 6px; text-align: center; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { max-width: 650px; margin-inline: auto; margin-top: 38px; text-align: left; }
  .hero-media { max-width: 700px; margin-inline: auto; }
  .about-grid, .contact-grid { gap: 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-content { justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 26px, 1180px); }
  .section { padding: 78px 0; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 166px; }
  .hero { padding: 55px 0 65px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-image, .hero-image img { min-height: 440px; }
  .floating-card { right: 10px; left: 10px; bottom: 18px; }
  .services-grid, .process-grid, .check-list { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .contact-form { padding: 24px 18px; }
  .cta-content, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-content .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}


.radio-section {
  padding: 88px 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,90,54,.10), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}
.radio-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 50px;
  padding: 42px;
  border-radius: 28px;
  color: var(--white);
  background: linear-gradient(135deg, #071f49 0%, #0c397a 55%, #1263c6 100%);
  box-shadow: var(--shadow);
}
.radio-card::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 60px solid rgba(255,255,255,.045);
  border-radius: 50%;
  right: -110px;
  top: -145px;
}
.radio-brand {
  position: relative;
  z-index: 1;
}
.radio-brand .eyebrow {
  color: #a9c8ef;
}
.radio-brand h2 {
  margin: 12px 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  line-height: 1;
  text-transform: uppercase;
}
.radio-brand p {
  margin: 0;
  max-width: 570px;
  color: rgba(255,255,255,.76);
}
.radio-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff3d3d;
  box-shadow: 0 0 0 0 rgba(255,61,61,.7);
  animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255,61,61,.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,61,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,61,61,0); }
}
.radio-player {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
}
.radio-play {
  width: 70px;
  height: 70px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ff9a3c);
  box-shadow: 0 14px 28px rgba(255,90,54,.30);
  cursor: pointer;
  transition: transform .2s ease;
}
.radio-play:hover { transform: scale(1.05); }
.radio-play .pause-icon { display: none; letter-spacing: -2px; }
.radio-play.is-playing .play-icon { display: none; }
.radio-play.is-playing .pause-icon { display: inline; }
.radio-info strong,
.radio-info span { display: block; }
.radio-info strong { font-size: 1.05rem; }
.radio-info span {
  margin-top: 3px;
  color: rgba(255,255,255,.68);
  font-size: .78rem;
}
.radio-volume {
  display: flex;
  align-items: center;
  gap: 9px;
}
.radio-volume input {
  width: 105px;
  accent-color: var(--orange);
}

@media (max-width: 900px) {
  .radio-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 620px) {
  .radio-section { padding: 65px 0; }
  .radio-card { padding: 28px 20px; }
  .radio-player {
    grid-template-columns: auto 1fr;
  }
  .radio-volume {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
  .radio-volume input { width: calc(100% - 34px); }
}


.ceo-card {
  position: relative;
  padding: 0;
  transform: none;
  overflow: hidden;
  background: var(--navy);
}
.ceo-card img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
}
.ceo-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(4,20,47,.92));
  pointer-events: none;
}
.ceo-caption {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 27px;
  color: white;
}
.ceo-caption strong,
.ceo-caption span {
  display: block;
}
.ceo-caption strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.ceo-caption span {
  margin-top: 4px;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
}
@media (max-width: 680px) {
  .ceo-card img { height: 470px; }
  .ceo-caption { left: 20px; right: 20px; bottom: 20px; }
}
