:root {
  --bg: #f3f5f8;
  --surface: #ffffff;
  --surface-soft: #edf1f5;
  --text: #1f2d3d;
  --muted: #5f6b7a;
  --brand: #1f5a7a;
  --brand-deep: #12354d;
  --accent: #2a7f74;
  --accent-soft: #cde6df;
  --success: #1f7a5f;
  --stroke: #d8e0e8;
  --shadow: 0 20px 50px rgba(18, 53, 77, 0.12);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% -5%, #d6dee8 0%, transparent 35%),
    radial-gradient(circle at 95% 10%, #dde8ea 0%, transparent 30%),
    var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.25;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 224, 232, 0.8);
}

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

.brand {
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 80px;
  width: auto;
  display: block;
  max-width: 260px;
  object-fit: contain;
}

.footer-logo {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
}

.login-btn {
  background: linear-gradient(120deg, #1b5f8f 0%, #1e8c87 100%);
  color: #fff !important;
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(27, 95, 143, 0.28);
}

.login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(30, 140, 135, 0.3);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--stroke);
  background: var(--surface);
  border-radius: 10px;
  padding: 7px 11px;
  color: var(--brand-deep);
}

.hero {
  padding: 82px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.hero-panel {
  background:
    linear-gradient(115deg, rgba(18, 53, 77, 0.92) 0%, rgba(31, 90, 122, 0.9) 62%, rgba(42, 127, 116, 0.88) 100%),
    url("https://images.unsplash.com/photo-1556157382-97eda2d62296?auto=format&fit=crop&w=1400&q=80") center/cover;
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 58px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel > * {
  position: relative;
  z-index: 2;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(16, 36, 52, 0.34), rgba(16, 36, 52, 0.08));
  z-index: 1;
}

.hero-panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -100px;
  top: -80px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.16);
}

.hero h1 {
  margin-top: 16px;
  font-size: clamp(2rem, 4.1vw, 3.4rem);
}

.hero p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn,
button.btn {
  border: 0;
  border-radius: 11px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  display: inline-block;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--accent) 0%, #1f6e77 100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(31, 126, 116, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-highlights {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid #e0e6ec;
}

.metric-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  background: var(--surface-soft);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  padding: 14px;
}

.metric strong {
  display: block;
  font-size: 1.2rem;
  color: var(--brand-deep);
}

.section {
  padding: 64px 0;
}

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  max-width: 760px;
}

.cards {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 8px 22px rgba(18, 53, 77, 0.08);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.card ul,
.quote-form ul {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.card li,
.quote-form li {
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}

.card li::before,
.quote-form li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 10px;
}

.container > p {
  color: var(--muted);
  margin-top: 12px;
  max-width: 760px;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(31, 90, 122, 0.07), rgba(42, 127, 116, 0.1));
  opacity: 0;
  transition: 0.25s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card a {
  position: relative;
  margin-top: 14px;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card a:hover {
  color: var(--brand-deep);
}

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

.quote-panel {
  background:
    linear-gradient(135deg, rgba(18, 53, 77, 0.94) 0%, rgba(31, 90, 122, 0.91) 68%, rgba(42, 127, 116, 0.84) 100%),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1200&q=80") center/cover;
  border-radius: var(--radius-xl);
  color: #fff;
  padding: 26px;
}

.quote-panel ul {
  list-style: none;
  margin-top: 16px;
}

.quote-panel li {
  padding: 9px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}

.quote-form {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid #e0e6ec;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.quote-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(31, 90, 122, 0.1), rgba(42, 127, 116, 0.1));
  pointer-events: none;
}

.quote-form h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.quote-form p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-deep);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #c9d3de;
  padding: 11px 12px;
  font: inherit;
  color: var(--text);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #1f6f9d;
  box-shadow: 0 0 0 3px rgba(31, 111, 157, 0.16);
  transform: translateY(-1px);
}

.form-note {
  margin-top: 10px;
  font-size: 0.78rem;
  color: #7281a2;
}

.notice {
  margin-top: 16px;
  border-radius: var(--radius-md);
  background: #eaf4f1;
  color: #23584d;
  border: 1px solid #c6dfd8;
  padding: 12px 14px;
}

footer {
  margin-top: 50px;
  padding: 48px 0 34px;
  background: #152838;
  color: #dbe3ea;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
}

footer h4 {
  color: #fff;
  margin-bottom: 10px;
}

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

footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 26px;
  border-top: 1px solid rgba(219, 227, 234, 0.25);
  padding-top: 16px;
  font-size: 0.9rem;
  color: #b4c2cf;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

body.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--stroke);
    padding: 12px 4%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links.open {
    display: flex;
  }

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

  .hero {
    padding-top: 46px;
  }
}

/* ===== MEGA MENU ===== */
.menu-item {
  position: relative;
}

.menu-trigger {
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--muted);
  font-weight: 500;
  cursor: pointer;
  padding: 6px 0;
}

.menu-trigger:hover,
.menu-item.open > .menu-trigger {
  color: var(--brand);
}

@media (min-width: 821px) {
  .menu-item:hover > .mega-menu,
  .menu-item:focus-within > .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.menu-item .menu-trigger {
  position: relative;
  z-index: 2;
}

.mega-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 14px);
  width: min(820px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  box-shadow: 0 22px 42px rgba(18, 53, 77, 0.16);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(6px);
  z-index: 120;
}

.menu-item:last-of-type .mega-menu,
.menu-item:nth-last-of-type(2) .mega-menu {
  left: auto;
  right: 0;
}

.menu-item.open > .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-col h5 {
  margin-bottom: 10px;
  color: var(--brand-deep);
  font-size: 0.95rem;
  font-family: "Poppins", sans-serif;
}

.mega-col a {
  display: block;
  padding: 7px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.mega-col a:hover {
  background: #eef3ff;
  color: var(--brand);
}

.mobile-submenu {
  display: none;
}

/* ===== TRUST / REVIEWS / BLOG ===== */
.trust-strip {
  margin: 10px 0 0;
}

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

.trust-item {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
}

.trust-item strong {
  display: block;
  color: var(--brand-deep);
  font-size: 1.2rem;
}

.process-grid,
.blog-grid,
.reviews-grid {
  margin-top: 20px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step-card,
.blog-card,
.review-card,
.faq-item {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(18, 53, 77, 0.08);
}

.blog-card {
  background: linear-gradient(160deg, #ffffff 0%, #eef5ff 100%);
  border-color: #d2e2f5;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 26px rgba(27, 95, 143, 0.16);
}

.review-card {
  background: linear-gradient(160deg, #ffffff 0%, #ecfbfb 100%);
  border-color: #cdeeee;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 26px rgba(14, 133, 138, 0.14);
}

.step-badge {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(130deg, var(--brand), #3f6d8c);
  font-weight: 700;
  margin-bottom: 12px;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.review-rating {
  color: #b4883a;
  letter-spacing: 1px;
}

.review-source {
  font-size: 0.78rem;
  color: #5d6d8e;
  background: linear-gradient(120deg, #e6f0ff 0%, #eef7ff 100%);
  border-radius: 999px;
  padding: 4px 10px;
}

.blog-meta {
  font-size: 0.8rem;
  color: #7282a6;
  margin-bottom: 8px;
}

.blog-card a {
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
  color: #1f5f8e;
  font-weight: 600;
}

.blog-card a:hover {
  color: #123b5a;
}

.faq-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 7px;
}

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

  .section h2 {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .section-head p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .menu-item {
    width: 100%;
  }

  .menu-trigger {
    width: 100%;
    text-align: left;
    padding: 6px 0;
    font-weight: 600;
  }

  .mega-menu {
    display: none;
  }

  .mobile-submenu {
    display: none;
    padding: 6px 0 10px 12px;
    border-left: 2px solid var(--stroke);
    margin-top: 6px;
  }

  .menu-item.open .mobile-submenu {
    display: block;
  }

  .mobile-submenu a {
    display: block;
    font-size: 0.9rem;
    color: #5a6b90;
    text-decoration: none;
    margin: 7px 0;
  }

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

  .trust-item {
    padding: 12px 10px;
  }

  .trust-item strong {
    font-size: 1.05rem;
  }

  .process-grid,
  .blog-grid,
  .reviews-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .step-card,
  .blog-card,
  .review-card,
  .faq-item {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .step-card h3,
  .blog-card h3,
  .review-card h3,
  .faq-item h3 {
    font-size: 1.02rem;
    line-height: 1.35;
  }

  .step-card p,
  .blog-card p,
  .review-card p,
  .faq-item p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .review-top {
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }

  .review-source {
    font-size: 0.72rem;
    padding: 3px 8px;
  }

  .blog-meta {
    font-size: 0.75rem;
  }

  .quote-form {
    padding: 16px 14px;
  }

  .quote-form h3 {
    font-size: 1.15rem;
  }

  .quote-form p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .form-grid {
    gap: 10px;
  }

  label {
    font-size: 0.78rem;
  }

  input,
  select,
  textarea {
    font-size: 0.94rem;
    padding: 10px 11px;
  }

  .form-note {
    font-size: 0.74rem;
  }

  .btn,
  button.btn {
    width: 100%;
    text-align: center;
    padding: 11px 14px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 94%;
  }

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

  .step-badge {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .review-rating {
    font-size: 0.92rem;
    letter-spacing: 0.5px;
  }

  .blog-card a {
    font-size: 0.9rem;
  }
}

/* ===================================================
                HERO V2
=================================================== */

.hero{
    position:relative;
    min-height:92vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:linear-gradient(
        90deg,
        rgba(6,24,45,.90),
        rgba(10,34,60,.82)
    );
    padding:110px 0 90px;
}

.hero.hero-home::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("./images/hero.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: .95;
    pointer-events: none;
}

@media (min-width: 1200px) {
  .hero.hero-home::before {
    background-size: auto 100%;
    background-position: right center;
  }

  /* When pseudo-element supplies the hero illustration, hide the inline image on wide screens */
  .hero-right img {
    display: none;
  }
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(5,20,38,.92) 0%,
        rgba(5,20,38,.78) 45%,
        rgba(5,20,38,.18) 100%
    );
}

.hero-wrapper{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

.hero-left{
    color:#fff;
    max-width:650px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.18);
    font-size:14px;
    font-weight:600;
    margin-bottom:24px;
}

.hero-left h1{
    font-size:60px;
    line-height:1.08;
    font-weight:700;
    color:#fff;
    margin-bottom:22px;
}

.hero-left p{
    color:#d9e3ef;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
}

/* ==========================================
        HERO BUTTONS + STATS
========================================== */

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:45px;
}

.hero-buttons .btn{
    padding:16px 34px;
    border-radius:14px;
    font-size:16px;
    font-weight:600;
    transition:.35s;
    text-decoration:none;
}

.hero-buttons .btn-primary{
    background:#19c37d;
    color:#fff;
    box-shadow:0 18px 40px rgba(25,195,125,.28);
}

.hero-buttons .btn-primary:hover{
    transform:translateY(-5px);
}

.btn-outline{
    border:2px solid rgba(255,255,255,.35);
    color:#fff;
    background:transparent;
}

.btn-outline:hover{
    background:#fff;
    color:#0e2d4c;
}

.hero-stats{
    display:flex;
    gap:45px;
    margin-top:20px;
}

.hero-stats h3{
    color:#fff;
    font-size:34px;
    margin-bottom:5px;
}

.hero-stats span{
    color:#b9c7d8;
    font-size:14px;
}

/* ==========================================
        HERO IMAGE
========================================== */

.hero-right{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-right img{
    width:100%;
    max-width:560px;
    position:relative;
    z-index:3;
    animation:floatImage 5s ease-in-out infinite;
}

@keyframes floatImage{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0px);
}

}

/* ==========================================
        FLOATING CARD
========================================== */

.floating-card{

position:absolute;

right:-10px;

bottom:20px;

width:290px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.2);

border-radius:22px;

padding:28px;

color:#fff;

z-index:5;

box-shadow:0 25px 60px rgba(0,0,0,.25);

}

.floating-card h3{

margin-bottom:18px;

font-size:22px;

}

.floating-card ul{

list-style:none;

display:flex;

flex-direction:column;

gap:14px;

}

.floating-card li{

font-size:15px;

color:#eef5ff;

}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 90px 0 70px;
  }

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

  .hero-left {
    max-width: 100%;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .hero-right img {
    max-width: 480px;
  }

  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 290px);
    margin-top: 20px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px 28px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 76px 0 56px;
  }

  .hero.hero-home::before {
    background-position: center right;
    background-size: cover;
    opacity: 0.7;
  }

  .hero-left h1 {
    font-size: clamp(2.1rem, 7vw, 2.9rem);
  }

  .hero-left p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-buttons {
    gap: 12px;
    margin-bottom: 28px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
  }

  .hero-stats {
    gap: 14px 18px;
  }

  .hero-stats div {
    min-width: 120px;
  }

  .hero-right img {
    max-width: 100%;
  }

  .floating-card {
    width: 100%;
    max-width: 320px;
    padding: 20px;
  }

  .brand-logo {
    height: 60px;
  }

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

  .hero-panel,
  .hero-highlights,
  .quote-panel,
  .quote-form {
    width: 100%;
    padding: 22px 18px;
  }

  .metric-grid,
  .cards,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    gap: 12px;
  }

  input,
  select,
  textarea {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-shell {
    min-height: 70px;
  }

  .brand-logo {
    height: 50px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 12px;
  }

  .hero-stats h3 {
    font-size: 24px;
  }

  .hero-stats span {
    font-size: 12px;
  }
}

/* ==========================================
      TAXMOZO PROCESS TIMELINE V2
========================================== */

.tm-process-section{
    padding:100px 0;
    background:#f8fbff;
}

.tm-process-tag{
    display:inline-block;
    background:#e9fff3;
    color:#0f9d58;
    padding:10px 22px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:18px;
}

.tm-process-section .section-head{
    text-align:center;
    max-width:850px;
    margin:0 auto 35px;
}

.tm-process-section .section-head h2{
    font-size:54px;
    color:#102a43;
    margin-bottom:10px;
}

.tm-process-section .section-head p{
    color:#667085;
    font-size:18px;
    line-height:1.8;
    margin-bottom:0;
}

/* Timeline */

.tm-process-line{

display:grid;

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

position:relative;

margin-bottom:35px;

}

.tm-process-line::before{

content:"";

position:absolute;

left:12%;

right:12%;

top:50%;

border-top:3px dashed #d0d7e2;

}

.tm-process-check{

width:46px;

height:46px;

border-radius:50%;

background:#10b981;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:22px;

font-weight:bold;

margin:auto;

z-index:2;

position:relative;

box-shadow:0 12px 30px rgba(16,185,129,.25);

}

/* ==========================================
      TAXMOZO PROCESS CARDS
========================================== */

.tm-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.tm-step-card{
    background:#fff;
    border-radius:22px;
    padding:34px 28px;
    position:relative;
    box-shadow:0 18px 45px rgba(15,23,42,.08);
    transition:.35s ease;
    overflow:hidden;
}

.tm-step-card:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 65px rgba(0,0,0,.12);
}

.tm-green{border-top:6px solid #22c55e;}
.tm-blue{border-top:6px solid #3b82f6;}
.tm-purple{border-top:6px solid #8b5cf6;}
.tm-orange{border-top:6px solid #f59e0b;}

.tm-step-number{
    position:absolute;
    top:-24px;
    left:28px;
    width:68px;
    height:68px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
}

.tm-green .tm-step-number{color:#22c55e;}
.tm-blue .tm-step-number{color:#3b82f6;}
.tm-purple .tm-step-number{color:#8b5cf6;}
.tm-orange .tm-step-number{color:#f59e0b;}

.tm-step-icon{
    width:82px;
    height:82px;
    border-radius:50%;
    margin:26px auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
}

.tm-step-icon{
  /* subtle inner highlight and soft shadow to match screenshot */
  box-shadow: inset 0 8px 18px rgba(255,255,255,0.6), 0 12px 30px rgba(15,23,42,0.06);
}

.tm-step-icon img{
  width:56px;
  height:56px;
  display:block;
  object-fit:contain;
}

/* Slightly lift the icon area on hover like the cards */
.tm-step-card:hover .tm-step-icon{
  transform:translateY(-6px);
}

.tm-green .tm-step-icon{background:#ecfdf3;}
.tm-blue .tm-step-icon{background:#eef5ff;}
.tm-purple .tm-step-icon{background:#f5efff;}
.tm-orange .tm-step-icon{background:#fff6e9;}

.tm-step-card h3{
    text-align:center;
    font-size:22px;
    margin-bottom:12px;
    color:#102a43;
}

.tm-step-card p{
    text-align:center;
    color:#667085;
    line-height:1.8;
    font-size:15px;
}

/* Trust Strip */

.tm-trust-strip{
    margin-top:65px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.tm-trust-strip div{
    background:#fff;
    border-radius:16px;
    padding:18px;
    text-align:center;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    color:#12324f;
}

/* Responsive */

@media(max-width:991px){

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

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

.tm-process-line{
display:none;
}

}

@media(max-width:768px){

.tm-process-grid{
grid-template-columns:1fr;
}

.tm-trust-strip{
grid-template-columns:1fr;
}

.tm-process-section .section-head h2{
font-size:38px;
}

.tm-process-section .section-head p{
font-size:16px;
}

}
/* ===========================
   TOP ANNOUNCEMENT BAR
=========================== */

.top-announcement{

width:100%;

height:36px;

background:#0B3C88;

overflow:hidden;

display:flex;

align-items:center;

position:relative;

z-index:99999;

border-bottom:1px solid rgba(255,255,255,.15);

}

.announcement-track{

display:flex;

white-space:nowrap;

animation:scrollNews 35s linear infinite;

}

.announcement-track span{

display:inline-block;

padding-right:120px;

font-size:14px;

font-weight:500;

color:#fff;

line-height:36px;

}

.announcement-track strong{

color:#FFD84D;

font-weight:700;

}

@keyframes scrollNews{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

.top-announcement:hover .announcement-track{

animation-play-state:paused;

}

@media(max-width:768px){

.top-announcement{

height:32px;

}

.announcement-track span{

font-size:12px;

line-height:32px;

padding-right:80px;

}

}
/* ===========================
   Floating Contact
===========================*/

.tm-floating-left{

position:fixed;

left:-5px;

bottom:25px;

display:flex;

flex-direction:column;

gap:10px;

z-index:99999;

}

.tm-floating-left a{

width:48px;

height:48px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

text-decoration:none;

font-size:20px;

color:#fff;

box-shadow:0 8px 25px rgba(0,0,0,.18);

transition:.35s;

}

.tm-floating-left a:hover{

transform:translateY(-4px) scale(1.08);

}

.tm-call{

background:#163B73;

}

.tm-wa{

background:#25D366;

}

.tm-socials{

display:flex;

flex-direction:column;

gap:10px;

}

.tm-socials a{

background:#fff;

color:#163B73;

font-size:18px;

}

.tm-socials a:nth-child(1){

color:#1877F2;

}

.tm-socials a:nth-child(2){

color:#E1306C;

}

.tm-socials a:nth-child(3){

color:#0A66C2;

}

/* Mobile */

@media(max-width:768px){

.tm-floating-left{

left:12px;

bottom:15px;

gap:8px;

}

.tm-floating-left a{

width:42px;

height:42px;

font-size:17px;

}

}

.funding-cta{

display:flex;

justify-content:space-between;

align-items:center;

padding:40px 50px;

background:linear-gradient(135deg,#ffffff,#eef5ff);

border-radius:25px;

margin:80px auto;

width:90%;

box-shadow:0 20px 50px rgba(0,0,0,.08);

overflow:hidden;

}

.funding-left{

width:55%;
flex:0 0 48%;


}

.funding-right{

width:40%;
flex:0 0 52%;
    display:flex;
    justify-content:flex-end;
    align-items:center;
text-align:right;

}

.funding-right img{

width:100%;

max-width:700px;

height:auto;

object-fit:contain;

}

.fund-btn{

display:inline-block;

margin-top:25px;

padding:18px 45px;

background:#103E82;

color:#fff;

border-radius:50px;

text-decoration:none;

font-weight:700;

}

.badge{

display:inline-block;

background:#DCEBFF;

padding:10px 20px;

border-radius:40px;

font-weight:600;

color:#103E82;

margin-bottom:20px;

}