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

:root {
  --black: #0a0a0a;
  --dark: #111318;
  --mid: #1e2128;
  --accent: #3b6bff;
  --accent-light: #5a84ff;
  --accent-dark: #2a50d6;
  --white: #ffffff;
  --off-white: #f5f6fa;
  --text: #1a1d27;
  --muted: #6b7280;
  --border: #e5e7eb;
  --success: #10b981;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 15px; cursor: pointer; text-decoration: none; border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s, box-shadow 0.18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); box-shadow: 0 6px 20px rgba(59,107,255,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline-dark:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-nav { background: var(--accent); color: #fff; padding: 10px 20px; font-size: 14px; }
.btn-nav:hover { background: var(--accent-dark); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; gap: 32px; padding: 16px 24px; max-width: 1120px; margin: 0 auto; }
.nav-logo { font-size: 20px; font-weight: 800; color: var(--accent); text-decoration: none; letter-spacing: -0.5px; flex-shrink: 0; }
.nav-links { display: flex; list-style: none; gap: 28px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
.nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text); margin-left: auto; }
.nav-mobile { display: none; flex-direction: column; gap: 4px; padding: 16px 24px; background: var(--white); border-top: 1px solid var(--border); }
.nav-mobile a { color: var(--text); text-decoration: none; padding: 10px 0; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--border); }
.nav-mobile.open { display: flex; }

/* HERO */
.hero { position: relative; background: linear-gradient(135deg, #0d1117 0%, #111827 40%, #1a1f3a 100%); color: #fff; padding: 100px 0 120px; overflow: hidden; }
.hero .container { position: relative; z-index: 2; }
.hero-tag { display: inline-block; background: rgba(59,107,255,0.2); border: 1px solid rgba(59,107,255,0.4); color: var(--accent-light); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 24px; }
.hero-title { font-size: clamp(40px, 6vw, 72px); font-weight: 800; line-height: 1.1; letter-spacing: -2px; margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 560px; margin-bottom: 36px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-proof { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 500; }
.dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.hero-bg-shape { position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(59,107,255,0.15) 0%, transparent 70%); border-radius: 50%; z-index: 1; }

/* SECTIONS */
.section { padding: 96px 0; }
.section-dark { background: var(--dark); }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-label.light { color: var(--accent-light); }
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; line-height: 1.2; }
.section-title.light { color: var(--white); }
.section-sub { font-size: 17px; color: var(--muted); max-width: 580px; margin-bottom: 56px; }
.section-sub.light { color: rgba(255,255,255,0.6); }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.step-card { background: var(--off-white); border-radius: var(--radius); padding: 28px; display: flex; gap: 20px; align-items: flex-start; border: 1px solid var(--border); transition: box-shadow 0.2s; }
.step-card:hover { box-shadow: var(--shadow); }
.step-number { font-size: 28px; font-weight: 800; color: var(--accent); opacity: 0.3; line-height: 1; flex-shrink: 0; min-width: 36px; }
.step-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.step-content em { color: var(--accent); font-style: normal; font-size: 12px; font-weight: 600; }

/* PACKAGES */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; margin-bottom: 32px; }
.package-card { background: #1a1f2e; border-radius: var(--radius); padding: 32px; border: 1px solid rgba(255,255,255,0.08); position: relative; transition: transform 0.2s, box-shadow 0.2s; }
.package-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.package-card--featured { background: var(--white); border: 2px solid var(--accent); transform: scale(1.03); }
.package-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.package-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 16px; border-radius: 100px; white-space: nowrap; }
.package-name { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--accent-light); display: block; margin-bottom: 8px; }
.package-card--featured .package-name { color: var(--accent); }
.package-price { font-size: 48px; font-weight: 800; color: var(--white); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.package-card--featured .package-price { color: var(--text); }
.package-tagline { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 28px; line-height: 1.5; }
.package-card--featured .package-tagline { color: var(--muted); }
.package-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.package-features li { font-size: 14px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 10px; }
.package-card--featured .package-features li { color: var(--text); }
.tick { color: var(--success); font-size: 14px; flex-shrink: 0; }
.packages-note { text-align: center; color: rgba(255,255,255,0.5); font-size: 14px; }
.packages-note a { color: var(--accent-light); text-decoration: underline; }

/* TOOLS */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.tool-card { padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); transition: border-color 0.2s, box-shadow 0.2s; }
.tool-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.tool-icon { font-size: 20px; margin-bottom: 14px; color: var(--accent); }
.tool-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.tool-card p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.tool-card em { color: var(--accent); font-style: normal; font-size: 12px; font-weight: 600; }

/* CONTACT */
.section-contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-left p { font-size: 16px; color: var(--muted); margin-bottom: 24px; line-height: 1.7; }
.contact-details p { font-size: 15px; color: var(--muted); }
.trust-signals { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.trust-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); }
.trust-icon { color: var(--success); font-size: 14px; flex-shrink: 0; margin-top: 2px; }

.enquiry-form { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit; color: var(--text); background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,107,255,0.12);
}
.form-group textarea { resize: vertical; }
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px; }
.form-success { background: rgba(16,185,129,0.1); border: 1px solid var(--success); color: var(--success); border-radius: var(--radius-sm); padding: 14px; text-align: center; font-weight: 600; font-size: 14px; margin-top: 16px; }

/* FOOTER */
.footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 48px 0 24px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; flex-wrap: wrap; gap: 24px; }
.footer-brand p { font-size: 14px; margin-top: 8px; max-width: 280px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 14px; text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 13px; }

/* CHAT WIDGET */
.chat-launcher {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: var(--accent); color: #fff; border: none; border-radius: 100px;
  padding: 14px 20px 14px 16px; cursor: pointer; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(59,107,255,0.45); transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit; font-size: 14px; font-weight: 600;
}
.chat-launcher:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(59,107,255,0.55); }
.chat-launcher-label { white-space: nowrap; }

.chat-widget {
  position: fixed; bottom: 96px; right: 28px; z-index: 998;
  width: 380px; max-height: 560px; background: var(--white);
  border-radius: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; pointer-events: none; transform: translateY(16px) scale(0.97);
  transition: opacity 0.22s, transform 0.22s;
}
.chat-widget.open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }

.chat-header { background: var(--accent); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; }
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 36px; height: 36px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 16px; flex-shrink: 0; }
.chat-name { font-weight: 700; color: #fff; font-size: 15px; }
.chat-status { font-size: 12px; color: rgba(255,255,255,0.75); }
.chat-close { background: none; border: none; color: rgba(255,255,255,0.8); font-size: 22px; cursor: pointer; line-height: 1; padding: 2px 4px; }
.chat-close:hover { color: #fff; }

.chat-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; scroll-behavior: smooth; }
.chat-msg { max-width: 80%; border-radius: 12px; padding: 12px 14px; font-size: 14px; line-height: 1.5; }
.chat-msg.bot { background: var(--off-white); color: var(--text); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--accent); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg.bot strong { color: var(--accent); }
.chat-options { display: flex; flex-direction: column; gap: 8px; padding: 0 20px 16px; }
.chat-option-btn {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 14px; font-size: 13px; font-weight: 500; color: var(--text);
  cursor: pointer; text-align: left; transition: border-color 0.15s, background 0.15s; font-family: inherit;
}
.chat-option-btn:hover { border-color: var(--accent); background: rgba(59,107,255,0.05); color: var(--accent); }

.chat-input-area { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--border); }
.chat-input-area input { flex: 1; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 10px 12px; font-size: 14px; font-family: inherit; outline: none; }
.chat-input-area input:focus { border-color: var(--accent); }
.chat-input-area button { background: var(--accent); border: none; border-radius: var(--radius-sm); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: background 0.15s; }
.chat-input-area button:hover { background: var(--accent-dark); }
.chat-typing { align-self: flex-start; background: var(--off-white); border-radius: 12px; border-bottom-left-radius: 4px; padding: 12px 16px; display: flex; gap: 4px; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: typing 1s infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }

/* NAV ACTIONS */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-outline-nav { background: transparent; color: var(--muted); border-color: var(--border); font-size: 13px; padding: 8px 16px; }
.btn-outline-nav:hover { border-color: var(--accent); color: var(--accent); transform: none; }

/* COVERAGE SECTION */
.section-alt { background: var(--off-white); }
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-bottom: 24px; }
.coverage-item { background: var(--white); border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); transition: border-color 0.2s, box-shadow 0.2s; }
.coverage-item:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.cov-icon { font-size: 20px; margin-bottom: 10px; display: block; }
.coverage-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.coverage-item p { font-size: 13px; color: var(--muted); line-height: 1.4; }
.coverage-disclaimer { font-size: 12px; color: var(--muted); background: rgba(245,158,11,0.06); border-left: 3px solid rgba(245,158,11,0.4); padding: 10px 14px; border-radius: 4px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; }
  .package-card--featured { transform: none; }
  .package-card--featured:hover { transform: translateY(-4px); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 600px) {
  .hero { padding: 72px 0 80px; }
  .hero-ctas { flex-direction: column; }
  .chat-widget { width: calc(100vw - 32px); right: 16px; bottom: 80px; }
  .chat-launcher { right: 16px; bottom: 16px; }
  .section { padding: 64px 0; }
}
