:root {
  --bg: #f4f8ff;
  --surface: #ffffff;
  --surface-2: #eaf2ff;
  --text: #0f172a;
  --muted: #475569;
  --primary: #0a5bd8;
  --primary-strong: #003c99;
  --accent: #ff8a00;
  --border: #d7e4ff;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(10, 33, 88, 0.12);
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Public Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 90% -10%, #cfe3ff 0, #cfe3ff 22%, transparent 52%),
    radial-gradient(circle at 0% 18%, #dff8f4 0, #dff8f4 18%, transparent 45%),
    var(--bg);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: 0;
  transform: translateY(-140%);
}

.skip-link:focus {
  top: 0.5rem;
  z-index: 100;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.55rem;
  transform: translateY(0);
}

.container {
  width: 100%;
  max-width: 1120px;
  padding-inline: 1rem;
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid #e2ebff;
  border-bottom: 1px solid #e2ebff;
}

.section-title {
  margin: 0 0 0.7rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  line-height: 1.2;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-strong);
}

.eyebrow::before {
  content: "";
  width: 1.2rem;
  height: 0.15rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(244, 248, 255, 0.82);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  flex: 1 1 auto;
}

.brand span {
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.brand strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  display: none;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 759px) {
  .hamburger {
    display: flex;
  }

  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(244, 248, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  nav.nav-open .nav-links li {
    width: 100%;
  }

  nav.nav-open .nav-links a {
    display: block;
    padding: 0.5rem;
    color: var(--text);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(130deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 10px 22px rgba(9, 68, 171, 0.3);
}

.btn-soft {
  background: #fff;
  color: var(--primary-strong);
  border: 1px solid var(--border);
}

.hero {
  padding: 2.4rem 0 2.2rem;
  position: relative;
  overflow: hidden;
}

.hero-wrap {
  display: grid;
  gap: 1.3rem;
  min-width: 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.hero::before {
  width: 280px;
  height: 280px;
  right: -120px;
  top: -70px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.22) 0%, rgba(255, 138, 0, 0) 72%);
}

.hero::after {
  width: 340px;
  height: 340px;
  left: -170px;
  bottom: -130px;
  background: radial-gradient(circle, rgba(10, 91, 216, 0.18) 0%, rgba(10, 91, 216, 0) 75%);
}

.hero-card {
  padding: 1.3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255, 138, 0, 0.09), rgba(255, 138, 0, 0) 34%),
    linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: var(--shadow);
}

.hero h1 {
  margin: 0 0 0.8rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 7vw, 3.2rem);
  line-height: 1.1;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-badges {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-badge {
  padding: 0.7rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
  font-size: 0.82rem;
  color: #1e293b;
  text-align: center;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(10, 33, 88, 0.15);
  object-fit: contain;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.stat {
  padding: 0.85rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff, var(--surface-2));
  border: 1px solid var(--border);
  min-width: 0;
}

.stat strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.1rem;
}

.card-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.card {
  padding: 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 8px 22px rgba(10, 33, 88, 0.07);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(10, 33, 88, 0.12);
}

.card h3 {
  margin: 0 0 0.45rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.05rem;
}

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

.checklist {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.checklist li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: #1f2937;
}

.checklist li::before {
  content: "";
  margin-top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.2);
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  margin-bottom: 0.5rem;
}

.toggle-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.toggle-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pricing-container {
  position: relative;
}

.pricing-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.price-card {
  position: relative;
  display: grid;
  gap: 0.7rem;
  padding: 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 10px 24px rgba(10, 33, 88, 0.08);
}

.price-card h3 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.15rem;
}

.price-amount {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--primary-strong);
}

.price-amount span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.price-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.plan-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.48rem;
  color: #1f2937;
  font-size: 0.92rem;
}

.plan-list li::before {
  content: "";
  margin-top: 0.38rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
}

.popular {
  border-color: #86aef9;
  box-shadow: 0 16px 34px rgba(10, 91, 216, 0.18);
}

.popular-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.26rem 0.56rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(130deg, #ff8a00, #ff5e00);
}

.pill {
  padding: 0.65rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, #f9fcff);
  text-align: center;
  font-size: 0.83rem;
  color: #1e293b;
}

.faq {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  padding: 0.85rem 0.95rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #0b2f77;
}

.faq p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.cta {
  border-radius: 22px;
  border: 1px solid #a5c6ff;
  background:
    radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 36%),
    linear-gradient(145deg, #003c99, #0a5bd8);
  color: #fff;
  padding: 1.4rem;
  box-shadow: 0 18px 36px rgba(0, 52, 130, 0.32);
  min-width: 0;
}

.cta h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 5vw, 2rem);
  line-height: 1.2;
}

.cta p {
  margin: 0.7rem 0 1rem;
  color: #e6f0ff;
}

.cta .btn-soft {
  border-color: rgba(255, 255, 255, 0.4);
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #f5f9ff, #e8f1ff);
  width: 100%;
}

.site-footer .container {
  margin-inline: auto;
}

.footer-grid {
  padding: 1.6rem 0;
  display: grid;
  gap: 1rem;
  max-width: 1120px;
}

.footer-grid > section {
  min-width: 0;
}

.footer-title {
  margin: 0 0 0.4rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.footer-list li + li {
  margin-top: 0.35rem;
}

.bottom {
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: #64748b;
  padding: 0.8rem 0;
  width: 100%;
}

.bottom .container {
  text-align: center;
}

.wa-float {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.86rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.38);
  animation: wa-pulse 2.2s ease-in-out infinite;
}

.wa-float img {
  width: 22px;
  height: 22px;
}

.wa-float:hover {
  transform: translateY(-2px);
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22), 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.6s ease forwards;
}

.reveal.d2 {
  animation-delay: 0.08s;
}

.reveal.d3 {
  animation-delay: 0.16s;
}

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

@media (min-width: 760px) {
  .section {
    padding: 4.7rem 0;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    font-size: 0.9rem;
    color: #1e3a8a;
    font-weight: 600;
  }

  .brand small {
    display: block;
  }

  .hero-wrap {
    grid-template-columns: 1.35fr 0.95fr;
    align-items: stretch;
  }

  .hero-card {
    padding: 1.7rem;
  }

  .stats {
    grid-template-columns: 1fr;
    margin-top: 0;
    align-content: start;
  }

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

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

  .industry-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 2rem;
    justify-content: center;
  }
}

@media (min-width: 1040px) {
  .card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 759px) {
  .nav {
    padding: 0.55rem 0;
    display: flex;
    align-items: center;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: clamp(0.9rem, 4vw, 1rem);
    white-space: normal;
  }

  .site-header .btn.btn-primary {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-badges,
  .stats,
  .industry-list {
    grid-template-columns: 1fr;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .footer-grid {
    justify-items: center;
    text-align: center;
  }

  .footer-list {
    text-align: center;
  }

  .bottom .container {
    text-align: center;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.88rem;
    line-height: 1.1;
  }

  .wa-float span {
    display: none;
  }

  .wa-float {
    border-radius: 50%;
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.d2,
  .reveal.d3 {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .btn {
    transition: none;
  }

  .wa-float {
    animation: none;
  }
}

/* === CONTACT HERO === */
.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero-title {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
}

/* === CONTACT INFO TILES === */
.contact-info-section {
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid #e2ebff;
  border-bottom: 1px solid #e2ebff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact-tile {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(250, 253, 255, 0.8) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 33, 88, 0.08);
}

.contact-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 91, 216, 0.06) 0%, rgba(255, 138, 0, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 16px;
}

.contact-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 91, 216, 0.15);
  border-color: var(--primary);
}

.contact-tile:hover::before {
  opacity: 1;
}

.tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  border-radius: 50%;
  color: white;
  transition: transform 0.3s ease;
}

.contact-tile:hover .tile-icon {
  transform: scale(1.1);
}

.tile-icon svg {
  width: 32px;
  height: 32px;
}

.tile-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: var(--text);
  letter-spacing: 0.2px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(10, 91, 216, 0.05);
  border: 1px solid rgba(10, 91, 216, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--primary);
}

.contact-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 91, 216, 0.2);
}

.whatsapp-link {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: 1px solid #25d366;
}

.whatsapp-link:hover {
  background: linear-gradient(135deg, #128c7e, #075e54);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.contact-number {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.contact-label {
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: 500;
}

.office-address {
  margin-bottom: 12px;
}

.address-line {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 2px;
}

.office-hours {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(255, 138, 0, 0.05);
  border: 1px solid rgba(255, 138, 0, 0.1);
  border-radius: 8px;
}

.hours-label {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hours-time {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.response-time {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
}
