:root {
  --logo-navy: #0c2d48;
  --logo-blue: #1b6ca8;
  --logo-sky: #64b5f6;
  --ice-bg-start: #ddf0f8;
  --ice-bg-end: #f4fbfe;
  
  --ink: var(--logo-navy);
  --muted: #4a6072;
  --line: #cbe0ee;
  --soft: #f0f7fb;
  --paper: #ffffff;
  --accent: var(--logo-blue);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

/* Header & Prominent Logo */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

/* Enlarged Logo Styling */
.brand-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(12, 45, 72, 0.2);
  border: 2px solid var(--ice-bg-start);
  transition: transform 0.2s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.04);
}

.brand strong, .brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  color: var(--logo-navy);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.brand small {
  font-size: 10px;
  letter-spacing: 1.8px;
  color: var(--logo-blue);
  margin-top: 4px;
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 650;
}

nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}

nav a:hover, .text-link:hover {
  color: var(--logo-blue);
}

.nav-cta {
  padding: 10px 20px;
  border: 2px solid var(--logo-navy);
  border-radius: 999px;
  transition: all 0.2s ease;
  color: var(--logo-navy);
}

.nav-cta:hover {
  background: var(--logo-navy);
  color: #fff !important;
}

/* Hero Section with Logo-Derived Ice Blue Gradient */
.hero {
  background: linear-gradient(135deg, var(--ice-bg-start) 0%, var(--ice-bg-end) 50%, #ffffff 100%);
  padding: 92px 0 82px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 15px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--logo-blue);
}

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

h1 {
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--logo-navy);
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--logo-navy);
}

.hero-copy {
  font-size: 19px;
  color: var(--muted);
  max-width: 680px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  border: 2px solid transparent;
  font: inherit;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.primary {
  background: var(--logo-navy);
  color: #fff;
}

.primary:hover {
  background: var(--logo-blue);
}

.secondary {
  border-color: var(--logo-navy);
  background: transparent;
  color: var(--logo-navy);
}

.secondary:hover {
  background: var(--ice-bg-start);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-card {
  background: var(--logo-navy);
  color: #fff;
  padding: 38px;
  border-radius: var(--radius);
  box-shadow: 0 20px 45px rgba(12, 45, 72, 0.25);
  border: 1px solid var(--logo-blue);
}

.hero-card h2 {
  font-size: 30px;
  letter-spacing: -1px;
}

.hero-card p {
  color: var(--ice-bg-start);
}

.card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--logo-sky) !important;
}

.text-link {
  font-weight: 750;
  color: var(--logo-sky);
  text-decoration: none;
}

/* Sections */
.section {
  padding: 92px 0;
}

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

.section-heading {
  max-width: 690px;
  margin-bottom: 42px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 17px;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(12, 45, 72, 0.1);
  border-color: var(--logo-blue);
}

.card p, .about-copy {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--logo-blue);
  background: var(--ice-bg-start);
}

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

.about-copy p {
  font-size: 17px;
}

.note {
  font-size: 13px !important;
  border-left: 3px solid var(--logo-blue);
  padding-left: 15px;
}

/* Contact Section */
.contact-section {
  background: var(--logo-navy);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-grid > div > p:not(.eyebrow) {
  color: var(--ice-bg-start);
  font-size: 17px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 30px;
}

.contact-details a {
  font-size: 20px;
  font-weight: 750;
  color: var(--logo-sky);
  text-decoration: none;
}

.quote-form {
  background: #fff;
  color: var(--logo-navy);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

label {
  display: block;
  font-size: 13px;
  font-weight: 750;
  margin-bottom: 16px;
}

input, select, textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
  color: var(--logo-navy);
  background: #fff;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--logo-blue);
  box-shadow: 0 0 0 3px rgba(27, 108, 168, 0.18);
}

textarea {
  resize: vertical;
}

.quote-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  font-size: 11px;
  color: var(--muted);
  margin: 12px 0 0;
}

/* Footer */
.footer {
  padding: 35px 0;
  background: #071c2e;
  color: #8da4b8;
  font-size: 13px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer strong {
  color: #fff;
}

.footer p {
  margin: 5px 0 0;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 850px) {
  .hero-grid, .split, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  nav {
    gap: 14px;
  }
  nav a:not(.nav-cta) {
    display: none;
  }
  .hero {
    padding: 65px 0;
  }
  .section {
    padding: 70px 0;
  }
  .brand-logo {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1120px);
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    flex-direction: column;
  }
  .hero h1 {
    letter-spacing: -1.5px;
  }
  .trust-row {
    flex-direction: column;
    gap: 6px;
  }
}