/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/next@15.5.15_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/.pnpm/next@15.5.15_react-dom@19.1.0_react@19.1.0__react@19.1.0/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #0a2540;
  --deep: #062a4a;
  --ocean: #0b6fb0;
  --teal: #0fb5ba;
  --aqua: #19c8d6;
  --sand: #f4ede2;
  --foam: #f5fbff;
  --white: #ffffff;
  --muted: #5b7185;
  --gold: #e0a82e;
  --radius: 18px;
  --maxw: 1200px;
  --shadow: 0 18px 50px rgba(6, 42, 74, .12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Layout */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-foam {
  background: var(--foam);
}

.section-deep {
  background: linear-gradient(160deg, #062a4a, #0b3b63);
  color: #dbeafe;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
}

.eyebrow {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 14px;
  display: inline-block;
}

.section-deep .eyebrow {
  color: var(--aqua);
}

.h-title {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800;
  margin-bottom: 18px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
}

.section-deep .lead {
  color: #bcd6ee;
}

.center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--ocean));
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 181, 186, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 181, 186, .5);
}

.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--ink);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: #dbe6f0;
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-lg {
  padding: 17px 38px;
  font-size: 16px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 30, 55, .82), rgba(11, 58, 99, .55) 60%, rgba(15, 181, 186, .25));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 0;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero p {
  font-size: clamp(17px, 2vw, 21px);
  color: #e6f3ff;
  max-width: 600px;
  margin-bottom: 34px;
}

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

/* Grid + cards */
.grid {
  display: grid;
  grid-gap: 28px;
  gap: 28px;
}

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

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

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

.card {
  background: #fff;
  border: 1px solid #eaf1f8;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(6, 42, 74, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}

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

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

.card p {
  color: var(--muted);
  font-size: 15.5px;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: linear-gradient(135deg, rgba(15, 181, 186, .15), rgba(11, 111, 176, .15));
  margin-bottom: 20px;
}

.media-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(6, 42, 74, .08);
  transition: transform .3s, box-shadow .3s;
  border: 1px solid #eef3f8;
}

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

.media-card .media {
  height: 220px;
  overflow: hidden;
}

.media-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.media-card:hover .media img {
  transform: scale(1.06);
}

.media-card .body {
  padding: 26px;
}

.media-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.media-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--ocean);
  font-size: 20px;
}

.tag {
  display: inline-block;
  background: rgba(15, 181, 186, .12);
  color: var(--ocean);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .02em;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.pill-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.pill-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 800;
  flex: none;
}

.section-deep .pill-list li {
  color: #cfe3f5;
}

/* Stats */
.stat {
  text-align: center;
}

.stat .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 48px);
  color: var(--teal);
}

.stat .label {
  color: var(--muted);
  font-size: 15px;
  margin-top: 6px;
}

.section-deep .stat .label {
  color: #bcd6ee;
}

/* Header / nav */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-bottom: 1px solid #e9f0f7;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--ink);
}

.brand .logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand span.accent {
  color: var(--teal);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 500;
  color: var(--ink);
  font-size: 15px;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-cta {
  padding: 11px 22px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--ink);
}

/* Footer */
.site-footer {
  background: #041d33;
  color: #a9c4dc;
  padding: 70px 0 30px;
}

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

.site-footer h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #a9c4dc;
  font-size: 14.5px;
}

.footer-links a:hover {
  color: var(--aqua);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 50px;
  padding-top: 24px;
  text-align: center;
  color: #7da0bf;
  font-size: 13.5px;
}

.footer-brand p {
  color: #9bb8d2;
  font-size: 14.5px;
  margin-top: 14px;
  max-width: 280px;
}

.social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .2s;
}

.social a:hover {
  background: var(--teal);
}

/* Misc helpers */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
  gap: 60px;
  align-items: center;
}

.rounded-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.rounded-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-float {
  position: absolute;
}

.cta-band {
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  color: #fff;
  border-radius: 24px;
  padding: 60px;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 16px;
}

.cta-band p {
  color: #e6f6ff;
  max-width: 560px;
  margin: 0 auto 28px;
}

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

.field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 7px;
  font-family: 'Poppins', sans-serif;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #dbe6f0;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
}

/* Responsive */
@media (max-width: 980px) {

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

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid #e9f0f7;
    box-shadow: var(--shadow);
  }

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 40px 26px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

