:root {
  --color-bg: #f5f7fb;
  --color-surface: #ffffff;
  --color-primary: #0b3c7d;
  --color-primary-soft: #e0e8f8;
  --color-accent: #ff7a3c;
  --color-accent-soft: #ffe2d3;
  --color-text: #1f2933;
  --color-muted: #6b7280;
  --color-border: #dde3f0;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-pill: 999px;
  --container-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--color-text);
  background: radial-gradient(circle at top left, #e0edff, #f9fafb 40%, #eef2ff);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.18), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(56, 189, 248, 0.16), transparent 55%),
    radial-gradient(circle at 0% 80%, rgba(248, 113, 113, 0.18), transparent 55%);
  opacity: 0.9;
  filter: blur(0.5px);
  animation: page-glow 26s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Background orbiting circles */
.bg-orbits {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.bg-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(11, 60, 125, 0.4);
  animation: orbit 20s linear infinite;
}

.bg-orbit--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
}

.bg-orbit--2 {
  width: 400px;
  height: 400px;
  top: 40%;
  left: -100px;
  animation-duration: 25s;
  animation-direction: reverse;
  border-color: rgba(249, 115, 22, 0.35);
}

.bg-orbit--3 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: 20%;
  animation-duration: 30s;
  border-color: rgba(34, 197, 94, 0.35);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 0.75rem;
  text-align: left;
  color: var(--color-primary);
}

.section-intro {
  margin: 0 0 2rem;
  color: var(--color-muted);
  max-width: 40rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-pill);
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease,
    color 0.15s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #071f4e);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #102a75, #050f33);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-secondary {
  background: var(--color-accent);
  color: #1f2933;
  box-shadow: 0 12px 24px rgba(248, 113, 64, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #ff5f10;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  text-decoration: none;
}

.btn.full-width {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(248, 250, 252, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.logo-image {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 10%, #fff, #0b3c7d);
  box-shadow: 0 5px 15px rgba(15, 23, 42, 0.2);
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  font-size: 0.95rem;
  color: var(--color-muted);
  font-weight: 500;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--color-primary);
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  border: none;
  background: transparent;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem;
  border-radius: 999px;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 999px;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2rem, 3vw + 1rem, 2.6rem);
  margin: 0 0 0.75rem;
  color: var(--color-primary);
}

.hero-subhead {
  margin: 0 0 1.5rem;
  color: var(--color-muted);
  max-width: 32rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.trust-label {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: radial-gradient(circle at 10% 0%, #eff6ff, #ffffff 60%);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  max-width: 320px;
  width: 100%;
}

.hero-illustration {
  position: relative;
  height: 160px;
  border-radius: 18px;
  background: radial-gradient(circle at 0% 0%, #60a5fa, #1d4ed8 50%, #020617);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: hero-bg-shift 12s ease-in-out infinite alternate;
}

.hero-illustration::before,
.hero-illustration::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(248, 250, 252, 0.95), transparent);
  opacity: 0.15;
  filter: blur(2px);
}

.hero-illustration::before {
  width: 160px;
  height: 160px;
  top: -40px;
  left: -40px;
  animation: hero-orb-one 18s linear infinite;
}

.hero-illustration::after {
  width: 120px;
  height: 120px;
  bottom: -30px;
  right: -10px;
  animation: hero-orb-two 16s linear infinite reverse;
}

.hero-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  z-index: 1;
}

.hero-tagline .hero-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-tagline p {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
}

.hero-logo {
  display: none;
}

.plane {
  position: absolute;
  right: 1.2rem;
  top: 1rem;
  font-size: 1.6rem;
  animation: plane-fly 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  z-index: 2;
}

.hero-visual-text {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.services {
  padding-top: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(209, 213, 219, 0.5);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: var(--color-primary);
}

.service-card p {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--color-muted);
}

.service-card ul {
  margin: 0 0 1.1rem 1.1rem;
  padding: 0;
  color: var(--color-text);
  font-size: 0.9rem;
}

.service-card li + li {
  margin-top: 0.25rem;
}

.how-it-works {
  background: linear-gradient(to bottom, #eef2ff, #f9fafb);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-content h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.forms-section {
  background: radial-gradient(circle at top, #e0f2fe, #f9fafb 45%, #eef2ff);
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: flex-start;
}

.form-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(209, 213, 219, 0.6);
}

.form-side-card {
  background: radial-gradient(circle at top right, #0b3c7d, #1d4ed8);
  border-radius: 24px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.4);
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.form-orbit {
  position: relative;
  height: 140px;
  margin-bottom: 1.2rem;
}

.orbit-circle {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(191, 219, 254, 0.8);
  animation: orbit 16s linear infinite;
}

.orbit-circle--one {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.orbit-circle--two {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  animation-duration: 12s;
  animation-direction: reverse;
}

.orbit-avatar {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0%, #fefce8, #fbbf24);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
  font-size: 2rem;
}

.form-side-content {
  position: relative;
  z-index: 1;
}

.form-side-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #bfdbfe;
  margin: 0 0 0.4rem;
}

.form-side-steps {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  font-size: 0.9rem;
}

.form-side-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.form-side-steps li + li {
  margin-top: 0.3rem;
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f97316;
  margin-top: 0.35rem;
  box-shadow: 0 0 0 4px rgba(248, 250, 252, 0.18);
}

.form-side-metric {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.metric-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fbbf24;
}

.metric-label {
  max-width: 11rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
  margin-bottom: 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

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

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 10px;
  border: 1px solid var(--color-border);
  padding: 0.6rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
  background: #ffffff;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #dc2626;
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.25);
}

.field-error {
  min-height: 1rem;
  font-size: 0.75rem;
  color: #b91c1c;
  margin: 0.1rem 0 0;
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.form-success {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: #166534;
}

.form-error {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: #b91c1c;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
}

.modal-content {
  position: relative;
  z-index: 1;
  background: #f9fafb;
  border-radius: 20px;
  padding: 1.8rem 1.6rem 1.6rem;
  width: min(520px, 92vw);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.4);
}

.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.testimonials {
  background: linear-gradient(to bottom, #f9fafb, #eef2ff);
}

.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .testimonial-cards {
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 4rem;
  }
}

.testimonial-card {
  background: var(--color-white, #fff);
  border-radius: 16px;
  padding: 3rem 2rem 2rem;
  box-shadow: var(--shadow-soft, 0 10px 40px -10px rgba(0,0,0,0.08));
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  flex: 1;
  border: 1px solid rgba(148, 163, 184, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium, 0 20px 40px -10px rgba(0,0,0,0.12));
}

.testimonial-avatar-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--color-primary, #0b3c7d), var(--color-accent, #ff7a3c));
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-white, #fff);
  background: #f1f5f9;
}

.testimonial-card-body {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.testimonial-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text, #1f2933);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-quote::before, .testimonial-quote::after {
  color: var(--color-accent, #ff7a3c);
  font-size: 1.2em;
  font-family: serif;
}

.testimonial-name {
  font-weight: 700;
  color: var(--color-primary, #0b3c7d);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.testimonial-designation {
  font-size: 0.85rem;
  color: var(--color-text-light, #64748b);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing {
  background: #f9fafb;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(209, 213, 219, 0.7);
}

.pricing-card h3 {
  margin: 0 0 0.4rem;
  color: var(--color-primary);
}

.pricing-price {
  margin: 0 0 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
}

.pricing-card ul {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--color-text);
}

.faq-list {
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.2rem;
}

.faq-list details + details {
  border-top: 1px solid #e5e7eb;
}

.faq-list summary {
  cursor: pointer;
  padding: 0.6rem 0;
  list-style: none;
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.site-footer {
  background: #020617;
  color: #e5e7eb;
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 1.8rem;
  margin-bottom: 1.5rem;
}

.footer-heading {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 0.25rem;
}

.footer-links a,
.footer-link {
  color: #cbd5f5;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-link:hover,
.footer-links a:focus-visible,
.footer-link:focus-visible {
  color: #ffffff;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 0.45rem 0.75rem;
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
}

.newsletter-form input::placeholder {
  color: #9ca3af;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #e5e7eb;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: #f97316;
  border-color: #f97316;
  color: #0f172a;
}

.footer-bottom {
  border-top: 1px solid rgba(30, 64, 175, 0.7);
  padding-top: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.udyam-footer-link {
  color: #fbbf24 !important;
  font-weight: 600;
}

.udyam-footer-link:hover,
.udyam-footer-link:focus-visible {
  color: #f59e0b !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes page-glow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.8;
  }
  33% {
    transform: translate3d(-2%, 1%, 0) scale(1.05);
    opacity: 0.95;
  }
  66% {
    transform: translate3d(1%, -2%, 0) scale(1.02);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(0, 1%, 0) scale(1.04);
    opacity: 0.85;
  }
}

@keyframes hero-bg-shift {
  0% {
    background-position: 0% 0%;
    filter: saturate(1);
  }
  50% {
    background-position: 50% 100%;
    filter: saturate(1.15);
  }
  100% {
    background-position: 100% 0%;
    filter: saturate(1.05);
  }
}

@keyframes cap-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes plane-fly {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.85;
  }
  50% {
    transform: translate(-8px, -6px) rotate(-6deg);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.9;
  }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr);
  }

  .hero {
    padding-top: 3.2rem;
  }

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

  .forms-grid {
    grid-template-columns: minmax(0, 1.2fr);
  }

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

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 0.25rem;
  }

  .desktop-only {
    display: none !important;
  }

  .logo-text {
    font-size: 1.1rem;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .primary-nav {
    position: absolute;
    inset-inline: 0.75rem;
    top: 3.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 1rem 1rem;
    background: rgba(248, 250, 252, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(209, 213, 219, 0.8);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    transform-origin: top right;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .primary-nav.open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  /* Force links to be visible on white background, overriding any inline inline dark theme text styling */
  .primary-nav a {
    color: #1a1a1a !important;
    display: block;
    width: 100%;
    padding: 0.5rem 0;
  }

  .nav-cta {
    display: none;
  }

  .hero-trust {
    padding-inline: 0.8rem;
  }

  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 3rem 0;
  }

  .form-card {
    padding: 1.4rem 1.2rem;
  }

  .field-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-trust {
    flex-direction: column;
  }
}

/* ── Floating WhatsApp Button ───────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #20b858;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

