:root {
  --blue: #1d3557;
  --blue-2: #0b78ad;
  --red: #e30613;
  --green: #0b6b4a;
  --yellow: #f6c94c;
  --ink: #102033;
  --muted: #5b6675;
  --line: #dfe7ed;
  --soft: #f5f8f7;
  --mist: #eef7f3;
  --white: #ffffff;
  --shadow: 0 18px 52px rgba(16, 32, 51, .13);
  --shadow-strong: 0 28px 80px rgba(16, 32, 51, .22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 42%, #f5f8f7 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  width: 204px;
  flex: 0 0 auto;
}

.logo img {
  width: 204px;
  height: 82px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #314159;
  font-size: 15px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--red); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--green);
  border-color: var(--green);
}

.button.red {
  background: var(--red);
  border-color: var(--red);
}

.button.red:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.button.ghost {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .72);
}

.button.ghost:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--blue);
  font-size: 24px;
}

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--blue);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 24%, rgba(246, 201, 76, .16), transparent 28%),
    linear-gradient(90deg, rgba(10, 25, 42, .94) 0%, rgba(13, 28, 45, .83) 42%, rgba(13, 28, 45, .28) 78%, rgba(13, 28, 45, .48) 100%),
    linear-gradient(0deg, rgba(13, 28, 45, .52), rgba(13, 28, 45, .04));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 96px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
}

.hero-orbit {
  position: absolute;
  right: max(42px, calc(50% - 570px));
  bottom: 104px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .26);
  background: radial-gradient(circle, rgba(255, 255, 255, .1), rgba(255, 255, 255, .03) 58%, transparent 59%);
}

.hero-orbit::before {
  content: "973";
  position: absolute;
  inset: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
  color: rgba(255, 255, 255, .78);
  backdrop-filter: blur(8px);
  font-size: 46px;
  font-weight: 800;
}

.orbit-card {
  position: absolute;
  min-width: 128px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  color: var(--blue);
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.orbit-card span {
  display: block;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.orbit-cayenne {
  top: 26px;
  right: 2px;
}

.orbit-kourou {
  left: -8px;
  bottom: 48px;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: max(20px, calc((100% - 1140px) / 2));
  padding: 118px 0 128px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6.3vw, 82px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.hero-content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.section {
  padding: 104px 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-intro p:not(.eyebrow),
.local-copy > p,
.urgency-grid > div > p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
}

.insurance-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.insurance-card,
.step,
.contact-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 32, 51, .07);
}

.insurance-card {
  min-height: 286px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.insurance-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
}

.insurance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.insurance-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue-2));
}

.insurance-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insurance-card p,
.step p,
.contact-card dd,
.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--muted);
}

.local-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(11, 107, 74, .08), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(246, 201, 76, .12), transparent 28%),
    var(--white);
}

.local-grid,
.urgency-grid,
.cta-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.agency-showcase {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 12px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(11, 107, 74, .88), rgba(29, 53, 87, .92)),
    url("/assets/guyane-hero.png") center / cover;
  box-shadow: var(--shadow-strong);
}

.agency-showcase::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
}

.agency-showcase::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 14%;
  top: 44%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(246, 201, 76, .95), rgba(255, 255, 255, .72), rgba(227, 6, 19, .9));
  transform: rotate(-18deg);
}

.agency-card {
  position: absolute;
  z-index: 1;
  width: min(260px, calc(100% - 56px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  color: var(--blue);
  box-shadow: var(--shadow);
}

.agency-card.featured {
  top: 40px;
  left: 34px;
}

.agency-card:not(.featured) {
  right: 34px;
  bottom: 40px;
}

.agency-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.agency-card h3 {
  margin: 8px 0 10px;
  font-size: 28px;
}

.agency-card p {
  margin-bottom: 16px;
  color: var(--muted);
}

.agency-card a {
  color: var(--green);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: #263a51;
  font-weight: 700;
}

.check-list img {
  width: 20px;
  margin-top: 3px;
}

.guyane-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(11, 107, 74, .94), rgba(29, 53, 87, .95)),
    url("/assets/guyane-hero.png") center / cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.river-line {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 12%, rgba(246, 201, 76, .42), transparent 26%),
    linear-gradient(128deg, transparent 0 39%, rgba(255, 255, 255, .2) 40% 47%, transparent 48% 100%);
}

.panel-content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 32px;
}

.panel-content span {
  display: block;
  color: var(--yellow);
  font-size: 72px;
  line-height: 1;
  font-weight: 800;
}

.panel-content strong {
  display: block;
  margin: 8px 0;
  font-size: 36px;
}

.panel-content p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.process-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(29, 53, 87, .97), rgba(11, 107, 74, .95)),
    url("/assets/guyane-hero.png") center / cover;
}

.section-intro.light p:not(.eyebrow) { color: rgba(255, 255, 255, .78); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  min-height: 260px;
  padding: 28px;
  color: var(--ink);
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
}

.urgency-section {
  background: var(--soft);
}

.urgency-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-section {
  background:
    linear-gradient(180deg, var(--white), var(--mist));
}

.contact-card {
  padding: 34px;
}

.agency-contact-grid,
.maps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.agency-contact-grid {
  margin-bottom: 22px;
}

.contact-card-dark {
  background:
    radial-gradient(circle at 88% 15%, rgba(246, 201, 76, .18), transparent 34%),
    linear-gradient(135deg, var(--blue), #0c4b3a);
  color: var(--white);
}

.contact-card-top span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-card-dark .contact-card-top span {
  color: var(--yellow);
}

.contact-card-top h3 {
  margin-top: 8px;
  font-size: 30px;
}

.contact-card dl {
  display: grid;
  gap: 22px;
  margin: 28px 0 0;
}

.contact-card dt {
  margin-bottom: 5px;
  color: var(--blue);
  font-weight: 800;
}

.contact-card-dark dt,
.contact-card-dark h3 {
  color: var(--white);
}

.contact-card-dark dd,
.contact-card-dark a {
  color: rgba(255, 255, 255, .82);
}

.contact-card-dark a {
  font-weight: 800;
}

.contact-card dd {
  margin: 0;
  font-size: 17px;
}

.map-card {
  min-height: 390px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 390px;
  display: block;
  border: 0;
}

.final-cta {
  padding: 86px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(246, 201, 76, .16), transparent 32%),
    linear-gradient(135deg, var(--blue), #0b4639);
}

.cta-panel {
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 12%, rgba(246, 201, 76, .2), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
}

.cta-panel p { color: rgba(255, 255, 255, .82); }
.cta-panel .button { justify-self: end; }

.site-footer {
  padding: 64px 0 28px;
  color: var(--white);
  background: #172942;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 34px;
}

.footer-logo {
  width: 210px;
  height: 84px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .9);
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 17px;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, .78);
}

.site-footer a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.page-hero {
  padding: 118px 0 78px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(29, 53, 87, .96), rgba(11, 107, 74, .86)),
    url("/assets/guyane-hero.png") center / cover;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 68px);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
}

.content {
  max-width: 880px;
  padding-top: 72px;
  padding-bottom: 96px;
}

.content h2,
.content h3 {
  margin-top: 28px;
  color: var(--blue);
}

.content p {
  color: var(--muted);
  font-size: 17px;
}

.content a {
  color: var(--blue-2);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav { min-height: 72px; }
  .logo, .logo img { width: 178px; }
  .logo img { height: 72px; }
  .menu-toggle { display: grid; place-items: center; }
  .nav > .button { display: none; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(16, 32, 51, .12);
  }
  .nav.is-open .nav-links {
    display: grid;
    gap: 16px;
  }
  .hero { min-height: 660px; }
  .hero-content {
    margin: 0 auto;
    padding-top: 92px;
  }
  .hero-orbit { display: none; }
  .insurance-grid,
  .steps,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .local-grid,
  .urgency-grid,
  .contact-grid,
  .agency-contact-grid,
  .maps-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }
  .urgency-actions,
  .cta-panel .button {
    justify-self: start;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1140px);
  }
  .hero {
    min-height: 640px;
  }
  .hero-shade {
    background: linear-gradient(90deg, rgba(13, 28, 45, .94), rgba(13, 28, 45, .66));
  }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .hero-actions,
  .urgency-actions {
    display: grid;
  }
  .button { width: 100%; }
  .insurance-grid,
  .steps,
  .agency-contact-grid,
  .maps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 74px 0;
  }
  .guyane-panel,
  .map-card,
  .map-card iframe {
    min-height: 340px;
    height: 340px;
  }
  .agency-showcase {
    min-height: 560px;
    padding: 22px;
  }
  .agency-showcase::before {
    inset: 22px;
  }
  .agency-card,
  .agency-card.featured,
  .agency-card:not(.featured) {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }
  .agency-card + .agency-card {
    margin-top: 22px;
  }
  .agency-showcase::after {
    left: 20%;
    right: 20%;
    top: 48%;
  }
  .cta-panel {
    padding: 28px;
  }
  .footer-bottom {
    display: grid;
  }
}
