:root {
  --primary: #2b60e6;
  --primary-dark: #143fb5;
  --bg-soft: #f5f7ff;
  --text: #0f172a;
  --muted: #475569;
  --card: #ffffff;
  --line: #e2e8f0;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Nunito', Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148,163,184,0.22);
}

.site-header.transparent {
  background: transparent;
  border-color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}

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

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.transparent .brand-text strong,
.transparent .brand-text span {
  color: #fff;
}

.brand-text span {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
}

.primary-btn,
.secondary-btn,
.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-btn:hover,
.secondary-btn:hover,
.link-btn:hover {
  transform: translateY(-1px);
}

.primary-btn {
  background: var(--primary);
  color: #fff;
  padding: 0.78rem 1.7rem;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(43,96,230,0.24);
}

.primary-btn:hover { background: var(--primary-dark); }

.secondary-btn {
  background: #fff;
  color: var(--primary);
  padding: 0.77rem 1.5rem;
  border: 1px solid rgba(43,96,230,0.15);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.3);
  background: rgba(255,255,255,0.6);
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #f8f9ff 0%, #eef4ff 45%, #e8edff 100%);
  padding: 50px 0 80px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 32px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0;
  color: #0f172a;
}

.hero-copy p {
  margin: 0;
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--primary);
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 15px 30px rgba(43, 96, 230, 0.25);
}

.store-button .icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-button .icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.store-button small {
  display: block;
  font-size: 0.68rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.store-button strong {
  display: block;
  font-size: 1.08rem;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.social-proof strong {
  font-size: 1.4rem;
  color: var(--text);
}

.stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

.stars svg {
  display: none;
}

.stars::before {
  content: "\2605\2605\2605\2605";
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 1px;
}

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

.hero-visual img {
  max-width: 620px;
  width: 100%;
  filter: drop-shadow(0 25px 40px rgba(22, 93, 255, 0.14));
}

.section {
  padding: 90px 0;
}

.section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.pill {
  display: inline-block;
  padding: 0.42rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: var(--primary);
  background: rgba(99, 102, 241, 0.06);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.features-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 30px;
  align-items: center;
}

.features-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.features-side.right { align-items: flex-start; }
.features-side.left { align-items: flex-end; }

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: min(100%, 320px);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(99,102,241,0.1);
  border-radius: 18px;
  box-shadow: 0 20px 35px rgba(148,163,184,0.12);
  padding: 20px 18px;
}

.feature-card .icon-box {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ebf2ff;
  color: var(--primary);
}

.feature-card .icon-box svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.feature-card h3 {
  margin: 0 0 5px;
  font-size: 1rem;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

.phone-core {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-core::before,
.phone-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(148,163,184,0.7);
}

.phone-core::before {
  width: 300px;
  height: 300px;
  background: rgba(22,93,255,0.08);
  border-color: rgba(148,163,184,0.55);
}

.phone-core::after {
  width: 500px;
  height: 500px;
  border-color: rgba(148,163,184,0.42);
}

.phone-core img {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
}

.global-network {
  background: #fff;
}

.network-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 55px;
  align-items: center;
}

.map-panel {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-panel img {
  width: min(100%, 680px);
  opacity: 0.7;
}

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float 6s ease-in-out infinite;
}

.map-pin .avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 4px solid #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-pin .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-pin .pointer {
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 18px solid #fff;
}

.map-pin .dot-wrap {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
  z-index: 1;
}

.map-pin .pulse {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(43,96,230,0.24);
  animation: ping 2s linear infinite;
}

@keyframes ping {
  0% { transform: scale(0.6); opacity: 0.7; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(2); opacity: 0; }
}

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

.network-copy {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.network-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--text);
}

.network-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 10px;
  border-radius: 14px;
  transition: transform 0.2s ease;
}

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

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.3;
}

.success-section {
  position: relative;
  background: #fff;
  padding-top: 0;
}

.success-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.success-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.success-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
  color: var(--text);
}

.success-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.review-score-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 10px 0 5px;
}

.store-score {
  display: flex;
  align-items: center;
  gap: 14px;
}

.store-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #f1f5f9;
}

.store-icon svg {
  width: 36px;
  height: 36px;
}

.store-score .meta {
  display: flex;
  flex-direction: column;
}

.store-score .meta .stars {
  margin-bottom: 4px;
}

.store-score .meta span {
  font-size: 0.72rem;
  color: var(--muted);
}

.store-score .meta strong {
  font-size: 1.08rem;
  color: var(--text);
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.review-card {
  width: min(100%, 540px);
  background: #fff;
  border: 1px solid rgba(148,163,184,0.2);
  border-radius: 26px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.review-card:nth-child(2) {
  margin-left: auto;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cbd5e1, #e2e8f0);
  flex-shrink: 0;
}

.review-content p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}

.review-content strong {
  color: var(--text);
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 32px;
  margin-top: 28px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.faq-item.open {
  background: rgba(99, 102, 241, 0.04);
  border: 1px solid rgba(99, 102, 241, 0.08);
  border-radius: 12px;
  padding: 0 8px;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 14px;
  cursor: pointer;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.faq-question .chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  color: var(--muted);
  padding: 0 14px;
}

.faq-item.open .faq-answer {
  max-height: 220px;
  padding: 0 14px 16px;
}

.cta-banner {
  background: #f0efff;
  padding: 90px 0;
}

.cta-box {
  text-align: center;
}

.cta-box h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
  color: var(--text);
}

.cta-box p {
  margin: 0 auto 28px;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.site-footer {
  background: #fff;
  padding: 40px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
  flex-wrap: wrap;
}

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

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer-brand strong {
  display: block;
  font-size: 1.18rem;
  color: var(--text);
}

.footer-brand span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.footer-links,
.footer-policy {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-policy a {
  color: var(--muted);
  font-weight: 600;
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 30, 82, 0.88), rgba(7, 30, 82, 0.66) 50%, rgba(7, 30, 82, 0.52));
}

.page-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.page-hero p {
  margin: 0 auto;
  max-width: 620px;
  font-size: 1.18rem;
  color: rgba(255,255,255,0.9);
}

.content-section {
  padding: 70px 0;
  background: #fff;
}

.content-wrap {
  width: min(900px, 100%);
  margin: 0 auto;
}

.content-wrap p,
.content-wrap li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.content-wrap h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  color: var(--text);
}

.content-wrap .updated {
  display: block;
  color: #94a3b8;
  font-style: italic;
  margin-bottom: 24px;
}

.content-wrap .section-block {
  margin-bottom: 30px;
}

.content-wrap ul {
  margin: 0;
  padding-left: 26px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: flex-start;
}

.map-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.map-box iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.map-button {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  background: rgba(255,255,255,0.96);
  color: var(--text);
  border: 1px solid rgba(148,163,184,0.25);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  font-weight: 700;
  cursor: pointer;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 26px;
}

.contact-details h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--text);
}

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

.enquiry-card {
  background: #fff;
  border: 1px solid rgba(148,163,184,0.2);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 28px;
}

.enquiry-card h3 {
  margin: 0 0 10px;
  text-align: center;
  font-size: 1.8rem;
}

.enquiry-card p {
  margin: 0 0 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #334155;
}

.form-field .required {
  color: #ef4444;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  background: #f8fafc;
  color: var(--text);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(43,96,230,0.45);
  box-shadow: 0 0 0 4px rgba(43,96,230,0.09);
}

.submit-wrap {
  text-align: center;
  margin-top: 6px;
}

.help-banner {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 20px;
}

.help-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 30, 82, 0.84), rgba(7, 30, 82, 0.5) 42%, rgba(7, 30, 82, 0.3));
}

.help-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 500px;
  padding: 32px 40px;
  color: #fff;
}

.help-banner h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.help-banner p {
  margin: 0 0 20px;
  color: rgba(255,255,255,0.84);
}

@media (max-width: 960px) {
  .main-nav {
    position: absolute;
    top: 80px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,0.98);
    padding: 18px 16px;
    border: 1px solid rgba(148,163,184,0.18);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .site-header .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero .container,
  .network-wrap,
  .success-wrap,
  .contact-grid,
  .features-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .features-side.left,
  .features-side.right {
    align-items: stretch;
  }

  .feature-card {
    width: 100%;
  }

  .hero-visual {
    order: -1;
  }

  .map-panel {
    height: 440px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 28px;
  }

  .hero-copy {
    gap: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .section,
  .cta-banner {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .review-card {
    width: 100%;
    margin-left: 0 !important;
  }

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