:root {
  --blue: #0053fd;
  --blue-dark: #003ab1;
  --text: #0a0a0a;
  --muted: #474747;
  --border: #e5e5e5;
  --bg: #f8f8f6;
  --white: #ffffff;
  font-family: 'Sofia Pro', sans-serif;
}
* {
  box-sizing: border-box;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-pro/Sofia-Pro-ExtraLight-Az.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-pro/Sofia-Pro-Light-Az.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-pro/Sofia-Pro-Regular-Az.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-pro/Sofia-Pro-Medium-Az.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-pro/Sofia-Pro-Semi-Bold-Az.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('../fonts/sofia-pro/Sofia-Pro-Bold-Az.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  font-family: 'Sofia Pro', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
ol li::marker {
  font-weight: bold;
}
img {
  max-width: 100%;
  display: block;
}
.page-shell {
  padding: 0;
  min-height: 100vh;
  width: 100%;
}
.hero-card {
  background: rgb(0, 58, 177);
  border-radius: 24px;
  color: var(--white);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  overflow: hidden;
  position: relative;
  min-height: 460px;
  margin: 2.5vw;
}
@keyframes heroFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bannerPop {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes calloutFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
.hero-copy h1,
.hero-copy h2,
.section-heading h2,
.callout-copy h2,
.footer h2 {
  margin: 0;
  line-height: 1.1;
}
.hero-copy h1 {
  margin: 0px;
  font-family: 'Sofia Pro', sans-serif;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  font-size: 58px;
}
.hero-copy h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-top: 8px;
}
.hero-heading-shell {
  min-height: 3.2em;
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
}
.hero-animated-text {
  min-height: 1.4em;
  margin: 0;
  color: var(--white);
  display: inline-block;
  font-weight: 600;
  line-height: 1.15;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  white-space: pre-wrap;
  letter-spacing: -0.01em;
  will-change: transform, opacity;
}
.hero-animated-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  will-change: transform, opacity;
}
.hero-animated-text .char.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-animated-text.typing-line {
  opacity: 1;
  transform: none;
}
.hero-animated-text.fade-out {
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}
.eyebrow {
  margin: 0px;
  font-family: 'Sofia Pro', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  color: #848484 !important;
}
.eyebrow-home {
  margin: 0px;
  font-family: 'Sofia Pro', sans-serif;
  font-weight: 600;
  color: white;
  font-size: 72px;
  line-height: 1.2;
}
.hero-text,
.section-heading p,
.step-content p,
.feature-card p,
.why-card p,
.callout-copy p,
.footer p {
  color: var(--muted);
  font-size: 20px;
  font-family: 'Inter', sans-serif;
}
.hero-text {
  margin: 0px;
  font-family: 'Inter', sans-serif;
  font-weight: normal;
  line-height: 30px;
  font-size: 20px;
  color: var(--white);
}
.hero-actions,
.footer-actions {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.hero-actions .btn-primary {
  background: var(--white);
  color: #2d68f7;
}
.hero-actions {
  display: flex;
}
.hero-actions .btn-arrow {
  width: 10px;
  height: 10px;
}
.hero-actions .btn-primary:hover {
  background: rgb(240, 240, 240);
}
.footer-actions {
  width: 35%;
  text-align: center;
  align-content: center;
}
.btn:hover {
  transform: none;
}
.btn-primary {
  background: #0053fd;
  color: white;
}
.btn-primary:hover {
  background: #0040c0;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
}
.btn-secondary {
  background: white;
  color: #0a0a0a;
  border: 1px solid #e5e5e5;
}
.hero-visual {
  position: relative;
  min-height: 340px;
}
.hero-bg {
  position: absolute;
  right: -1rem;
  top: -2rem;
  width: 408px;
  z-index: 2;
  transition: top 1.5s ease-in-out;
}
.hero-person {
  position: absolute;
  right: 7%;
  top: 35rem;
  width: 411px;
  z-index: 3;
  transition: top 1s ease-in-out;
  transition-delay: 0.5s;
}
.popup {
  position: absolute;
  top: 35rem;
  z-index: 3;
  transition: top 1s ease-in-out;
}
.popup-1 {
  right: 25%;
  width: 285px;
  transition-delay: 1s;
}
.popup-2 {
  right: 3%;
  width: 170px;
  transition-delay: 1.5s;
}
.popup-3 {
  right: 16%;
  width: 243px;
  transition-delay: 1.5s;
}
.hero-card.visible .hero-bg {
  top: -33rem;
}
.hero-card.visible .hero-person {
  top: -2.7rem;
}
.hero-card.visible .popup-1 {
  top: 10rem;
}
.hero-card.visible .popup-2 {
  top: 15rem;
}
.hero-card.visible .popup-3 {
  top: 20rem;
}
.top-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 24px;
  background: var(--blue);
  color: var(--white);
}
.top-banner-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-banner-text img:first-child {
  width: 24px;
  height: 24px;
}
.top-banner-text img:nth-child(2) {
  max-width: 96px;
}
.top-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  max-width: 192px;
}
.landing-layout-inner {
  display: flex;
  flex-direction: column;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 24px;
  margin-top: 0;
  border: 1px solid var(--border);
  background: var(--white);
}
.site-header .wrap-menu {
  list-style: none;
  padding-left: 0;
  display: inline-flex;
  gap: 32px;
}
.secondary-menu .wrap-secondary-menu {
  list-style: none;
  padding-left: 0;
  display: inline-flex;
  gap: 2rem;
}
.site-header .wrap-menu .nav-link {
  font-family: 'Inter', sans-serif;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.secondary-menu {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 14px 24px;
  border: 1px solid var(--border);
  background: var(--white);
}
.secondary-menu-links {
  position: relative;
}
.secondary-menu-left {
  display: flex;
  align-items: center;
}
.secondary-menu-left .brand img {
  width: 30px;
}
.secondary-menu-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
.secondary-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--text);
  cursor: pointer;
  position: relative;
}
.secondary-menu-toggle svg {
  width: 20px;
  height: 20px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.secondary-menu-toggle.open svg {
  transform: rotate(90deg);
}
.secondary-drawer-panel {
  width: min(100%, 420px);
}
.secondary-close {
  color: var(--text);
}
.secondary-drawer-content {
  align-items: center;
}
.secondary-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
}
.brand-inline img {
  width: 100px;
  height: auto;
}
.brand img {
  display: block;
  width: 115px;
  height: auto;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-product-item {
  position: relative;
  display: inline-flex;
  gap: 32px;
}
.header-product-item .product-menu-toggle {
  padding: 0;
}
.header-product-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: none;
  min-width: 240px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.header-product-item:hover .header-product-dropdown,
.header-product-item:focus-within .header-product-dropdown {
  display: block;
}
.header-product-dropdown a {
  display: block;
  padding: 10px 12px;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
}
.header-product-dropdown a:hover {
  background: #f5f7ff;
}
.top-nav {
  display: flex;
  gap: 22px;
}
.top-nav a,
.mobile-nav a,
.nav-link,
.footer-links-column a,
.footer-legal a {
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
}
.nav-link {
  color: var(--text);
}
.nav-link.active {
  font-weight: 500;
  color: #0053fd;
  border-bottom: 2px solid #0053fd;
}
.wrap-menu .current-menu-item .nav-link {
  font-weight: 500;
  color: #0053fd;
  border-bottom: 2px solid #0053fd;
  padding-bottom: 16px;
}
.product-menu-toggle {
  font-family: 'Sofia Pro', sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 17px;
}
.product-menu-toggle img {
  width: 10px;
  transition: transform 0.2s ease;
}
.product-menu-toggle.open img {
  transform: rotate(180deg);
}
.mega-menu {
  position: absolute;
  top: calc(100% + 35px);
  left: 0;
  display: none;
  width: min(74vw, 1100px);
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  z-index: 60;
}
.mega-menu.open {
  display: block;
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.mega-card {
  display: block;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
}
.mega-card img {
  height: 48px;
  border-radius: 8px;
  margin-bottom: 12px;
}
.mega-card h3,
.mega-steps h4,
.footer-links-column h3 {
  margin: 0 0 8px;
}
.mega-card h3,
.mega-steps h4 {
  line-height: 20px;
  font-family: 'Sofia Pro', sans-serif;
  font-weight: 600;
  color: rgb(10, 10, 10);
  font-size: 20px;
  margin-top: 10px;
}
.mega-card p,
.mega-steps p {
  font-size: 14px;
  color: #474747;
  font-family: 'Inter', sans-serif;
}
.mega-card .btn-primary {
  background: white;
  color: #000;
  width: 100%;
  border: 1px solid var(--border);
}
.mega-card .btn-primary:hover {
  background-color: rgb(240, 240, 240);
  box-shadow: none;
}
.mega-card .btn-primary .arrow {
  content: url('../images/icons/arrow-right-black.svg');
  width: 24px;
  height: 24px;
}
.small {
  height: 40px;
  width: fit-content;
  padding: 0 14px;
  margin-top: 12px;
}
.mega-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.mega-steps .mega-inner-steps {
  padding: 16px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--border);
  min-height: 160px;
}
.mega-steps span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f2f6ff;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 8px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  color: var(--text);
}
.menu-toggle .menu-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.menu-toggle .menu-icon svg {
  width: 22px;
  height: 22px;
}
.menu-toggle .menu-icon-bars {
  opacity: 1;
  transform: scale(1);
}
.menu-toggle .menu-icon-grid {
  opacity: 1;
  transform: scale(1);
}
.menu-toggle .menu-icon-bars {
  opacity: 0;
  transform: scale(0.8);
}
.menu-toggle.open .menu-icon-grid {
  opacity: 0;
  transform: scale(0.8);
}
.menu-toggle.open .menu-icon-bars {
  opacity: 1;
  transform: scale(1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
.mobile-drawer,
.secondary-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  visibility: hidden;
  opacity: 0;
  background: transparent;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.mobile-drawer.open,
.secondary-mobile-drawer.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 14, 42, 0.55);
  backdrop-filter: blur(6px);
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-drawer.open .drawer-backdrop,
.secondary-mobile-drawer.open .drawer-backdrop {
  opacity: 1;
}
.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 100%);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.18);
  transform: translateX(110%);
  opacity: 0;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
  z-index: 2;
  pointer-events: auto;
}
.drawer-panel-right {
  inset: 0 0 0 auto;
  right: 0;
  left: auto;
  transform: translateX(100%);
  transform-origin: right center;
}
.mobile-drawer.open .drawer-panel,
.secondary-mobile-drawer.open .drawer-panel {
  transform: translateX(0);
  opacity: 1;
}
.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text);
  z-index: 5;
  pointer-events: auto;
}
.drawer-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 24px;
  text-align: center;
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.35s ease 0.06s,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
}
.mobile-drawer.open .drawer-content,
.secondary-mobile-drawer.open .drawer-content {
  opacity: 1;
  transform: translateX(0);
}
.drawer-brand {
  margin-bottom: 28px;
}
.drawer-brand img {
  display: block;
  width: 140px;
  height: auto;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.75rem;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
}
.section {
  padding: 72px 0;
}
.section-alt {
  background: var(--bg);
  border-radius: 24px;
  padding: 72px 32px;
}
.hero-features {
  position: relative;
  padding: 5.469vw 7.813vw;
}
.hero-features::before {
  background-position: 50%;
  background-size: cover;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0.2;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.95) 0%, rgba(245, 240, 255, 0.9) 25%, transparent 65%), radial-gradient(circle at 70% 60%, rgba(0, 81, 255, 0.95) 0%, rgba(0, 81, 255, 0.7) 25%, transparent 60%), radial-gradient(circle at 85% 15%, rgba(161, 147, 255, 0.7) 0%, transparent 45%), linear-gradient(180deg, #eef2ff 0%, #c8d8ff 55%, #84a8ff 100%);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}
.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading h2,
.callout-copy h2,
.footer h2 {
  font-size: 48px;
  font-weight: 600;
  margin-top: 12px;
}
.products-section {
  padding: 5.625vw 7.813vw;
  background: #f8f8f6;
}
.products-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.products-left {
  width: 85%;
}
.products-left .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #848484;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.products-left h2 {
  font-size: 48px;
  color: #0a0a0a;
  line-height: 1.2;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}
.products-left p {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #474747;
  line-height: 1.5;
}
.carousel-shell {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 2rem;
  width: 100%;
}
.carousel-arrow {
  position: absolute;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: none;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s ease;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
}
.carousel-arrow-prev {
  left: -90px;
}
.carousel-arrow-next {
  right: -90px;
}
.carousel-arrow img {
  width: 32px;
  height: 32px;
}
.carousel-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card {
  flex: 0 0 calc(60% - 1rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.125vw;
  min-height: 30rem;
  text-align: left;
  box-sizing: border-box;
}
.product-card:last-child {
  margin-right: 0;
}
.product-card h2 {
  font-size: 48px;
  color: #0a0a0a;
  line-height: 1.2;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.product-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  margin-top: 1rem;
  color: #474747;
  font-weight: normal;
  line-height: 30px;
}
.product-specs {
  display: flex;
  margin-top: 1rem;
  gap: 1rem;
}
.spec-item {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e5e5e5;
  padding-right: 1rem;
}
.spec-item:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 1rem;
}
.spec-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: normal;
  color: #474747;
  margin: 0;
}
.spec-value {
  font-size: 22px;
  font-weight: bold;
  color: #0a0a0a;
  margin: 0;
}
.product-checklist {
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  max-width: 95%;
}
.checklist-item {
  display: flex;
  gap: 0.5rem;
  margin: 10px 0;
}
.checklist-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.checklist-item .check-benefit {
  width: 20px;
  height: 20px;
  content: url('../images/checklisting.svg');
}
.checklist-item p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: normal;
  color: #474747;
  margin: 0;
  line-height: 1.5;
}
.product-buttons {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}
.btn {
  font-family: 'Sofia Pro';
  height: 40px;
  border-radius: 8px;
  border: none;
  padding: 0 16px;
  font-size: 15px;
  text-transform: none;
  box-shadow: none;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  justify-content: center;
  text-decoration: none;
}
.btn:hover {
  box-shadow:
    rgba(0, 0, 0, 0.2) 0px 2px 4px -1px,
    rgba(0, 0, 0, 0.14) 0px 4px 5px 0px,
    rgba(0, 0, 0, 0.12) 0px 1px 10px 0px;
}
.btn-primary {
  background-color: #0053fd;
  color: white;
}
.btn-primary:hover {
  background-color: #0042cc;
  opacity: 0.9;
}
.btn-primary:disabled {
  background-color: #cccccc;
  color: #999999;
  cursor: not-allowed;
  opacity: 0.6;
}
.btn-primary:disabled:hover {
  background-color: #cccccc;
  opacity: 0.6;
}
.btn-secondary {
  background-color: white;
  color: #0a0a0a;
  border: 1px solid #e5e5e5;
}
.btn-secondary:hover {
  border: 1px solid #d0d0d0;
}
.btn-calculate {
  background-color: #0053fd;
  color: white;
  cursor: pointer;
}
.btn-calculate:hover {
  background-color: #0042cc;
  opacity: 0.9;
}
.btn .arrow {
  font-size: 12px;
  content: url('../images/icons/arrow-right-white.svg');
  width: 24px;
  height: 24px;
}
.product-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #848484;
  margin: 0;
}
/* Early Access Modal */
.early-access-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.early-access-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.early-access-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  padding-bottom: 0;
  padding-top: 1rem;
}
.early-access-modal .modal-header h2 {
  line-height: 1;
  font-size: 28px;
  font-weight: 600;
  color: #0a0a0a;
}
.early-access-form {
  display: grid;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.early-access-form .form-group {
  display: flex;
  flex-direction: column;
}
.early-access-form input {
  padding: 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #0a0a0a;
  min-height: 60px;
  width: 100%;
}
.early-access-form input::placeholder {
  color: #a0a0a0;
}
.early-access-form input:focus {
  outline: none;
  border-color: #0053fd;
  box-shadow: 0 0 0 3px rgba(0, 83, 253, 0.1);
}
.early-access-form .btn-primary {
  margin-top: 1rem;
}
.form-terms {
  color: #474747;
  font-size: 13px;
  line-height: 20px;
  margin-top: 1rem;
}
.form-terms a {
  color: #000;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
}
/* Loan Calculator Modal */
.loan-calculator-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.loan-calculator-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loan-calculator-modal .modal-dialog {
  max-width: 600px;
}
.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.modal-dialog {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.modal-header {
  display: flex;
  justify-content: flex-end;
  padding: 1.5rem;
  padding-bottom: 0;
}
.modal-close {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #0a0a0a;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover {
  opacity: 0.6;
}
.modal-content {
  padding: 2rem 1.5rem;
  padding-bottom: 1rem;
  padding-top: 0px;
}
.modal-content h2 {
  font-size: 26px;
  font-weight: 600;
  color: #0a0a0a;
  text-align: center;
  margin: 0 0 1rem 0;
}
.modal-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #474747;
  line-height: 1.6;
  margin-top: 0px;
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  color: #0053fd;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.loan-calculator-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  margin-top: 0.5rem;
  align-items: end;
}
@media (max-width: 768px) {
  .loan-calculator-form {
    grid-template-columns: 1fr;
  }
}
.loan-calculator-form .form-group {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.loan-calculator-form .form-group:nth-child(3) {
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  .loan-calculator-form .form-group:nth-child(3) {
    justify-content: flex-start;
  }
}
.loan-calculator-form label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
}
.loan-calculator-form input[type='date'],
.loan-calculator-form input[type='text'] {
  width: 100%;
  padding: 0.75rem;
  border: 0px solid;
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  border-radius: 0;
  font-size: 14px;
  color: #0a0a0a;
  font-family: inherit;
  box-sizing: border-box;
  cursor: pointer;
}
.loan-calculator-form input[type='date']:focus,
.loan-calculator-form input[type='text']:focus {
  outline: none;
  border-bottom-color: #0053fd;
}
.input-wrapper {
  position: relative;
  display: block;
  width: 100%;
}
.currency-symbol {
  position: absolute;
  left: 0px;
  top: 48%;
  transform: translateY(-50%);
  color: #0a0a0a;
  font-weight: 500;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}
.input-wrapper input {
  padding-left: 32px;
  width: 100%;
  box-sizing: border-box;
}
.btn-calculate-submit {
  padding: 0.75rem 1.5rem;
  font-size: 15px;
  font-weight: 600;
  margin-top: 0;
  white-space: nowrap;
}
.calculator-results {
  margin-top: 2rem;
}
.days-container {
  background-color: #f9f9f9;
  padding: 24px;
  border-radius: 6px;
  text-align: center;
  margin-bottom: 2rem;
}
.days-container p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #0a0a0a;
}
.tab-content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) {
  .tab-content-container {
    grid-template-columns: 1fr;
  }
}
.toggle-button {
  text-align: center;
  padding: 1rem !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border: 1px solid #e5e5e5 !important;
  border-bottom: none !important;
  background-color: #f9f9f9 !important;
  margin-bottom: 0;
}
.toggle-button-active {
  border: 2px solid #0053fd !important;
  box-shadow: 0px 4px 4px 0px #00000040;
  background-color: #f0f3ff !important;
}
.toggle-button img {
  max-width: 100%;
  height: auto;
}
.toggle-button p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
}
.content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.content-active {
  border: 2px solid #0053fd;
}
.loan-duration {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  background-color: #f8f8f6;
  border-radius: 6px;
  padding: 24px;
  text-align: center;
}
.loan-duration p {
  font-family: 'Inter', sans-serif;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #0a0a0a;
}
.loan-results-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) {
  .loan-results-container {
    grid-template-columns: 1fr;
  }
}
.loan-results-column {
  display: flex;
  flex-direction: column;
}
.loan-results-header {
  text-align: center;
  margin-bottom: 1.5rem;
  background-color: #f8f8f6;
  border: 1px solid #e5e5e5;
  border-bottom: none !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.loan-results-header.ezifin {
  border: 2px solid #2d68f7;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.251);
}
.loan-results-header.others p {
  color: rgba(0, 0, 0, 0.26);
  font-weight: 400;
}
.loan-results-header img {
  max-width: 100%;
  height: auto;
}
.loan-results-header p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
}
.loan-results-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#ezifin-results {
  border: 2px solid #2d68f7;
}
.loan-info-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.loan-info-item:first-child {
  padding-top: 0;
}
.loan-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.loan-info-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.loan-info-title {
  font-size: 14px;
  font-weight: 400;
  color: #474747;
  margin: 0 0 0.5rem 0;
}
.loan-info-amount {
  font-size: 20px;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0;
}
.loan-info-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 1rem;
}
.loan-results-footer {
  line-height: 12px;
}
.loan-results-footer p {
  font-family: 'Inter', sans-serif;
  margin: 0.5rem 0;
  font-size: 12px;
  font-weight: 400;
  color: #474747;
  line-height: 1rem;
}
.results-info {
  text-align: center;
  color: #474747;
  font-size: 14px;
}
.text-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.steps-grid,
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 2rem;
}
.card-why {
  padding: 32px;
  border-radius: 16px;
  min-height: 28rem;
}
.card-why.card-purple {
  background: #775ccf26;
}
.card-why.card-green {
  background: #5fd08f26;
}
.card-why.card-yellow {
  background: #fe994e26;
}
.card-why h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 1rem 0 0 0;
  line-height: normal;
}
.card-why p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  margin-top: 1rem;
  color: #474747;
}
.card-why img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}
.card-item {
  padding: 8px;
  border-radius: 24px;
  border: 1px solid #e5e5e5;
  background: white;
  text-align: center;
}
.card-content {
  padding: 8px;
  border-radius: 24px;
  border: 1px solid #e5e5e5;
}
.card-content .card-inner {
  padding: 24px;
}
.card-content h3 {
  font-size: 20px;
  color: #0a0a0a;
  text-align: left;
  font-weight: 600;
  margin: 0;
}
.card-content p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #474747;
  margin-top: 1rem;
  text-align: left;
  line-height: 1.6;
}
.card-content img {
  width: 100%;
  height: 280px;
}
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
/* Animations */
@keyframes handMove {
  0% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(0.26vw, -0.677vw);
  }
  60% {
    transform: translate(0.26vw, -0.677vw);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes blinkMove {
  0% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(-0.26vw, -0.677vw);
  }
  60% {
    transform: translate(-0.26vw, -0.677vw);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes blinkSecondMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(0.26vw, 1.198vw) scale(1.1);
  }
  60% {
    transform: translate(0.26vw, 1.198vw) scale(1.1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes paperMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(-0.26vw, -0.677vw) scale(1.1);
  }
  60% {
    transform: translate(-0.26vw, -0.677vw) scale(1.1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes warningMove {
  0% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(0.26vw, 1.198vw) scale(1.1);
  }
  60% {
    transform: translate(0.26vw, 1.198vw) scale(1.1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes dollarMove {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes halfTextMove {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fullTextMove {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Steps Grid */
.steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
}
.steps-grid-outer {
  display: grid;
  justify-items: center;
  width: 100%;
}
.steps-grid-outer:first-child {
  padding-bottom: 50px;
}
.steps-grid-outer.step-3 {
  padding-top: 39px;
}
.steps-grid-outer:nth-child(4) {
  margin-top: -30px;
}
.steps-grid-outer:nth-child(4) .grid-container {
  padding-top: 100px;
}
#how-it-works .section-heading {
  margin-bottom: 60px;
}
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 51vw;
  height: 15rem;
  gap: 2rem;
  position: relative;
  align-items: center;
}
.grid-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  position: relative;
  z-index: 3;
}
.grid-item .step-content,
.grid-item.thumbnail {
  position: relative;
  top: -50px;
}
.border-box {
  pointer-events: none;
}
.step-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f2f6ff;
  color: #0053fd;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  top: -5px;
  left: -2px;
  flex-shrink: 0;
}
.gridding-image {
  max-width: 100%;
  height: auto;
}
@media (min-width: 1550px) {
  .steps-grid-outer .grid-item.wrap-content {
    top: -2vw !important;
  }
  .carousel-track .product-card {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media (max-width: 768px) {
  .grid-container {
    width: 100%;
    grid-template-columns: 1fr;
    height: auto;
    gap: 1rem;
    padding: 0 1rem;
  }
  .grid-item {
    grid-column: 1;
    text-align: left;
  }
  .top-banner-btn {
    min-height: 50px;
  }
  .border-box {
    display: none !important;
  }
  .steps-wrapper {
    margin-left: 30px;
  }
  .steps-grid-outer {
    padding: 40px 0 0;
  }
  .steps-grid-outer:first-child {
    padding-bottom: 0px;
  }
  .steps-grid-outer:nth-child(2) {
    margin-left: -13px;
  }
  .steps-grid-outer:nth-child(4) {
    margin-top: 0;
    padding-top: 0;
    margin-left: -13px;
  }
  .steps-grid-outer:nth-child(4) .grid-container {
    padding-top: 0;
  }
  .wrap-thumbnail {
    display: none;
  }
}
.feature-card img {
  width: 100%;
  margin-bottom: 16px;
  min-height: 200px;
  object-fit: contain;
}
.section-why-us {
  padding: 5.469vw 7.813vw;
  border-bottom: 1px solid rgb(243, 243, 245);
}
.why-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.callout {
  padding: 1.969vw 7.813vw 2.344vw;
  margin-top: 24px;
  position: relative;
  overflow: visible;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.callout-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.callout-visual img,
.callout-visual video,
.callout-visual .callout-submit {
  position: absolute;
  opacity: 1;
  transition:
    left 1s ease-in-out,
    margin-top 1s ease-in-out;
}
.callout-coin {
  left: 27vw;
  top: 50%;
  width: 160px;
  margin-top: 0;
  transform: translateY(-50%);
  transition-delay: 0.1s;
}
.callout-submit {
  left: 45vw;
  top: 50%;
  width: 160px;
  margin-top: 0;
  transform: translateY(-50%);
  transition-delay: 0.2s;
}
.callout-submit.card {
  width: 160px;
  height: 160px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1450ff;
  transition: background-color 0.5s ease;
}
.callout-submit .badge {
  background: #000;
  color: #fff;
  padding: 18px 34px;
  border-radius: 999px;
  font-size: 17px;
  font-family: Arial, sans-serif;
  font-weight: 500;
}
.callout-person {
  left: 49vw;
  top: 50%;
  width: 220px;
  margin-top: 0;
  transform: translateY(-50%);
  transition-delay: 0.3s;
  height: 220px;
  border-radius: 40px;
  object-fit: cover;
}
.callout-calculator {
  left: 56vw;
  top: 50%;
  width: 180px;
  margin-top: 0;
  transform: translateY(-50%);
  transition-delay: 0.4s;
}
.callout-applicant {
  left: 67vw;
  top: 50%;
  width: 180px;
  margin-top: 0;
  transform: translateY(-50%);
  transition-delay: 0.5s;
  height: 180px;
  border-radius: 40px;
  object-fit: cover;
}
.callout.visible .callout-coin {
  left: 7vw;
  margin-top: -9vw;
}
.callout.visible .callout-submit {
  left: 45vw;
  margin-top: -22vw;
}
.callout.visible .callout-person {
  left: 20vw;
  margin-top: 12vw;
}
.callout.visible .callout-calculator {
  left: 67vw;
  margin-top: 13vw;
}
.callout.visible .callout-applicant {
  left: 78vw;
  margin-top: -10vw;
}
.callout-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.callout-copy {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 855px;
  z-index: 1;
}
.callout-copy h2 {
  font-size: 72px;
  font-weight: 600;
  line-height: 1.2;
}
.callout-cta {
  position: relative;
  z-index: 1;
}
.callout-cta h3 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  line-height: normal;
}
.callout-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: normal;
  margin: 1rem 0 0 0;
  line-height: 1.5;
}
.callout-cta a {
  display: inline-flex;
  color: #2d68f7;
  align-items: center;
  padding: 0;
}
.callout-cta .arrow {
  font-size: 12px;
  content: url('../images/icons/arrow-right-blue.svg');
  width: 24px;
  height: 24px;
}
.callout-cta a:hover {
  box-shadow: none;
}
.faq-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem auto;
}
.faq-tab {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #0a0a0a;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.faq-tab:hover {
  border-color: #0053fd;
}
.faq-tab.active {
  background: var(--white);
  border: 1px solid var(--border);
}
.faq-category {
  display: grid;
  gap: 12px;
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 18px 20px;
  overflow: hidden;
}
.faq-question {
  font-family: 'Sofia Pro';
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: 0;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  padding: 0;
  gap: 1rem;
}
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #000;
  fill: currentColor;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  font-family: 'Inter', sans-serif;
  color: #000000de;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer {
  max-height: 1000px;
  opacity: 1;
}
.footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}
.footer-panel {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 32px;
  padding: 40px 7.813vw;
  align-items: start;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}
.footer-copy {
  max-width: 650px;
}
.footer-copy h2 {
  font-size: 48px;
  color: #0a0a0a;
  line-height: 1.2;
  font-weight: 600;
  margin: 40px 0 0 0;
  padding: 0;
}
.footer-copy p {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  margin-top: 16px;
  color: #0a0a0a;
  font-weight: normal;
  line-height: 30px;
}
.footer-actions {
  width: 100%;
  text-align: center;
  display: grid;
  gap: 16px;
  align-content: center;
  margin: auto 0;
}
.footer-actions .btn {
  min-height: 56px;
}
.footer-bottom {
  display: flex;
  gap: 32px;
  background: #0053fd;
  color: white;
  padding: 72px 7.813vw 0 7.813vw;
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.footer-bottom-left {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 0;
  border-bottom: 0;
  padding: 72px 0 0 0;
}
.footer-bottom-left .wrap-menu-footer-tnc {
  list-style: none;
  display: inline-flex;
  padding-left: 0;
  gap: 2rem;
}
.footer-bottom-left .wrap-menu-footer {
  list-style: none;
  display: inline-grid;
  padding-left: 0;
  margin: 0;
  gap: 1rem;
}
.footer-links-section {
  display: flex;
  gap: 4rem;
  padding: 0 2rem;
}
.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-links-column h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  color: white;
}
.footer-links-column a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  cursor: pointer;
}
.footer-links-column a:hover {
  text-decoration: underline;
}
.footer-legal-section {
  display: flex;
  align-items: center;
  height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 2rem;
  gap: 2rem;
  justify-content: space-between;
}
.footer-legal-section a {
  font-size: 15px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  cursor: pointer;
}
.footer-legal-section a:hover {
  text-decoration: underline;
}
.footer-legal-section p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
.footer-linkedin {
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}
.footer-links {
  text-decoration: none;
}
.footer-gif-container {
  height: 11.6vw;
  display: grid;
  overflow: hidden;
  padding: 0 2rem;
}
.footer-gif-container img {
  position: relative;
  width: 32.292vw;
  top: -11vw;
  left: 3.7vw;
  transform: scale(1.4);
}
.footer-bottom-right {
  width: 35%;
  display: flex;
  align-items: flex-start;
  padding-top: 5rem;
}
.footer-bottom-right img {
  width: 388px;
  position: relative;
  margin-top: 5rem;
  margin-left: 4rem;
}
.char {
  opacity: 0;
  display: inline-block;
}
.char.visible {
  opacity: 1;
  animation: fadeIn 0.4s ease-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(0.3em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.typing-line {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
  will-change: opacity;
}
.typing-line.fade-in {
  opacity: 1;
}
.typing-line.fade-out {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.6, 1);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Page Styles */
.contact-hero {
  background-color: #e5eeff;
  padding: 5.625vw;
}
.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 538px;
  gap: 3rem;
  align-items: flex-start;
}
.contact-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #848484;
  font-weight: 600;
  margin-bottom: 1rem;
}
.contact-title {
  font-size: 72px;
  color: #0a0a0a;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 2rem;
  margin-top: 0;
}
.contact-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #474747;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.info-card-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.info-card-item {
  background: #d6e1f6;
  padding: 1.5rem;
  border-radius: 16px;
}
.info-card-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
}
.info-card-item .info-detail {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #474747;
  line-height: 1.5;
  margin-top: 0;
}
.info-card-item a {
  color: #0053fd;
  text-decoration: none;
  font-weight: 500;
}
.info-card-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}
.contact-form-wrap {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0px 24px 32px 0px rgba(0, 0, 0, 0.1);
}
.contact-form-wrap h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 0;
  margin-top: 0;
}
.contact-form-wrap .sub-title {
  font-family: 'Inter', sans-serif;
  margin-top: 0;
}
.contact-form-wrap p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #474747;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form .form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 16px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-family: 'Sofia Pro', sans-serif;
  font-weight: 400;
  color: #9f9f9f;
}
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  resize: vertical;
}
.contact-form .phone-input,
.early-access-form .phone-input {
  display: flex;
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.contact-form .phone-input .wpcf7-form-control-wrap,
.early-access-form .phone-input .wpcf7-form-control-wrap {
  width: 100%;
}
.contact-form .phone-prefix,
.early-access-form .phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-right: 1px solid #e5e5e5;
  background: #f3f3f5;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
}
.contact-form .phone-prefix img {
  width: 20px;
  height: 16px;
  border-radius: 4px;
}
.early-access-form .phone-prefix .au-flag,
.contact-form .phone-prefix .au-flag {
  content: url('../images/au-rectangle.png');
  width: 20px;
  height: 16px;
  border-radius: 4px;
}
.contact-form .phone-prefix .arrow,
.early-access-form .phone-prefix .arrow {
  font-size: 10px;
  color: #666;
}
.contact-form .phone-input input,
.early-access-form .phone-input input {
  border: none !important;
  border-radius: 0 !important;
  flex: 1;
  padding: 0.75rem;
  width: 100%;
}
.contact-form .phone-input input:focus,
.early-access-form .phone-input input:focus {
  outline: none;
}
.contact-form-wrap p {
  font-size: 14px;
  color: #474747;
  margin-top: 1rem;
  line-height: 1.6;
}
.contact-form-wrap .term-text a {
  color: #0a0a0a;
  font-weight: 500;
  text-decoration: underline;
}
.contact-map {
  padding: 5.625vw 3.125vw;
}
.contact-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact-map-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-map-image {
  width: 100%;
  border-radius: 16px;
  cursor: pointer;
  max-width: 100%;
}
.contact-map-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-map-box {
  margin-left: 2rem;
}
.breadcrumb-hq {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #848484;
  font-weight: 600;
  margin: 0 0 1rem 0;
}
.title-hq {
  font-size: 48px;
  color: #0a0a0a;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 1rem 0;
}
.desc-hq {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #474747;
  line-height: 1.6;
  margin: 0;
}
/* FAQ Section Styles */
.contact-faqs {
  background-color: #f8f8f6;
  padding: 5.625vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}
.contact-faq-title {
  font-size: 48px;
  color: #0a0a0a;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1rem;
}
.faq-header {
  font-family: 'Sofia Pro', sans-serif;
  width: 100%;
  padding: 0;
  background: #fff;
  border: 0px;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-container {
  display: grid;
  gap: 12px;
}
.faq-icon.rotated {
  transform: rotate(180deg);
}
.faq-content {
  font-family: 'Inter', sans-serif;
  display: none;
  padding-top: 1rem;
  border-radius: 8px;
  font-size: 16px;
  color: #474747;
  line-height: 1.6;
}
/* CTA Section Styles */
.contact-cta {
  padding: 5.625vw;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  background-color: #e7f8ee;
}
.contact-cta-title {
  font-size: 48px;
  color: #0a0a0a;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1rem;
}
.contact-cta-description {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #474747;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.btn-cta {
  padding: 0.75rem 1.5rem;
  font-size: 16px;
}
.contact-cta-image {
  text-align: center;
}
.contact-cta-image img {
  width: 100%;
  max-width: 410px;
}

@media (max-width: 1320px) {
  .hero-visual {
    display: none;
  }
  .hero-card {
    grid-template-columns: 1fr;
  }
  .hero-text {
    max-width: 700px;
  }
}

@media (max-width: 900px) {
  .hero-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  .hero-visual {
    min-height: 280px;
    display: none;
  }
  .cards-grid,
  .why-grid,
  .mega-menu-grid,
  .mega-steps,
  .footer-bottom {
    flex-direction: column;
    gap: 32px;
  }
  .eyebrow-home {
    font-size: 32px;
  }
  .hero-copy h1 {
    font-size: 32px;
    min-height: 76px;
  }
  .hero-card {
    min-height: 300px;
  }
  .footer-bottom {
    padding: 0px 7.813vw;
  }
  .footer-bottom-left {
    width: 100%;
    padding-top: 40px;
    border-bottom: none;
    border-top: none;
  }
  .footer-bottom-left .wrap-menu-footer-tnc {
    display: inline-grid;
    gap: 1rem;
  }
  .footer-links-section {
    flex-direction: column;
    gap: 2rem;
    padding: 16px !important;
  }
  .footer-links-column {
    gap: 0.75rem;
  }
  .footer-legal-section {
    flex-direction: column;
    gap: 1rem;
    height: auto;
    padding: 16px !important;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer-legal-section p {
    font-size: 13px;
    line-height: 1.6;
  }
  .footer-linkedin {
    margin-left: 0 !important;
    margin-top: 1rem;
  }
  .footer-gif-container {
    padding: 1rem 0;
    margin-top: 1rem;
    height: 42px;
    display: block;
    overflow: visible;
  }
  .footer-gif-container img {
    width: 160px;
    top: -135px;
    left: auto;
    transform: scale(1);
  }
  .footer-bottom-right {
    width: 100%;
    display: none;
  }
  /* About page divider image - mobile */
  .about-divider {
    transform: scale(1.5) !important;
    left: 18.5vw !important;
    top: -9.5vw !important;
  }
  .footer-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-copy {
    width: 100%;
  }
  .footer-actions {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .section-heading h2,
  .callout-copy h2,
  .footer h2 {
    font-size: 38px;
  }
  .secondary-menu {
    /* display: flex; */
    display: block;
    padding: 12px 16px;
  }
  .secondary-menu a {
    font-size: 13px;
  }
  .secondary-menu-links a:not(:last-child),
  .secondary-menu .wrap-secondary-menu {
    /* display: none; */
    display: inline-flex;
  }
  .secondary-menu .wrap-secondary-menu {
    margin-bottom: 0;
    margin-top: 10px;
  }
  .secondary-menu-toggle {
    /* display: inline-flex; */
    display: none;
    align-items: center;
    justify-content: center;
  }
  .carousel-arrow img {
    width: 16px;
    height: 16px;
  }
  .site-header {
    padding: 16px 16px 18px;
  }
  .top-nav,
  .site-header .nav-link,
  .product-menu-toggle {
    display: none;
  }
  .site-header .mobile-drawer .nav-link {
    display: block;
  }
  .site-header .mobile-drawer .wrap-menu {
    display: inline-block;
  }
  .secondary-mobile-drawer .wrap-secondary-menu {
    list-style: none;
    padding-left: 0;
    gap: 16px;
    display: flex;
    flex-direction: column;
  }
  .wrap-menu .current-menu-item .nav-link {
    border-bottom: none;
  }
  .mobile-nav a {
    border-bottom: none;
  }
  .secondary-mobile-drawer .wrap-secondary-menu li {
    display: inline-flex;
  }
  .menu-toggle {
    display: inline-block;
  }
  .hero-card {
    padding: 24px;
  }
  .hero-bg {
    width: 220px;
    right: 1rem;
    top: -1rem;
  }
  .hero-card.visible .hero-bg {
    top: -18rem;
    width: 100%;
    right: 0;
  }
  .hero-person {
    width: 220px;
    right: 0;
    top: 26rem;
  }
  .hero-card.visible .hero-person {
    top: -1rem;
    width: 411px;
    height: 454px;
    max-width: none;
    right: -2rem;
  }
  .popup-1 {
    width: 230px;
  }
  .popup-2 {
    width: 180px;
  }
  .popup-3 {
    width: 200px;
  }
  .hero-card.visible .popup-1 {
    top: 12rem;
  }
  .hero-card.visible .popup-2 {
    top: 16rem;
  }
  .hero-card.visible .popup-3 {
    top: 20rem;
  }
  .popup {
    top: 27rem;
  }
  .section-alt {
    padding: 48px 18px;
  }
  .products-section {
    padding: 48px 18px;
  }
  .products-header {
    flex-direction: column;
    gap: 2rem;
  }
  .products-left {
    width: 100%;
  }
  .products-left h2 {
    font-size: 28px;
  }
  .products-left p {
    font-size: 16px;
  }
  .products-right {
    width: 100%;
    justify-content: flex-start;
  }
  .product-card {
    min-height: 700px;
    padding: 2rem;
  }
  .product-card h2 {
    font-size: 32px;
    margin-top: 1rem;
  }
  .product-subtitle {
    font-size: 16px;
  }
  .product-specs {
    flex-wrap: wrap;
  }
  .spec-item {
    padding-right: 1rem !important;
    border-right: none !important;
  }
  .spec-item:last-child {
    padding-left: 0rem;
  }
  .product-checklist {
    max-width: 100%;
  }
  .product-buttons {
    flex-wrap: wrap;
  }
  .btn {
    font-size: 14px;
    height: 36px;
  }
  .carousel-shell {
    width: 100%;
  }
  .callout-copy h2 {
    font-size: 32px;
  }
  .callout-copy {
    min-height: 550px;
  }
  .callout-coin {
    width: 100px;
  }
  .callout.visible .callout-coin {
    margin-top: -55vw;
    left: 0vw;
  }
  .callout-submit {
    width: 100px;
  }
  .callout-submit.card {
    border-radius: 20px;
  }
  .callout.visible .callout-submit {
    margin-top: -60vw !important;
    left: 35vw;
  }
  .callout-submit.card {
    width: 120px;
    height: 120px;
  }
  .callout-submit .badge {
    padding: 16px;
  }
  .callout-person {
    width: 120px;
    height: 120px;
    border-radius: 20px;
  }
  .callout.visible .callout-person {
    left: 12vw;
    margin-top: 12vw !important;
  }
  .callout-calculator {
    width: 110px;
    margin-top: 13vw !important;
  }
  .callout.visible .callout-calculator {
    left: 58vw;
  }
  .callout-applicant {
    width: 90px;
    height: 90px;
    border-radius: 20px;
  }
  .callout.visible .callout-applicant {
    left: 72vw;
    margin-top: -53vw;
  }
  .footer-copy h2 {
    font-size: 32px;
  }
}

/* About Page Styles */
.about-hero {
  padding: 5.625vw 3.125vw;
  text-align: center;
  background: white;
}
.about-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #848484;
  font-weight: 600;
  margin: 0;
}
.about-title {
  font-size: 72px;
  color: #0a0a0a;
  font-weight: 600;
  line-height: 1.2;
  margin: 2rem 0 1rem 0;
}
.australia-text {
  font-size: 72px;
  background-image: url('../images/australia-flag.png');
  background-size: cover;
  background-position: center;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.about-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #474747;
  line-height: 30px;
  margin: 1rem 0 2rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.about-lottie {
  width: 100%;
  max-width: 75vw;
  margin: 2rem auto 0;
}
.about-section {
  padding: 5.625vw 3.125vw;
  background: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.about-grid-reverse {
  grid-template-columns: 1fr 1fr;
}
.about-grid-left,
.about-grid-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-container {
  max-width: 31.25rem;
  max-height: 450px;
  overflow: hidden;
  border-radius: 24px;
  height: 450px;
}
.about-image {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  height: 100%;
  max-width: 600px;
}
.about-content {
  padding: 0 2rem;
}
.divider-about {
  overflow: hidden;
}
.about-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.about-header h2 {
  font-size: 48px;
  color: #0a0a0a;
  font-weight: 600;
  margin: 0;
  line-height: 72px;
}
.about-header img {
  width: 80px;
  height: auto;
}
.about-text {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #474747;
  line-height: 30px;
  margin: 0;
  max-width: 600px;
}
.about-lottie {
  width: 100%;
  max-width: 75vw;
  margin: 2rem auto 0;
  border-radius: 24px;
  background: #f2f6ff;
}
.about-title-medium {
  font-size: 48px;
  color: #0a0a0a;
  font-weight: 600;
  line-height: 72px;
  margin: 0 0 1rem 0;
  display: inline-block;
}
.pig-badge {
  background: #e0d0da33;
  padding: 6px 1.375rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
}
.pig-badge img {
  height: 44px;
  width: auto;
}
.pig-badge .pig-icon {
  content: url('../images/pig.svg');
  height: 44px;
}
.about-values {
  padding: 5.625vw 3.125vw;
  background: white;
  text-align: center;
}
.about-values-header {
  margin-bottom: 2rem;
}
.about-values-header h2 {
  font-size: 48px;
  color: #0a0a0a;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.about-divider {
  width: 100%;
  display: block;
  transform: scale(1.11);
  position: relative;
  left: 1.5vw;
  top: -2.5vw;
}
.blue-text {
  color: #0053fd;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value-card {
  border-radius: 16px;
  padding: 1.875vw;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}
.value-card-orange {
  background: #fe994e26;
}
.value-card-purple {
  background: #775ccf26;
}
.value-card-gray {
  background: #e5e5e5;
}
.value-card-green {
  background: #5fd08f26;
}
.value-card-content h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  color: #0a0a0a;
  margin: 0 0 1rem 0;
}
.value-card-content p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  color: #474747;
  margin: 0;
}
.value-card-icon {
  margin: 2rem 2rem 0 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
}
.value-card-icon img {
  width: 80%;
  height: auto;
}
@media (max-width: 900px) {
  .about-title {
    font-size: 32px;
  }
  .australia-text {
    font-size: 32px;
  }
  .about-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  .about-lottie {
    max-width: 100%;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-grid-reverse {
    grid-template-columns: 1fr;
  }
  .about-content {
    padding: 0;
  }
  .about-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .about-header h2 {
    font-size: 32px;
    line-height: normal;
  }
  .about-title-medium {
    font-size: 32px;
    line-height: normal;
    margin-bottom: 1rem;
  }
  .about-image-container {
    max-width: 100%;
  }
  .about-text {
    font-size: 16px;
    line-height: 24px;
  }
  .about-mission .about-grid-left,
  .about-difference .about-grid-left {
    order: 2;
  }
  .about-mission .about-grid-right,
  .about-difference .about-grid-right {
    order: 1;
  }
  .about-values-header h2 {
    font-size: 32px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .value-card {
    padding: 1.5rem;
    min-height: auto;
  }
  .value-card-icon {
    margin: 2rem 0 0 0;
  }
  .value-card-content h3 {
    font-size: 18px;
  }
  .value-card-content p {
    font-size: 14px;
  }
  .carousel-arrow {
    width: 32px;
    height: 32px;
    position: absolute;
  }
  .carousel-arrow-prev {
    left: -10px;
  }
  .carousel-arrow-next {
    right: -10px;
  }
  .carousel-container {
    width: 100%;
  }
  .carousel-track {
    gap: 0rem;
  }
  .card-content img {
    height: 150px;
  }
  .card-content .card-inner {
    padding: 12px;
  }
  .product-card {
    flex: 0 0 100%;
  }
  #how-it-works {
    padding: 72px 16px;
  }
  .section-why-us {
    padding: 14vw 7vw;
  }
  .footer-visual {
    flex-direction: column;
    align-items: flex-start;
  }
  /* Contact Page Mobile Styles */
  .contact-form-wrap {
    padding: 24px;
  }
  .contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .info-card-contact {
    grid-template-columns: 1fr;
  }
  .contact-form .form-inner {
    grid-template-columns: 1fr;
  }
  .contact-map {
    padding: 2.5rem 1.25rem;
  }
  .contact-map-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-map-image-container {
    margin-bottom: 1rem;
  }
  .contact-map-content {
    margin-left: 0;
  }
  .contact-map-box {
    margin-left: 0;
    margin-top: 1rem;
  }
  .title-hq {
    font-size: 28px;
  }
  .contact-faqs {
    padding: 2.5rem 1.25rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-faq-title {
    font-size: 36px;
  }
  .contact-cta {
    padding: 2.5rem 1.25rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-cta-title {
    font-size: 36px;
  }
  .contact-hero,
  .faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-title {
    font-size: 36px;
  }
  .faq-container {
    grid-column: 1 / -1;
  }
  .callout-copy h2 {
    font-size: 34px;
  }
  .callout.visible .callout-submit {
    margin-top: -32vw;
  }
  .callout.visible .callout-person {
    margin-top: 20vw;
  }
  .callout.visible .callout-calculator {
    margin-top: 20vw;
  }
  .callout.visible .callout-applicant {
    left: 74vw;
  }
}

/* blog page */
.blog-page {
  background: #ffffff;
}
.blog-page .container {
  margin: 2.5vw;
  position: relative;
}
.blog-page .blog-main {
  margin: 2.5vw;
  margin-bottom: 8vw;
}
/* Hero */
.blog-page .blog-hero {
  background: #0840bf;
  border-radius: 24px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.blog-page .blog-hero-content {
  max-width: 550px;
}
.blog-page .blog-hero h1 {
  font-family: 'Sofia Pro', sans-serif;
  color: #fff;
  font-size: 72px;
  font-weight: 600;
  margin: 0 0 16px;
}
.blog-page .blog-hero p {
  font-family: 'Inter', sans-serif;
  color: #fff;
  line-height: 30px;
  font-size: 20px;
  margin: 0;
}
.blog-page .blog-hero-image img {
  width: 320px;
  max-width: 100%;
}
/* Filters */
.blog-page .blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.blog-page .filter-btn {
  font-family: 'Sofia Pro', sans-serif;
  padding: 10px 18px;
  border: 2px solid #e5e5e5;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  font-size: 17px;
}
.blog-page .filter-btn.active {
  background: #0b4cff;
  color: white;
  border-color: #0b4cff;
}
/* Cards */
.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-page .blog-grid .blog-link {
  cursor: pointer;
  text-decoration: none;
}
.blog-page .blog-card {
  transition: 0.3s ease;
}
/* .blog-page .blog-card:hover {
  transform: translateY(-6px);
} */
.blog-page .blog-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.blog-page .blog-card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.blog-page .blog-card-image .overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2)); */
}
.blog-page .blog-card-image h3 {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: white;
  font-size: 24px;
  line-height: 1.3;
  margin: 0;
  font-weight: 600;
}
.blog-page .blog-card-image .ezifin-logo {
  position: absolute;
  left: 20px;
  top: 20px;
  content: url('../images/ezifin-logo-white.svg');
  width: 115px;
}
.blog-page .blog-card-content {
  padding-top: 20px;
}
.blog-page .blog-card-content h4 {
  margin-bottom: 12px;
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #0a0a0a;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-page .blog-card-content p {
  font-family: 'Inter', sans-serif;
  color: #474747;
  line-height: 21px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  margin-top: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 42px;
}
.blog-page .blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0a0a0a;
  font-size: 15px;
}
.blog-page .blog-meta .sub-color {
  color: #474747;
  font-size: 13px;
}
.blog-page .author-icon {
  width: 34px;
  height: 34px;
  content: url('../images/ezifin-logo-small-blue.svg');
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Responsive */
/* @media (min-width: 1500px) {
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
} */
@media (max-width: 992px) {
  .blog-page .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-page .blog-hero {
    flex-direction: column;
    text-align: left;
  }
  .blog-page .blog-hero h1 {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .blog-page .blog-page {
    padding: 40px 0;
  }
  .blog-page .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-page .blog-hero {
    padding: 32px;
    padding-bottom: 0;
  }
  .blog-page .blog-hero h1 {
    font-size: 42px;
  }
  .blog-page .blog-hero p {
    font-size: 18px;
  }
  .blog-page .blog-card-content h4,
  .blog-page .blog-card-content p {
    min-height: auto;
  }
  .blog-page .blog-main {
    margin-bottom: 16vw;
  }
  .blog-detail-page .blog-main {
    margin: 10.5vw 2vw !important;
  }
}

/* blog detail page */
.blog-detail-page .container {
  margin: 2.5vw;
  position: relative;
}
.blog-detail-page .blog-hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.blog-detail-page .blog-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  object-position: center;
}
.blog-detail-page .blog-hero h1 {
  position: absolute;
  left: 100px;
  right: 100px;
  bottom: 50px;
  max-width: 1200px;
  color: white;
  font-size: 72px;
  line-height: 1;
  margin: 0;
  font-weight: 400;
}
.blog-detail-page .blog-main {
  margin: 2.5vw 10vw;
}
.blog-detail-page .blog-content {
  margin-bottom: 100px;
}
.blog-detail-page .blog-content .blog-meta {
  font-family: 'Inter', sans-serif;
}
.blog-detail-page p {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #474747;
}

@media (max-width: 992px) {
  .blog-detail-page .blog-hero h1 {
    font-size: 32px;
    line-height: 40px;
    left: 50px;
    right: 50px;
  }
}

.not-found-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5.625vw 3.125vw;
  max-width: 800px;
  margin: 0 auto;
}

.not-found-code {
  font-size: 120px;
  font-weight: 800;
  color: #0053fd;
  line-height: 1;
  margin: 0 0 1rem 0;
}

.not-found-title {
  font-size: 32px;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.3;
  margin: 0 0 1rem 0;
}

.not-found-desc {
  font-size: 18px;
  color: #474747;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  max-width: 480px;
}

.not-found-image {
  margin-top: 2.5rem;
  width: 100%;
  max-width: 480px;
}

.not-found-image img {
  width: 100%;
  border-radius: 8px;
  background: black;
}

@media (max-width: 900px) {
  .not-found-code {
    font-size: 80px;
  }

  .not-found-title {
    font-size: 22px;
  }

  .not-found-desc {
    font-size: 15px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.pagination a,
.pagination span {
  padding: 14px 16px;
  border-radius: 10px;
  background: #fff;
  font-weight: 500;
  color: #0a0a0a;
  text-decoration: none;
  font-size: 13px;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
.pagination .current {
  background: #184bff;
  color: #fff;
}
.pagination a:hover {
  background: #e5e7eb;
}

.contact-info {
  margin-top: 2rem;
  padding: 2rem;
  background: #f2f6ff;
  border-radius: 16px;
}
.terms-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 5.625vw 3.125vw;
}
.terms-meta {
  text-align: center;
  margin-bottom: 30px;
}
.terms-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 72px;
  text-align: center;
  margin-bottom: 1rem;
  color: #0a0a0a;
}
.terms-date {
  text-align: center;
  font-size: 20px;
  color: #474747;
  margin-top: -1rem;
  margin-bottom: 3rem;
}
