:root {
  --ink: #101828;
  --muted: #667085;
  --line: #e5e7eb;
  --bg: #f8fbff;
  --panel: #ffffff;
  --dark: #07111f;
  --brand: #00aeef;
  --brand-dark: #0388c5;
  --accent: #fcee21;
  --success: #12b76a;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(14px);
}

.brand img {
  display: block;
  width: 44px;
  height: 44px;
}

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

.brand span,
.footer-brand span {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand strong,
.footer-brand strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
}

.brand small,
.footer-brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

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

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.main-nav a.active,
.main-nav a:hover {
  background: rgba(0, 174, 239, 0.12);
  color: var(--brand-dark);
}

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--dark);
  background: var(--accent);
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 9vw, 110px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 174, 239, 0.18), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(252, 238, 33, 0.22), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #edf9ff 100%);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

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

.hero-copy p {
  max-width: 620px;
  font-size: 18px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.trust-row {
  margin-top: 26px;
  color: #344054;
  font-weight: 800;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(0, 174, 239, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  color: #06131f;
  background: linear-gradient(97deg, var(--accent) 0%, var(--brand) 120%);
  box-shadow: 0 12px 28px rgba(0, 174, 239, 0.25);
}

.btn.ghost {
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid rgba(0, 174, 239, 0.25);
}

.btn.dark {
  color: #fff;
  background: var(--dark);
}

.btn.full {
  width: 100%;
}

.hero-showcase {
  min-width: 0;
}

.browser-frame {
  min-height: 500px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(7, 17, 31, 0.96), rgba(3, 136, 197, 0.90));
  box-shadow: var(--shadow);
  color: #fff;
}

.browser-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.preview-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
}

.preview-logo img {
  width: 56px;
  height: 56px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.preview-grid span,
.preview-panel {
  min-height: 94px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.preview-panel {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 126px;
  margin-top: 14px;
  padding: 22px;
}

.preview-panel small {
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.light-section {
  background: #fff;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card,
.price-card,
.contact-card,
.contact-form,
.chat-card,
.highlight-box {
  border: 1px solid rgba(0, 174, 239, 0.14);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.06);
}

.feature-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
}

.check {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #072033;
  background: var(--accent);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 36px;
  align-items: start;
}

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

.pill-list {
  margin-top: 24px;
}

.pill-list span,
.business-list span {
  padding: 10px 13px;
  border-radius: 999px;
  background: #eaf8ff;
  color: #075981;
  font-weight: 800;
}

.highlight-box {
  padding: 28px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.popular {
  border-color: rgba(0, 174, 239, 0.55);
  background: linear-gradient(180deg, #ffffff 0%, #ecfaff 100%);
}

.badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.price {
  margin: 12px 0 18px;
  font-size: 44px;
  font-weight: 950;
}

.price-card ul {
  display: grid;
  gap: 12px;
  min-height: 138px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.price-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--success);
  font-weight: 900;
}

.note,
.pricing-note {
  font-size: 14px;
}

.pricing-note {
  margin-top: 24px;
  text-align: center;
}

.cta-band {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin: 0 clamp(18px, 5vw, 72px) clamp(56px, 8vw, 96px);
  padding: clamp(28px, 5vw, 46px);
  border-radius: 8px;
  background: linear-gradient(97deg, #e9fbff 0%, #fffbd1 100%);
}

.page-hero {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #edf9ff 100%);
}

.page-hero h1,
.page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  max-width: 680px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 24px;
}

.contact-simple {
  display: flex;
  justify-content: center;
}

.contact-simple .contact-card {
  width: min(100%, 560px);
}

.contact-card,
.contact-form {
  padding: 28px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row span {
  color: var(--muted);
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.enquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
  background: linear-gradient(180deg, #ffffff 0%, #edf9ff 100%);
}

.enquiry-copy {
  position: sticky;
  top: 104px;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-chips a {
  padding: 11px 14px;
  border-radius: 999px;
  background: #eaf8ff;
  color: #075981;
  font-weight: 900;
}

.form-card {
  padding: 26px;
  border: 1px solid rgba(0, 174, 239, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.06);
}

.enquiry-form {
  display: grid;
  gap: 15px;
}

.form-alert {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 850;
}

.form-alert.success {
  background: #ecfdf3;
  color: #027a48;
}

.form-alert.warning {
  background: #fff8db;
  color: #854a0e;
}

.form-alert.error {
  background: #fef3f2;
  color: #b42318;
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

.form-success {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: #ecfdf3;
  color: #027a48;
  font-weight: 800;
}

.chat-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: 28px;
  min-height: calc(100vh - 80px);
  padding: clamp(28px, 5vw, 64px);
  background: linear-gradient(180deg, #ffffff 0%, #edf9ff 100%);
}

.chat-info {
  align-self: center;
}

.suggestions {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.suggestions button {
  padding: 13px 15px;
  border: 1px solid rgba(0, 174, 239, 0.22);
  border-radius: 8px;
  background: #fff;
  color: var(--brand-dark);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.chat-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 620px;
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.chat-header img {
  width: 42px;
  height: 42px;
}

.chat-header span {
  display: block;
  color: var(--success);
  font-size: 13px;
  font-weight: 800;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  overflow: auto;
  background: #f8fbff;
}

.message {
  max-width: min(78%, 620px);
  padding: 12px 14px;
  border-radius: 8px;
  line-height: 1.55;
}

.message.bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
}

.message.user {
  align-self: flex-end;
  color: #07111f;
  background: var(--accent);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--dark);
}

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

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

.footer-brand strong {
  color: #fff;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-links a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .header-cta {
    display: none;
  }

  .hero-section,
  .split-section,
  .contact-section,
  .enquiry-section,
  .chat-shell {
    grid-template-columns: 1fr;
  }

  .enquiry-copy {
    position: static;
  }

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

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

  .brand strong {
    font-size: 20px;
  }

  .hero-section,
  .section,
  .page-hero,
  .chat-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .browser-frame {
    min-height: 390px;
  }

  .cta-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .message {
    max-width: 92%;
  }
}
