@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/barlow-400.ttf") format("truetype");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/barlow-500.ttf") format("truetype");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/barlow-600.ttf") format("truetype");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/barlow-700.ttf") format("truetype");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/barlow-800.ttf") format("truetype");
}

:root {
  --blue: #053a91;
  --blue-2: #1268db;
  --navy: #071327;
  --ink: #142238;
  --muted: #637188;
  --line: #dbe5f2;
  --yellow: #fbed08;
  --paper: #f6f9fd;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(7, 19, 39, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Barlow", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 229, 242, 0.82);
}

.brand img {
  width: 188px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #1a2a44;
  transition: color 180ms ease, background-color 180ms ease, translate 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: #edf4ff;
  color: var(--blue);
}

.main-nav .nav-cta,
.button.primary,
.premium-form button {
  background: linear-gradient(135deg, var(--yellow), #ffe96a);
  color: #061226;
  box-shadow: 0 14px 34px rgba(251, 237, 8, 0.28);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  align-items: end;
  gap: clamp(34px, 5vw, 76px);
  padding: clamp(80px, 12vw, 150px) clamp(20px, 5vw, 72px) 64px;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    radial-gradient(circle at 68% 36%, rgba(18, 104, 219, 0.34), transparent 31%),
    radial-gradient(circle at 88% 14%, rgba(251, 237, 8, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(7, 19, 39, 0) 70%, rgba(7, 19, 39, 0.78));
  z-index: -1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 39, 0.96), rgba(7, 19, 39, 0.68) 46%, rgba(4, 37, 88, 0.36)),
    linear-gradient(135deg, rgba(18, 104, 219, 0.26), transparent 48%, rgba(251, 237, 8, 0.1)),
    url("assets/img/otofilopet-anasayfa.jpg") center/cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark .eyebrow,
.accent .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3 {
  line-height: 1.06;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 800;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
}

h3 {
  font-size: 21px;
}

.hero-content p:not(.eyebrow) {
  margin: 22px 0 30px;
  max-width: 520px;
  color: #dce8f8;
  font-size: 24px;
  font-weight: 600;
}

.hero-actions,
.accent {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button,
.premium-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, box-shadow 220ms ease, translate 200ms ease;
}

.button:hover,
.premium-form button:hover,
.main-nav .nav-cta:hover,
.footer-cta > a:hover {
  translate: 0 -2px;
  box-shadow: 0 18px 38px rgba(7, 19, 39, 0.2);
}

.button.primary:hover,
.premium-form button:hover,
.main-nav .nav-cta:hover,
.footer-cta > a:hover {
  background: #fff16c;
  color: var(--navy);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.56);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-feature-stack {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: end;
  width: min(100%, 440px);
}

.hero-feature-intro {
  max-width: 370px;
  margin: 0 0 14px auto;
  padding: 18px 20px;
  border-right: 2px solid var(--yellow);
  background: linear-gradient(90deg, rgba(7, 19, 39, 0.16), rgba(7, 19, 39, 0.58));
  text-align: right;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.hero-feature-intro span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-feature-intro strong {
  display: block;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.25;
}

.hero-feature-list {
  display: grid;
  gap: 8px;
}

.hero-feature-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(7, 19, 39, 0.46), rgba(7, 31, 70, 0.62));
  backdrop-filter: blur(5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, border-color 180ms ease;
}

.hero-feature-item:last-child {
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-feature-item:hover {
  transform: translateX(6px);
  border-color: rgba(251, 237, 8, 0.34);
}

.hero-feature-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(251, 237, 8, 0.42);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}

.hero-feature-item h3 {
  margin: 1px 0 6px;
  color: var(--white);
  font-size: 18px;
}

.hero-feature-item p {
  margin: 0;
  color: #c9d8eb;
  font-size: 15px;
  line-height: 1.5;
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 122px) clamp(20px, 5vw, 72px);
}

.layered-section {
  isolation: isolate;
}

.process-section {
  z-index: 3;
  margin-top: -38px;
  padding-top: 88px;
  background: linear-gradient(180deg, rgba(246, 249, 253, 0.98), #ffffff 62%, #f2f7ff);
  clip-path: polygon(0 28px, 38% 0, 100% 24px, 100% 100%, 0 100%);
}

.intro-section {
  z-index: 2;
  background: linear-gradient(180deg, #f2f7ff, #ffffff 36%, #f7faff);
}

.intro-section > img {
  position: relative;
  z-index: 2;
  transform: translateY(46px);
  box-shadow: 0 34px 100px rgba(7, 19, 39, 0.2);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background: var(--white);
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.split p {
  color: var(--muted);
  font-size: 18px;
}

.rounded-image,
.empty-state img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dark {
  background:
    linear-gradient(145deg, #071327 0%, #092654 52%, #061226 100%);
  color: var(--white);
}

.section-head {
  max-width: 820px;
  margin-bottom: 36px;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.why-layout.text-only {
  grid-template-columns: 1fr;
  max-width: 1180px;
  margin: 0 auto;
}

.why-content .section-head {
  max-width: 780px;
  margin-bottom: 24px;
}

.dashboard-section {
  z-index: 4;
  padding-top: 112px;
  padding-bottom: 112px;
  clip-path: polygon(0 42px, 100% 0, 100% calc(100% - 34px), 28% 100%, 0 calc(100% - 18px));
}

.dashboard-shell {
  position: relative;
  z-index: 2;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.dashboard-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #dce8f8;
}

.dashboard-toolbar span {
  font-weight: 800;
}

.dashboard-toolbar strong {
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 13px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  padding: 12px 0 0;
}

.dashboard-panel {
  position: relative;
  min-height: 226px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  transition: border-color 220ms ease, box-shadow 220ms ease, translate 220ms ease;
}

.dashboard-panel-featured {
  grid-row: span 2;
  min-height: 466px;
  background:
    linear-gradient(155deg, rgba(18, 104, 219, 0.34), rgba(255, 255, 255, 0.055)),
    linear-gradient(180deg, transparent, rgba(7, 19, 39, 0.35));
}

.dashboard-panel:nth-child(4) {
  grid-column: 1 / -1;
  min-height: auto;
}

.dashboard-panel:nth-child(4) ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-panel-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard-panel-head > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(251, 237, 8, 0.15);
  color: var(--yellow);
  font-weight: 800;
}

.dashboard-panel h3 {
  font-size: 22px;
}

.dashboard-panel-head p {
  margin: 6px 0 0;
  color: #b9c9df;
  font-size: 14px;
}

.dashboard-panel ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.dashboard-panel li {
  position: relative;
  padding: 8px 12px 8px 30px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 7px;
  background: rgba(7, 19, 39, 0.28);
  color: #eef5ff;
  font-size: 15px;
  font-weight: 600;
}

.dashboard-panel li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 15px;
  width: 7px;
  height: 7px;
  background: var(--yellow);
  transform: rotate(45deg);
}

.steps,
.faq-grid,
.form-grid {
  display: grid;
  gap: 18px;
}

.steps {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5, 58, 145, 0.34), rgba(251, 237, 8, 0.8), transparent);
  z-index: 0;
}

.step-card,
.premium-form,
.policy {
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(7, 19, 39, 0.09);
}

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  color: var(--white);
  z-index: 1;
  border: 1px solid rgba(5, 58, 145, 0.14);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  transition: box-shadow 240ms ease, translate 240ms ease;
}

.step-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: brightness(0.72);
}

.step-card .step-copy {
  position: absolute;
  left: 24px;
}

.step-card .step-copy {
  right: 24px;
  bottom: 26px;
}

.step-card h3 {
  font-size: 28px;
}

.step-card:nth-child(2) {
  transform: translateY(34px);
}

.step-card:nth-child(3) {
  transform: translateY(12px);
}

.premium-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.premium-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 600;
}

.premium-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--yellow);
  box-shadow: 0 0 0 5px #fff9b7;
}

.advantages-section {
  z-index: 3;
  padding-top: 144px;
  background: linear-gradient(180deg, #eef5ff, #ffffff 44%, #f4f8fd);
}

.advantages-section > img {
  position: relative;
  z-index: 2;
  transform: translate(-18px, -42px);
  box-shadow: 26px 34px 0 rgba(5, 58, 145, 0.08), 0 36px 100px rgba(7, 19, 39, 0.2);
}

.accent {
  justify-content: space-between;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 58, 145, 0.94), rgba(7, 19, 39, 0.92)),
    url("assets/img/background_02.png") center/cover;
}

.join-section {
  z-index: 4;
  width: min(1180px, calc(100% - 40px));
  margin: -42px auto 0;
  padding: clamp(44px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 38px 100px rgba(7, 19, 39, 0.25);
}

.accent div {
  max-width: 840px;
}

.accent p:not(.eyebrow) {
  color: #dce8f8;
}

.faq-grid {
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 12px;
}

.faq-section {
  z-index: 2;
  padding-top: 130px;
  background:
    linear-gradient(180deg, #f4f8fd, #ffffff 34%, #edf4ff);
}

.faq-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(7, 19, 39, 0.07);
  transition: border-color 220ms ease, box-shadow 240ms ease, translate 220ms ease;
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.faq-question span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #edf4ff;
  color: var(--blue);
  font-weight: 800;
}

.faq-question strong {
  font-size: 19px;
  line-height: 1.25;
}

.faq-question::after {
  content: "+";
  justify-self: end;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.faq-card.open .faq-question::after {
  content: "-";
  background: var(--yellow);
  color: var(--navy);
}

.faq-answer {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1), padding 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.26s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-card.open .faq-answer {
  max-height: 360px;
  padding: 0 20px 20px;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}



.page-hero {
  min-height: 360px;
  display: grid;
  align-items: end;
  padding: 110px clamp(20px, 5vw, 72px) 56px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 19, 39, 0.92), rgba(5, 58, 145, 0.68)),
    url("assets/img/otofilopet-slide-1.jpg") center/cover;
}

.page-hero.compact {
  min-height: 290px;
}

.page-hero p {
  max-width: 700px;
  color: #dce8f8;
  font-size: 18px;
}

.premium-form {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 56px);
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

label span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
  background: #f9fbff;
}

.check {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.check input {
  width: 18px;
  height: 18px;
}

.check a,
.footer a {
  font-weight: 800;
}

.required {
  color: var(--muted);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 26px;
  margin: 16px 0 0;
  font-weight: 700;
}

.form-status.success {
  color: #13733d;
}

.form-status.error {
  color: #a52222;
}

.premium-form button:disabled {
  cursor: wait;
  opacity: 0.68;
  translate: 0 0;
}

.empty-state {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.empty-state img {
  max-height: 460px;
  object-fit: cover;
  margin-bottom: 32px;
}

.policy {
  max-width: 1100px;
  margin: 72px auto;
  padding: clamp(24px, 5vw, 56px);
  background: var(--white);
}

.policy h1,
.policy h2,
.policy h3,
.policy h4 {
  margin-top: 24px;
  color: var(--navy);
}

.policy p,
.policy li {
  color: #34445c;
}

.service-section {
  background:
    linear-gradient(180deg, #f3f8ff, #ffffff 36%, #edf4ff);
}

.service-lookup {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto 28px;
}

.service-copy,
.service-panel,
.service-results {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 80px rgba(7, 19, 39, 0.1);
}

.service-copy {
  padding: clamp(26px, 4vw, 46px);
}

.service-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.service-copy .button {
  margin-top: 10px;
  background: var(--navy);
  color: var(--white);
}

.service-panel {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.service-panel label {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.service-select {
  width: 100%;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #f9fbff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.service-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.service-status.error {
  color: #a52222;
}

.service-results {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 28px);
  overflow-x: auto;
}

.service-results h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(22px, 3vw, 30px);
}

.service-results p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.service-results table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  overflow: hidden;
  border-radius: 8px;
}

.service-results th {
  padding: 14px 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  text-align: left;
  text-transform: uppercase;
}

.service-results td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  color: #24344f;
  font-size: 14px;
  vertical-align: top;
}

.service-results tr:nth-child(even) td {
  background: #f8fbff;
}

.service-results a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  position: relative;
  overflow: visible;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 19, 39, 0.98), rgba(5, 58, 145, 0.91) 58%, rgba(3, 28, 76, 0.96)),
    url("assets/img/hero-services.png") center/cover;
}

.footer-glow {
  display: none;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.05fr) minmax(220px, 0.7fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(62px, 9vw, 108px) 20px 38px;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 24px;
  color: #dce8f8;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.12;
}

.footer-logo {
  width: 700px;
  filter: brightness(0) invert(1);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-actions a:first-child {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}

.footer-center {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  text-align: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.footer-mascot {
  max-height: 500px;
  margin: 0 auto;
}

.footer-note strong,
.footer-note span {
  display: block;
}

.footer-note strong {
  font-size: 20px;
  line-height: 1.2;
}

.footer-note span {
  max-width: 380px;
  margin-top: 8px;
  color: #dce8f8;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #eef5ff;
}

.footer-links a:hover,
.footer-actions a:hover {
  transform: translateY(-1px);
}

.footer-bottom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) 92px;
  align-items: center;
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #dce8f8;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #fff7a9;
  text-align: center;
}

.footer-badge {
  min-height: 103px;
  justify-self: end;
}

.footer {
  margin-top: 42px;
  background:
    linear-gradient(145deg, rgba(4, 16, 35, 0.99), rgba(5, 58, 145, 0.94) 58%, rgba(3, 28, 76, 0.98)),
    url("assets/img/hero-services.png") center/cover;
}

.footer-cta {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: -66px auto 0;
  padding: 28px 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(5, 58, 145, 0.98), rgba(7, 19, 39, 0.94)),
    url("assets/img/background_02.png") center/cover;
  box-shadow: 0 32px 90px rgba(7, 19, 39, 0.34);
}

.footer-cta span,
.footer-cta strong {
  display: block;
}

.footer-cta span {
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
}

.footer-cta strong {
  margin-top: 6px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

.footer-cta > a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--navy);
  white-space: nowrap;
  transition: background-color 200ms ease, box-shadow 220ms ease, translate 200ms ease;
}

.footer-inner {
  grid-template-columns: minmax(300px, 1.15fr) minmax(200px, 0.72fr) minmax(200px, 0.72fr);
  align-items: start;
  padding-top: 76px;
  padding-bottom: 58px;
}

.footer-brand {
  padding-right: clamp(10px, 4vw, 52px);
}

.footer-logo {
  width: min(500px, 100%);
  filter: none;
}

.footer-brand p {
  max-width: 440px;
  margin: 24px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.footer-note {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 390px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-note .footer-mascot {
  width: 301px;
  max-height: 132px;
  margin: 0;
  object-fit: contain;
}

.footer-note strong {
  font-size: 16px;
}

.footer-links {
  gap: 6px;
}

.footer-links > strong {
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 14px;
  text-transform: uppercase;
}

.footer-links a {
  min-height: auto;
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
  color: #dce8f8;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr) 80px;
  min-height: 92px;
}

.reveal {
  opacity: 0;
  translate: 0 18px;
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    translate 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    border-color 220ms ease,
    box-shadow 240ms ease,
    background-color 200ms ease;
  will-change: opacity, translate;
}

.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  will-change: auto;
}

@media (hover: hover) and (pointer: fine) {
  .step-card:hover,
  .dashboard-panel:hover,
  .faq-card:hover{
    translate: 0 -4px;
  }

  .step-card:hover {
    box-shadow: 0 26px 68px rgba(7, 19, 39, 0.17);
  }

  .dashboard-panel:hover {
    border-color: rgba(251, 237, 8, 0.28);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
  }

  .faq-card:hover{
    border-color: rgba(5, 58, 145, 0.22);
    box-shadow: 0 22px 52px rgba(7, 19, 39, 0.12);
  }

  .faq-question:hover {
    background: #f8fbff;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    translate: 0 0;
  }
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
    position: absolute;
    inset: 84px 20px auto 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .split,
  .split.reverse,
  .service-lookup {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .hero-feature-stack {
    width: 100%;
    max-width: 680px;
  }

  .why-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-panel-featured {
    grid-row: auto;
    min-height: auto;
  }

  .dashboard-panel:nth-child(4) {
    grid-column: auto;
  }

  .dashboard-panel:nth-child(4) ul {
    grid-template-columns: 1fr;
  }

  .steps{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps::before {
    display: none;
  }

  .step-card:nth-child(2),
  .step-card:nth-child(3) {
    transform: none;
  }

  .intro-section > img,
  .advantages-section > img {
    transform: none;
  }

  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-brand p,
  .footer-actions {
    margin-inline: auto;
    justify-content: center;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .footer-badge {
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 1150px;
  }

  .site-header {
    min-height: 74px;
  }

  .main-nav {
    inset-top: 74px;
  }

  .hero {
    min-height: 690px;
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .hero-feature-stack {
    padding: 0;
  }

  .hero-feature-item {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .hero-feature-number {
    width: 36px;
    height: 36px;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 20px;
  }

  .why-layout,
  .faq-grid,
  .steps,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .faq-question {
    grid-template-columns: 44px minmax(0, 1fr) 30px;
    padding-inline: 14px;
  }

  .faq-question strong {
    font-size: 16px;
  }

  .faq-answer {
    grid-template-columns: 1fr;
  }

  .dashboard-toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 14px;
  }

  .dashboard-panel {
    min-height: auto;
    padding: 18px;
  }

  .join-section {
    width: calc(100% - 24px);
  }

  .footer-cta {
    width: calc(100% - 24px);
    margin-top: -54px;
    padding: 24px 20px;
  }

  .footer-cta > a {
    width: 100%;
  }

  .hide-sm {
    display: none;
  }
}
.footer .footer-logo {
  width: min(640px, 100%) !important;
  max-width: 100%;
}
.footer-brand {
  max-width: 620px;
}
.footer-inner {
  grid-template-columns: minmax(420px, 1.4fr) 1fr 1fr !important;
}

.footer .footer-logo {
  width: 620px !important;
  max-width: 100% !important;
}
