/* ===========================
   Premium Corporate Footer
=========================== */
/* ===========================
   Premium Corporate Footer
=========================== */

:root {
  --navy: #073946;
  --teal: #0ea7a5;
  --teal-dark: #066867;
  --cream: #fbf7ef;
  --soft: #f3faf9;
  --text: #102a33;
  --muted: #607177;
  --line: rgba(7, 57, 70, 0.14);
  --shadow: 0 28px 90px rgba(7, 57, 70, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  background: #073946;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

body {
  margin: 0;
  font-family: Inter, Manrope, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1220px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 92px;
  max-width: 240px;
  object-fit: contain;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.brand img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 8px 18px rgba(7, 57, 70, 0.14));
}

.links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-weight: 750;
}

.links a {
  color: inherit;
  text-decoration: none;
  font-size: 0.96rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 14px 36px rgba(14, 167, 165, 0.28);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(14, 167, 165, 0.34);
}

.btn.secondary {
  background: #ffffff;
  color: var(--navy) !important;
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn.secondary:hover {
  background: var(--soft);
}

.hero {
  min-height: 86vh;
  padding: 76px 24px 56px;
  background:
    radial-gradient(circle at 70% 20%, rgba(14, 167, 165, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

.hero-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.2rem, 6.4vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

h1 span {
  color: var(--teal);
}

.lead {
  max-width: 630px;
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: auto;
}

.trustbar {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: -26px auto 0;
  padding: 0 24px 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 60px rgba(7, 57, 70, 0.08);
}

.trust strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 1.08rem;
}

.trust p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 86px 24px;
}

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

.section.dark {
  background: var(--navy);
  color: #ffffff;
}

.wrap {
  max-width: 1220px;
  margin: 0 auto;
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.4vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

.dark .section-title h2 {
  color: #ffffff;
}

.section-title p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.55;
}

.dark .section-title p {
  color: rgba(255, 255, 255, 0.76);
}

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

.feature {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 46px rgba(7, 57, 70, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(7, 57, 70, 0.11);
}

.feature .icon {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(14, 167, 165, 0.12);
  color: var(--teal-dark);
  font-size: 1.45rem;
}

.feature h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.22rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
}

.panel img {
  width: 100%;
  border-radius: 24px;
}

.list {
  display: grid;
  gap: 16px;
}

.list-item {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.list-item b {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 1.08rem;
}

.list-item span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.cta-section {
  padding: 88px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy), #0b5964);
  color: #ffffff;
}

.cta-section h2 {
  max-width: 900px;
  margin: 0 auto 18px;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.cta-section p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
  line-height: 1.55;
}

.cta-section .btn {
  background: #ffffff;
  color: var(--navy) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover {
  background: var(--cream);
}

/* Premium Corporate Footer */

footer {
  padding: 70px 40px 30px;
  border-top: 4px solid var(--teal);
  background: linear-gradient(180deg, #102a33 0%, #073946 100%);
  color: #ffffff;
}

.footer-content {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-section h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
}

.footer-section p {
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-section a:hover {
  color: #57e0d8;
}

.footer-bottom {
  max-width: 1220px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
  }

  .brand img {
    height: 76px;
    max-width: 210px;
  }

  .links {
    order: 3;
    width: 100%;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 0 8px;
    scrollbar-width: thin;
  }

  .links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

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

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 620px) {
  .nav {
    padding: 8px 18px;
  }

  .brand img {
    height: 62px;
    max-width: 170px;
  }

  .hero {
    padding-top: 48px;
  }

  .section {
    padding: 64px 20px;
  }

  .trustbar,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 68px 20px;
  }

  footer {
    padding: 54px 24px 26px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
}
