:root {
  --pink: #f2147f;
  --pink-dark: #bd005c;
  --pink-soft: #fff0f7;
  --black: #070812;
  --black-2: #11131f;
  --white: #ffffff;
  --text: #181a24;
  --muted: #6b7280;
  --border: #ececf2;
  --shadow: 0 30px 90px rgba(7, 8, 18, 0.16);
  --pink-shadow: 0 22px 55px rgba(242, 20, 127, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo > span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pink), #ff5caf);
  color: white;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  box-shadow: var(--pink-shadow);
}

.logo h2 {
  color: var(--black);
  font-size: 28px;
  letter-spacing: -1px;
}

.logo h2 span {
  color: var(--pink);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-btn,
.main-btn,
.outline-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.35s;
}

.nav-btn,
.main-btn {
  background: linear-gradient(135deg, var(--pink), #ff5caf);
  color: white;
  box-shadow: var(--pink-shadow);
}

.nav-btn {
  padding: 13px 24px;
}

.nav-btn:hover,
.main-btn:hover,
.submit-btn:hover,
.finish-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(242, 20, 127, 0.42);
}

.hero {
  position: relative;
  padding: 86px 0;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(242, 20, 127, 0.13), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(242, 20, 127, 0.10), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fff5fa 45%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -16%;
  top: -20%;
  width: 56%;
  height: 130%;
  background: linear-gradient(160deg, var(--black), #151827);
  border-bottom-left-radius: 55%;
  transform: rotate(-4deg);
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.75;
  animation: floating 6s ease-in-out infinite;
}

.circle-one {
  width: 220px;
  height: 220px;
  background: rgba(242, 20, 127, 0.16);
  left: 7%;
  top: 15%;
}

.circle-two {
  width: 320px;
  height: 320px;
  background: rgba(242, 20, 127, 0.12);
  right: 18%;
  bottom: 8%;
  animation-delay: 1.2s;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 58px;
  align-items: center;
}

.badge,
.section-title span,
.form-top span {
  display: inline-block;
  background: var(--pink-soft);
  color: var(--pink);
  border: 1px solid rgba(242, 20, 127, 0.18);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -4px;
  color: var(--black);
  margin-bottom: 22px;
}

.hero-text p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 660px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.main-btn,
.outline-btn {
  min-height: 58px;
  padding: 0 30px;
}

.outline-btn {
  background: white;
  color: var(--black);
  border: 1px solid var(--border);
}

.outline-btn:hover {
  color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(7, 8, 18, 0.12);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 620px;
}

.trust-row div {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(7, 8, 18, 0.06);
  transition: 0.35s;
}

.trust-row div:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.trust-row strong {
  display: block;
  font-size: 24px;
  color: var(--pink);
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transition: 0.4s;
}

.form-card:hover {
  transform: translateY(-8px);
}

.form-top h3 {
  font-size: 30px;
  color: var(--black);
  margin-bottom: 8px;
}

.form-top p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #e5e7ef;
  background: #fbfbfd;
  padding: 15px;
  border-radius: 15px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

textarea {
  min-height: 118px;
  resize: none;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(242, 20, 127, 0.35);
}

input:focus,
select:focus,
textarea:focus {
  background: white;
  border-color: var(--pink);
  box-shadow: 0 0 0 5px rgba(242, 20, 127, 0.12);
}

.file-note {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

input[type="file"] {
  cursor: pointer;
  background: white;
}

.form-message {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  animation: messageSlide 0.35s ease both;
}

.form-message.success {
  display: block;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

.form-message.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.submit-btn {
  width: 100%;
  min-height: 58px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pink), #ff5caf);
  color: white;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--pink-shadow);
  transition: 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.loader {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,.45);
  border-top: 3px solid white;
  border-radius: 50%;
  display: none;
  animation: spin 0.8s linear infinite;
}

.submit-btn.loading .loader {
  display: inline-block;
}

.submit-btn.loading {
  opacity: 0.82;
  cursor: not-allowed;
}

.services,
.process {
  padding: 82px 0;
}

.services {
  background: var(--black);
  color: white;
}

.process {
  background: #fff8fc;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-title h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 14px;
}

.section-title p {
  color: #c9c9d3;
  line-height: 1.7;
}

.process .section-title p {
  color: var(--muted);
}

.service-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.process-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 28px;
  transition: 0.35s;
}

.service-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  font-weight: 900;
}

.service-card::after,
.process-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s;
}

.service-card:hover,
.process-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow);
}

.service-card:hover::after,
.process-card:hover::after {
  transform: scaleX(1);
}

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

.process-card {
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(7,8,18,0.06);
}

.process-card b {
  color: var(--pink);
  font-size: 15px;
}

.process-card h3 {
  margin: 14px 0 10px;
  font-size: 23px;
}

.process-card p {
  color: var(--muted);
  line-height: 1.7;
}

footer {
  background: #05060d;
  color: white;
  text-align: center;
  padding: 24px;
}

/* Success Page */
.success-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(242,20,127,.18), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(242,20,127,.13), transparent 30%),
    linear-gradient(135deg, #ffffff, #fff0f7);
  padding: 20px;
  overflow: hidden;
}

.success-box {
  position: relative;
  background: rgba(255,255,255,0.95);
  max-width: 620px;
  width: 100%;
  text-align: center;
  padding: 52px 34px;
  border-radius: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  animation: successPop 0.8s ease both;
}

.success-box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(242,20,127,.12);
  border-radius: 50%;
  top: -70px;
  right: -60px;
}

.success-icon {
  width: 92px;
  height: 92px;
  background: linear-gradient(135deg, var(--pink), #ff5caf);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 46px;
  font-weight: bold;
  margin: 0 auto 24px;
  box-shadow: var(--pink-shadow);
  animation: pulse 2s infinite;
}

.success-box h1 {
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--black);
}

.success-box p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.finish-btn {
  border: none;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), #ff5caf);
  color: white;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--pink-shadow);
  transition: 0.35s;
}

/* Animations */
.animate-left {
  animation: slideLeft 0.9s ease both;
}

.animate-right {
  animation: slideRight 0.9s ease both;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-45px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(45px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-22px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes successPop {
  from {
    opacity: 0;
    transform: translateY(35px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: var(--pink-shadow);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 25px 80px rgba(242, 20, 127, 0.48);
  }
}

/* Responsive */
@media (max-width: 1000px) {
  .hero::before {
    display: none;
  }

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

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

  .form-card {
    max-width: 650px;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 58px 0;
  }

  .hero-text h1 {
    letter-spacing: -2px;
  }

  .trust-row,
  .service-grid,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .main-btn,
  .outline-btn {
    width: 100%;
  }

  .hero-buttons {
    width: 100%;
  }

  .form-card {
    padding: 24px;
    border-radius: 26px;
  }
}
.price-summary {
  min-height: 76px;
  display: grid;
  gap: 8px;
  background: #fff8fc;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 15px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.price-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price-summary strong {
  color: var(--black);
  font-size: 13px;
}

.price-summary span {
  text-align: right;
  font-weight: 800;
}

.price-summary.ready {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.price-summary.error {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #991b1b;
}

.price-summary.loading {
  background: #f8fafc;
}

@media (max-width: 520px) {
  .price-summary div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .price-summary span {
    text-align: left;
  }
}
.file-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-upload-box {
  min-height: 92px;
  width: 100%;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px dashed rgba(242, 20, 127, 0.45);
  background: linear-gradient(180deg, #ffffff, #fff8fc);
  border-radius: 18px;
  padding: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.file-upload-box:hover,
.file-upload-box.dragging,
.file-upload-box.has-file {
  border-color: var(--pink);
  background: #fff0f7;
  box-shadow: 0 16px 38px rgba(242, 20, 127, 0.12);
}

.file-upload-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--black);
  color: white;
  font-size: 22px;
  flex-shrink: 0;
}

.file-upload-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.file-upload-copy strong,
.file-upload-copy small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-upload-copy strong {
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

.file-upload-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.file-upload-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

select#country {
  font-weight: 800;
}

@media (max-width: 520px) {
  .file-upload-box {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .file-upload-action {
    grid-column: 1 / -1;
    width: 100%;
  }

  .file-upload-icon {
    width: 46px;
    height: 46px;
  }
}
/* Form visibility and custom country picker polish */
.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(480px, 560px);
}

.form-card {
  width: 100%;
  border-radius: 24px;
  padding: 30px;
}

.hero-buttons a i,
.submit-btn i {
  margin-right: 8px;
}

.country-picker-group {
  position: relative;
  z-index: 30;
}

.country-picker {
  position: relative;
}

.country-picker-toggle {
  width: 100%;
  min-height: 52px;
  border: 1px solid #e5e7ef;
  background: #fbfbfd;
  padding: 12px 14px;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  color: var(--black);
  cursor: pointer;
  transition: 0.3s;
  font: inherit;
  text-align: left;
}

.country-picker.open .country-picker-toggle,
.country-picker-toggle:focus,
.country-picker-toggle:hover {
  background: white;
  border-color: var(--pink);
  box-shadow: 0 0 0 5px rgba(242, 20, 127, 0.12);
}

.country-selected-flag {
  width: 34px;
  height: 24px;
  border-radius: 6px;
  background: #eef2f7;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.country-selected-flag img,
.country-option img {
  width: 34px;
  height: 24px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(7, 8, 18, 0.08);
}

.country-selected-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.country-picker-menu {
  position: absolute;
  inset: calc(100% + 8px) 0 auto 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(7, 8, 18, 0.18);
  padding: 12px;
  display: none;
  z-index: 50;
}

.country-picker.open .country-picker-menu {
  display: block;
}

.country-search-wrap {
  height: 44px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e7ef;
  background: #fbfbfd;
  border-radius: 13px;
  padding: 0 12px;
  margin-bottom: 10px;
  color: var(--muted);
}

.country-search-wrap input {
  border: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
  min-height: 42px;
}

.country-search-wrap input:focus {
  box-shadow: none;
}

.country-list {
  max-height: 250px;
  overflow-y: auto;
  display: grid;
  gap: 6px;
}

.country-option {
  width: 100%;
  min-height: 44px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  border-radius: 12px;
  padding: 9px;
  cursor: pointer;
  color: var(--black);
  text-align: left;
  font-weight: 800;
}

.country-option:hover,
.country-option:focus {
  background: #fff0f7;
  outline: none;
}

.country-empty {
  padding: 14px;
  color: var(--muted);
  font-weight: 800;
}

.file-upload-box {
  border-style: solid;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 36px 0 58px;
  }

  .form-card {
    padding: 18px;
    border-radius: 20px;
  }

  input,
  select,
  textarea,
  .country-picker-toggle {
    font-size: 16px;
  }

  .country-picker-menu {
    position: fixed;
    inset: auto 14px 14px 14px;
    max-height: 70vh;
  }

  .country-list {
    max-height: 52vh;
  }
}
/* Final layout fixes */
@media (min-width: 1101px) {
  .hero {
    align-items: flex-start;
    padding-top: 110px;
  }

  .hero-grid {
    align-items: start;
  }

  .hero-text {
    padding-top: 8px;
  }

  .desktop-hero-details {
    display: grid;
  }
}

.desktop-hero-details {
  display: none;
  gap: 12px;
  margin-top: 26px;
  max-width: 640px;
}

.desktop-hero-details div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 12px 30px rgba(7, 8, 18, 0.06);
}

.desktop-hero-details i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--black);
  color: white;
}

.desktop-hero-details span {
  color: var(--black);
  font-weight: 800;
  line-height: 1.45;
}

.country-selected-flag i {
  color: var(--pink);
  font-size: 17px;
}
/* Desktop-only hero depth beside the application form */
.desktop-hero-extended {
  display: none;
}

@media (min-width: 1101px) {
  .hero-grid {
    align-items: stretch;
  }

  .hero-text {
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }

  .desktop-hero-extended {
    display: grid;
    gap: 14px;
    width: min(100%, 660px);
    margin-top: 28px;
  }

  .hero-info-panel,
  .hero-assurance-grid > div {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(7, 8, 18, 0.07);
    backdrop-filter: blur(14px);
  }

  .hero-info-panel {
    border-radius: 22px;
    padding: 18px;
  }

  .hero-info-heading {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
  }

  .hero-info-heading > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--black);
    color: white;
  }

  .hero-info-heading strong {
    display: block;
    color: var(--black);
    font-size: 18px;
    margin-bottom: 4px;
  }

  .hero-info-heading p {
    max-width: none;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-mini-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-mini-steps div {
    min-height: 86px;
    border-radius: 16px;
    background: #fff8fc;
    border: 1px solid rgba(242, 20, 127, 0.14);
    padding: 13px;
    display: grid;
    align-content: space-between;
  }

  .hero-mini-steps b {
    color: var(--pink);
    font-size: 13px;
  }

  .hero-mini-steps span {
    color: var(--black);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
  }

  .hero-assurance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-assurance-grid > div {
    min-height: 72px;
    border-radius: 18px;
    padding: 14px;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
  }

  .hero-assurance-grid i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--pink-soft);
    color: var(--pink);
  }

  .hero-assurance-grid span {
    color: var(--black);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
  }
}

@media (max-width: 1100px) {
  .desktop-hero-extended {
    display: none !important;
  }
}

/* SEO navigation, landing pages, and footer */
.logo-link {
  text-decoration: none;
  color: inherit;
}

@media (min-width: 761px) {
  .nav-links {
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .nav-links a {
    white-space: nowrap;
    font-size: 13px;
  }
}

@media (min-width: 1180px) {
  .nav-links {
    gap: 20px;
  }
}

.seo-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 88px;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 20, 127, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fff5fa 52%, #ffffff 100%);
}

.seo-hero::before {
  content: "";
  position: absolute;
  right: -18%;
  top: -24%;
  width: 56%;
  height: 128%;
  background: linear-gradient(160deg, var(--black), #171a29);
  border-bottom-left-radius: 58%;
  transform: rotate(-4deg);
}

.seo-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 58px;
  align-items: center;
}

.seo-hero-copy h1 {
  color: var(--black);
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -3px;
  margin-bottom: 20px;
  max-width: 760px;
}

.seo-hero-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 720px;
}

.seo-hero-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.seo-hero-card strong {
  display: block;
  color: var(--black);
  font-size: 22px;
  margin-bottom: 8px;
}

.seo-hero-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.seo-hero-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.seo-hero-card li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-weight: 800;
  line-height: 1.45;
}

.seo-hero-card li i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--pink-soft);
  color: var(--pink);
}

.seo-content-section {
  padding: 82px 0;
  background: white;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 24px;
}

.seo-copy-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(7, 8, 18, 0.06);
}

.seo-copy-card.accent-card {
  background: #fff8fc;
  border-color: rgba(242, 20, 127, 0.14);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.seo-copy-card h2 {
  color: var(--black);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.seo-copy-card p,
.seo-steps-list li {
  color: var(--muted);
  line-height: 1.78;
  font-size: 16px;
}

.seo-copy-card p + p {
  margin-top: 12px;
}

.seo-steps-list {
  counter-reset: seoStep;
  list-style: none;
  display: grid;
  gap: 12px;
}

.seo-steps-list li {
  position: relative;
  min-height: 54px;
  display: grid;
  align-items: center;
  padding-left: 58px;
  color: var(--black);
  font-weight: 800;
}

.seo-steps-list li::before {
  counter-increment: seoStep;
  content: counter(seoStep, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 4px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--black);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.seo-process-band {
  background: #fff8fc;
}

.site-footer {
  background: #05060d;
  color: white;
  padding: 56px 0 22px;
  text-align: left;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo h2,
.footer-seo h2 {
  color: white;
}

.footer-brand p {
  color: #c9c9d3;
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-quick-links a,
.footer-seo-links a {
  color: white;
  text-decoration: none;
  transition: 0.25s;
}

.footer-quick-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 13px;
  font-weight: 800;
}

.footer-seo h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

.footer-seo-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-seo-links a {
  color: #c9c9d3;
  font-size: 13px;
  line-height: 1.45;
}

.footer-quick-links a:hover,
.footer-seo-links a:hover {
  color: var(--pink);
}

.footer-copy {
  width: min(1200px, 92%);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #9ca3af;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .seo-hero::before {
    display: none;
  }

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

  .seo-hero {
    padding: 78px 0 64px;
  }

  .footer-seo-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .seo-hero-copy h1 {
    letter-spacing: -2px;
  }

  .seo-hero-card,
  .seo-copy-card {
    padding: 22px;
    border-radius: 22px;
  }

  .footer-seo-links {
    grid-template-columns: 1fr;
  }
}

/* Home hero badge fit fix */
.hero-text > .badge {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  line-height: 1.35;
  white-space: normal;
  border-radius: 16px;
  padding: 10px 18px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@media (max-width: 520px) {
  .hero-text > .badge {
    font-size: 12px;
    line-height: 1.45;
    padding: 9px 14px;
  }
}

/* Navbar hover animation and enterprise file upload preview */
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 4px 0;
  transform: translateY(0);
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), #ff5caf);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--pink);
  transform: translateY(-2px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.file-upload-box {
  position: relative;
  min-height: 98px;
  border: 1.5px dashed #d8dbe6;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 12px 32px rgba(7, 8, 18, 0.05);
}

.file-upload-box::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.7);
  pointer-events: none;
}

.file-upload-box:hover,
.file-upload-box.dragging,
.file-upload-box.has-file {
  border-style: solid;
  border-color: var(--pink);
  background: linear-gradient(180deg, #ffffff 0%, #fff0f7 100%);
  box-shadow: 0 18px 44px rgba(242, 20, 127, 0.14);
  transform: translateY(-2px);
}

.file-upload-box.dragging {
  outline: 5px solid rgba(242, 20, 127, 0.12);
}

.file-upload-box.has-file .file-upload-icon {
  background: linear-gradient(135deg, var(--pink), #ff5caf);
}

.file-upload-box.has-file .file-upload-action {
  background: var(--black);
  color: white;
  border-color: var(--black);
}

.selected-file-preview {
  margin-top: 12px;
  min-height: 72px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 12px;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  padding: 12px;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.08);
  animation: selectedFileIn 0.25s ease both;
}

.selected-file-preview[hidden] {
  display: none;
}

.selected-file-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 20px;
}

.selected-file-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.selected-file-copy strong,
.selected-file-copy small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-file-copy strong {
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

.selected-file-copy small {
  color: #475569;
  font-size: 12px;
  font-weight: 800;
}

.file-remove-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #fee2e2;
  color: #991b1b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.file-remove-btn:hover,
.file-remove-btn:focus-visible {
  background: #dc2626;
  color: white;
  transform: translateY(-2px);
}

@keyframes selectedFileIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .selected-file-preview {
    grid-template-columns: 42px minmax(0, 1fr) 38px;
    padding: 10px;
    border-radius: 16px;
  }

  .selected-file-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .file-remove-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
}

/* Process icons, deadline notes, total-only price, and WhatsApp live widget */
.process-card {
  min-height: 238px;
  padding-top: 92px;
}

.process-card::before {
  content: "\f15c";
  position: absolute;
  top: 28px;
  left: 28px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pink), #ff5caf);
  color: #ffffff;
  box-shadow: var(--pink-shadow);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
}

.process-grid .process-card:nth-child(2)::before {
  content: "\f09d";
}

.process-grid .process-card:nth-child(3)::before {
  content: "\f232";
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.process-card b {
  position: absolute;
  top: 32px;
  right: 28px;
  min-width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff0f7;
  border: 1px solid rgba(242, 20, 127, 0.16);
}

.process-card h3 {
  margin-top: 0;
}

.field-note,
.completion-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.field-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.field-note i,
.completion-note i {
  color: var(--pink);
}

.completion-note {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: -2px 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(242, 20, 127, 0.14);
  border-radius: 16px;
  background: #fff8fc;
}

.completion-note i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #ffffff;
}

.price-summary.ready {
  min-height: 64px;
  background: #f0fdf4;
  border-color: #86efac;
}

.price-summary .price-total-only {
  align-items: center;
}

.price-summary .price-total-only strong {
  font-size: 14px;
}

.price-summary .price-total-only span {
  color: #166534;
  font-size: 19px;
  font-weight: 950;
}

.live-agent-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  min-height: 62px;
  display: inline-grid;
  grid-template-columns: 46px minmax(0, auto);
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--black);
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(7, 8, 18, 0.18);
  text-decoration: none;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.live-agent-widget:hover,
.live-agent-widget:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 62px rgba(7, 8, 18, 0.24);
}

.live-agent-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #16a34a;
  color: #ffffff;
  font-size: 24px;
}

.live-agent-copy {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.live-agent-copy strong {
  color: var(--black);
  font-size: 13px;
  font-weight: 950;
}

.live-agent-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

@media (max-width: 760px) {
  .process-card {
    min-height: 210px;
  }

  .live-agent-widget {
    right: 14px;
    bottom: 14px;
    min-height: 56px;
    grid-template-columns: 42px minmax(0, auto);
    padding: 7px 12px 7px 7px;
  }

  .live-agent-icon {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
}

/* Home service card icons */
.service-card {
  min-height: 138px;
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.service-card strong {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 17px;
  line-height: 1.35;
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--pink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 21px;
  transition: 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--pink);
  color: white;
  transform: translateY(-3px) rotate(-3deg);
  box-shadow: var(--pink-shadow);
}

/* Price placement and desktop form lift */
.price-summary {
  margin: 14px 0 16px;
}

.price-summary.compact-loading {
  min-height: 56px;
  align-items: center;
}

@media (min-width: 1101px) {
  .hero-grid .form-card {
    margin-top: -46px;
  }
}

/* Country SEO landing pages */
.localized-seo-hero .seo-eyebrow,
.country-hub-hero .seo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-page-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf4ff;
    color: #0b66c3;
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.country-keyword-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    gap: 24px;
    align-items: center;
}

.keyword-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.keyword-pill-list span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f4f8fb;
    border: 1px solid #e2edf6;
    color: #1f3347;
    font-size: 0.92rem;
    font-weight: 700;
}

.country-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.country-hub-card {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px 12px;
    align-items: center;
    min-height: 92px;
    padding: 16px;
    border: 1px solid #e4ecf4;
    border-radius: 8px;
    background: #ffffff;
    color: #172636;
    box-shadow: 0 10px 28px rgba(15, 31, 48, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.country-hub-card:hover {
    transform: translateY(-3px);
    border-color: #0b66c3;
    box-shadow: 0 16px 36px rgba(11, 102, 195, 0.12);
}

.country-hub-card i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf4ff;
    color: #0b66c3;
}

.country-hub-card span,
.country-hub-card small {
    min-width: 0;
}

.country-hub-card span {
    font-weight: 800;
    line-height: 1.25;
}

.country-hub-card small {
    grid-column: 2;
    color: #607082;
    font-size: 0.82rem;
    font-weight: 600;
}

.service-country-card small {
    color: #0b66c3;
}

@media (max-width: 760px) {
    .country-keyword-grid {
        grid-template-columns: 1fr;
    }

    .country-hub-grid {
        grid-template-columns: 1fr;
    }
}

/* Homepage completion notice modal */
.completion-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 24px 20px;
  pointer-events: none;
}

.completion-modal[hidden] {
  display: none;
}

.completion-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 8, 18, 0.42);
  backdrop-filter: blur(8px);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.22s ease;
  pointer-events: auto;
}

.completion-modal-card {
  position: relative;
  width: min(440px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 56px 22px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff 0%, #fff8fc 54%, #eef7ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 30px 90px rgba(7, 8, 18, 0.32);
  transform: translateX(-116%) scale(0.98);
  opacity: 0;
  pointer-events: auto;
  overflow: hidden;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
}

.completion-modal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--pink), #0b66c3, #16a34a);
}

.completion-modal.is-visible .completion-modal-backdrop {
  opacity: 1;
}

.completion-modal.is-visible .completion-modal-card {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.completion-modal.is-hiding .completion-modal-backdrop {
  opacity: 0;
}

.completion-modal.is-hiding .completion-modal-card {
  transform: translateX(-116%) scale(0.98);
  opacity: 0;
}

.completion-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 8, 18, 0.08);
  color: var(--black);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.completion-modal-close:hover,
.completion-modal-close:focus-visible {
  transform: rotate(90deg) scale(1.04);
  background: var(--pink);
  color: #ffffff;
  outline: none;
}

.completion-modal-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #ffffff;
  color: var(--pink);
  font-size: 30px;
  box-shadow: 0 16px 40px rgba(242, 20, 127, 0.18);
}

.completion-modal-copy {
  display: grid;
  gap: 7px;
}

.completion-modal-copy span {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(242, 20, 127, 0.1);
  color: var(--pink);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.completion-modal-copy h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.12;
}

.completion-modal-copy p {
  margin: 0;
  color: #26384d;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
  text-align: left;
}

.completion-modal-copy small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
  text-align: left;
}

@media (max-width: 620px) {
  .completion-modal {
    padding: 18px 14px;
  }

  .completion-modal-card {
    width: calc(100vw - 28px);
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 50px 18px 18px;
    border-radius: 20px;
  }

  .completion-modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 25px;
  }
}
/* Secure styled public footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #070812 0%, #0d1020 52%, #05060d 100%);
  color: #ffffff;
  padding: 64px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), #0b66c3, #16a34a);
}

.footer-inner,
.footer-content {
  position: relative;
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(180px, 0.55fr) minmax(0, 1.7fr);
  gap: 26px;
  align-items: start;
}

.footer-inner > div,
.footer-content > div {
  min-width: 0;
}

.site-footer h3,
.footer-logo h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: 0;
}

.site-footer h3::before,
.footer-logo h2::before {
  content: "in";
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), #ff5caf);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(242, 20, 127, 0.28);
}

.site-footer h4,
.footer-seo h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-inner p,
.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: #cbd5e1;
  line-height: 1.75;
  font-size: 14px;
  font-weight: 650;
}

.footer-quick-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-content: start;
}

.footer-quick-links a,
.footer-seo-links a {
  position: relative;
  min-width: 0;
  color: #e5edf7;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.footer-quick-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
}

.footer-quick-links a::before {
  content: "\f105";
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(242, 20, 127, 0.18);
  color: #ff8fc5;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
}

.footer-seo-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 10px;
}

.footer-seo-links a {
  min-height: 46px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  color: #d9e2ef;
  font-size: 12.5px;
  font-weight: 850;
  line-height: 1.32;
  word-break: normal;
  overflow-wrap: anywhere;
}

.footer-seo-links a::before {
  content: "\f02d";
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(11, 102, 195, 0.18);
  color: #93c5fd;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
}

.footer-quick-links a:hover,
.footer-quick-links a:focus-visible,
.footer-seo-links a:hover,
.footer-seo-links a:focus-visible {
  color: #ffffff;
  border-color: rgba(242, 20, 127, 0.55);
  background: rgba(242, 20, 127, 0.14);
  transform: translateY(-3px);
  outline: none;
}

.footer-quick-links a:hover::before,
.footer-quick-links a:focus-visible::before,
.footer-seo-links a:hover::before,
.footer-seo-links a:focus-visible::before {
  background: var(--pink);
  color: #ffffff;
}

.footer-copy {
  width: min(1180px, 92%);
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9ca3af;
  text-align: center;
  font-size: 13px;
}

.anti-bot-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 1020px) {
  .footer-inner,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-inner p,
  .footer-brand p {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 52px 0 28px;
  }

  .footer-seo-links {
    grid-template-columns: 1fr;
  }

  .footer-quick-links a,
  .footer-seo-links a {
    min-height: 44px;
  }
}
@media (max-width: 620px) {
  .completion-modal-copy h2 {
    display: none;
  }
}

/* SEO topical authority styles */
.seo-breadcrumb{background:#fff;border-bottom:1px solid var(--border);padding:12px 0}.seo-breadcrumb .container{display:flex;align-items:center;gap:9px;flex-wrap:wrap;color:var(--muted);font-size:13px;font-weight:800}.seo-breadcrumb a{color:var(--black);text-decoration:none}.seo-breadcrumb a:hover,.seo-breadcrumb strong{color:var(--pink)}.seo-authority-hero .badge{display:inline-flex;align-items:center;gap:8px}.seo-topic-visual{display:flex;align-items:center;gap:12px;margin-bottom:18px}.seo-topic-visual img{width:52px;height:52px;object-fit:contain;border-radius:16px;background:var(--pink-soft);padding:9px}.seo-topic-visual span{display:inline-flex;min-height:34px;align-items:center;border-radius:999px;padding:0 12px;background:#eef6ff;color:#0b66c3;font-size:12px;font-weight:950}.seo-landing-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(290px,350px);gap:28px;align-items:start}.seo-main-article{display:grid;gap:22px}.seo-article-block,.seo-side-panel,.topic-cluster-card,.sitemap-group-card{background:#fff;border:1px solid var(--border);border-radius:22px;padding:26px;box-shadow:0 18px 45px rgba(7,8,18,.055)}.seo-article-block h2,.seo-side-panel h2,.topic-cluster-card h2,.sitemap-group-card h2{color:var(--black);font-size:clamp(24px,2.4vw,34px);line-height:1.16;letter-spacing:0;margin-bottom:13px}.seo-article-block h3,.seo-mini-note h3{color:var(--black);font-size:17px;margin-bottom:8px}.seo-article-block p,.seo-side-panel p,.topic-cluster-card p,.sitemap-group-card p{color:var(--muted);line-height:1.82;font-size:16px}.seo-article-block p+p{margin-top:12px}.seo-mini-note{margin-top:18px;padding:16px;border-radius:16px;background:#fff8fc;border:1px solid rgba(242,20,127,.14)}.seo-check-list{list-style:none;display:grid;gap:12px;margin-top:18px}.seo-check-list li{display:grid;grid-template-columns:26px minmax(0,1fr);gap:10px;align-items:start;color:var(--black);line-height:1.6;font-weight:750}.seo-check-list i{color:#16a34a;margin-top:4px}.seo-link-grid,.sitemap-link-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:10px;margin-top:18px}.seo-link-grid a,.sitemap-link-list a{display:grid;grid-template-columns:28px minmax(0,1fr);align-items:center;gap:10px;min-height:48px;padding:10px 12px;border-radius:14px;border:1px solid var(--border);background:#fff;color:var(--black);text-decoration:none;font-weight:850;line-height:1.32;transition:transform .22s ease,border-color .22s ease,color .22s ease}.sitemap-link-list a{display:flex;justify-content:flex-start}.seo-link-grid a i{width:28px;height:28px;display:grid;place-items:center;border-radius:9px;background:var(--pink-soft);color:var(--pink);font-size:12px}.seo-link-grid a:hover,.sitemap-link-list a:hover{transform:translateY(-3px);color:var(--pink);border-color:rgba(242,20,127,.32)}.seo-faq-grid{display:grid;gap:12px;margin-top:18px}.seo-faq-grid details{border:1px solid var(--border);border-radius:16px;background:#fff;padding:16px 18px}.seo-faq-grid summary{cursor:pointer;color:var(--black);font-weight:950}.seo-faq-grid details p{margin-top:10px}.seo-sticky-panel{position:sticky;top:102px;display:grid;gap:14px}.seo-sticky-panel .main-btn,.seo-sticky-panel .outline-btn{width:100%}.topic-map-grid,.sitemap-groups{display:grid;gap:22px}.topic-cluster-head{display:grid;grid-template-columns:54px minmax(0,1fr);gap:14px;align-items:center;margin-bottom:18px}.topic-cluster-head>span{width:54px;height:54px;display:grid;place-items:center;border-radius:16px;background:var(--pink-soft);color:var(--pink);font-size:22px}.topic-keyword-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:10px;list-style:none}.topic-keyword-list li{min-width:0;display:grid;gap:4px;padding:12px;border-radius:14px;background:#f8fafc;border:1px solid #edf0f4}.topic-keyword-list a{color:var(--black);font-weight:900;line-height:1.35;text-decoration:none}.topic-keyword-list a:hover{color:var(--pink)}.topic-keyword-list span{color:var(--muted);font-size:12px;font-weight:800}@media(max-width:980px){.seo-landing-layout{grid-template-columns:1fr}.seo-sticky-panel{position:static}}@media(max-width:620px){.seo-article-block,.seo-side-panel,.topic-cluster-card,.sitemap-group-card{padding:20px;border-radius:18px}.topic-keyword-list,.seo-link-grid,.sitemap-link-list{grid-template-columns:1fr}}

/* Academic level picker polish */
.level-picker-group {
  position: relative;
  z-index: 24;
}

.level-picker {
  position: relative;
}

.level-picker-toggle {
  width: 100%;
  min-height: 52px;
  border: 1px solid #e5e7ef;
  background: #fbfbfd;
  padding: 12px 14px;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  color: var(--black);
  cursor: pointer;
  transition: 0.3s;
  font: inherit;
  text-align: left;
}

.level-picker.open .level-picker-toggle,
.level-picker-toggle:focus,
.level-picker-toggle:hover {
  background: white;
  border-color: var(--pink);
  box-shadow: 0 0 0 5px rgba(242, 20, 127, 0.12);
}

.level-selected-icon,
.level-option-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--pink-soft);
  color: var(--pink);
  overflow: hidden;
}

.level-selected-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.level-picker-menu {
  position: absolute;
  inset: calc(100% + 8px) 0 auto 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(7, 8, 18, 0.18);
  padding: 10px;
  display: none;
  z-index: 60;
}

.level-picker.open .level-picker-menu {
  display: block;
}

.level-list {
  display: grid;
  gap: 7px;
  max-height: 292px;
  overflow-y: auto;
}

.level-option {
  width: 100%;
  min-height: 62px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  border: none;
  background: transparent;
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
  color: var(--black);
  text-align: left;
  transition: 0.25s;
}

.level-option strong,
.level-option small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.level-option strong {
  font-size: 13px;
  font-weight: 900;
}

.level-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.level-option:hover,
.level-option:focus {
  background: #fff0f7;
  outline: none;
}

@media (max-width: 760px) {
  .level-picker-menu {
    position: fixed;
    inset: auto 14px 14px 14px;
    max-height: 70vh;
  }

  .level-list {
    max-height: 52vh;
  }
}
/* Final public modal, upload, and expanded SEO footer polish */
.completion-modal-ok {
  width: fit-content;
  min-width: 104px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  background: var(--pink);
  color: #ffffff;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(242, 20, 127, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.completion-modal-ok:hover,
.completion-modal-ok:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(242, 20, 127, 0.32);
  outline: none;
}

.application-warning-modal .completion-modal-icon {
  background: #fff7ed;
  color: #ea580c;
}

.selected-file-preview.multiple-files {
  align-items: start;
}

.selected-file-preview.multiple-files .selected-file-icon {
  background: #eef6ff;
  color: #0b66c3;
}

.selected-file-preview.multiple-files .selected-file-copy small {
  white-space: normal;
  line-height: 1.55;
}

.footer-pro {
  grid-template-columns: minmax(280px, 1.15fr) minmax(190px, 0.58fr) minmax(260px, 0.9fr);
  gap: 24px;
}

.footer-brand-panel,
.footer-nav-panel,
.footer-help-panel,
.footer-all-seo {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.052);
  border-radius: 22px;
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.footer-brand-panel p {
  max-width: 100%;
}

.footer-support-points,
.footer-help-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.footer-support-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-support-points span,
.footer-help-list span {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #e5edf7;
  font-size: 12.5px;
  font-weight: 850;
  line-height: 1.35;
}

.footer-support-points i,
.footer-help-list i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(22, 163, 74, 0.16);
  color: #86efac;
}

.footer-all-seo {
  display: block;
  margin-top: 28px;
}

.footer-all-seo-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.footer-all-seo-head h4 {
  margin-bottom: 7px;
}

.footer-all-seo-head p {
  max-width: 720px;
  margin: 0;
}

.footer-all-seo-head span {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 13px;
  color: #ffffff;
  background: rgba(242, 20, 127, 0.22);
  border: 1px solid rgba(242, 20, 127, 0.34);
  font-size: 12px;
  font-weight: 950;
}

.footer-seo-scroll {
  max-height: 520px;
  overflow: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(242, 20, 127, 0.8) rgba(255, 255, 255, 0.09);
}

.footer-seo-scroll::-webkit-scrollbar {
  width: 8px;
}

.footer-seo-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.footer-seo-scroll::-webkit-scrollbar-thumb {
  background: rgba(242, 20, 127, 0.82);
  border-radius: 999px;
}

.footer-all-seo .footer-seo-links {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

@media (max-width: 1020px) {
  .footer-pro {
    grid-template-columns: 1fr;
  }

  .footer-support-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer-brand-panel,
  .footer-nav-panel,
  .footer-help-panel,
  .footer-all-seo {
    padding: 18px;
    border-radius: 18px;
  }

  .footer-support-points,
  .footer-all-seo-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-all-seo-head span {
    width: fit-content;
  }

  .footer-seo-scroll {
    max-height: 420px;
  }
}

/* Footer 4-column layout and modal alignment refinements */
.completion-modal-copy {
  align-items: center;
  text-align: center;
}

.completion-modal-copy .completion-modal-ok {
  align-self: center;
  margin: 4px auto 0;
}

.footer-all-seo .footer-seo-scroll.footer-seo-links {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px 14px;
  align-items: stretch;
}

.footer-all-seo .footer-seo-links a {
  min-height: 44px;
  width: 100%;
}

@media (max-width: 1180px) {
  .footer-all-seo .footer-seo-scroll.footer-seo-links {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  .footer-all-seo .footer-seo-scroll.footer-seo-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 540px) {
  .footer-all-seo .footer-seo-scroll.footer-seo-links {
    grid-template-columns: 1fr !important;
  }
}

/* Single-column application form rows and equal control heights */
#applicationForm .form-row {
  grid-template-columns: 1fr !important;
  gap: 0;
}

#applicationForm .input-group {
  width: 100%;
}

#applicationForm input:not([type="hidden"]):not([type="file"]),
#applicationForm select,
#applicationForm .country-picker-toggle,
#applicationForm .level-picker-toggle {
  min-height: 52px;
  height: 52px;
  display: flex;
  align-items: center;
}

#applicationForm input:not([type="hidden"]):not([type="file"]),
#applicationForm select {
  padding-top: 0;
  padding-bottom: 0;
}

#applicationForm .country-picker-toggle,
#applicationForm .level-picker-toggle {
  display: grid;
}

#applicationForm .field-note {
  margin-top: 8px;
}

/* Deadline date input spacing fix */
#applicationForm #deadline {
  display: block;
  line-height: 52px;
  padding-left: 15px;
  padding-right: 12px;
  text-align: left;
  color: var(--black);
  font-weight: 750;
}

#applicationForm #deadline::-webkit-datetime-edit,
#applicationForm #deadline::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: calc(100% - 34px);
}

#applicationForm #deadline::-webkit-calendar-picker-indicator {
  width: 22px;
  height: 22px;
  margin-left: auto;
  padding: 3px;
  cursor: pointer;
  border-radius: 8px;
  opacity: 0.72;
}

#applicationForm #deadline::-webkit-calendar-picker-indicator:hover {
  background: rgba(242, 20, 127, 0.10);
  opacity: 1;
}
