/* assets/css/style.css - Xhost.lk Official Brand Light Theme */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

:root {
  /* Xhost Brand Colors from Official Identity */
  --xhost-cyan: #ff2e54;
  --xhost-red: #e11d48;
  --xhost-blue: #e11d48;
  --xhost-dark: #131722;
  --xhost-gradient: linear-gradient(135deg, #ff1a40 0%, #e11d48 50%, #be123c 100%);
  --xhost-gradient-hover: linear-gradient(135deg, #ff3355 0%, #e11d48 50%, #9f1239 100%);
  
  --primary: #e11d48;
  --primary-hover: #be123c;
  --primary-active: #9f1239;
  --primary-light: #fff1f2;
  --primary-border: #fecdd3;
  --primary-glow: rgba(225, 29, 72, 0.16);

  --secondary: #ff2e54;
  --secondary-light: #fff1f2;

  --accent: #4f46e5;
  --accent-light: #eef2ff;

  --success: #10b981;
  --success-dark: #047857;
  --success-light: #ecfdf5;
  --success-border: #a7f3d0;

  --warning: #f59e0b;
  --warning-dark: #b45309;
  --warning-light: #fffbeb;
  --warning-border: #fde68a;

  --danger: #ef4444;
  --danger-light: #fef2f2;
  --danger-border: #fecaca;

  /* Surfaces & Backgrounds */
  --bg-body: #ffffff;
  --bg-surface: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-subtle-hover: #f1f5f9;

  /* Borders */
  --border-subtle: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-focus: #e11d48;

  /* Text Colors */
  --text-main: #131722;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-inverse: #ffffff;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Premium Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(19, 23, 34, 0.04);
  --shadow-sm: 0 2px 5px -1px rgba(19, 23, 34, 0.06), 0 1px 3px -1px rgba(19, 23, 34, 0.04);
  --shadow-md: 0 6px 18px -2px rgba(19, 23, 34, 0.07), 0 2px 6px -1px rgba(225, 29, 72, 0.04);
  --shadow-lg: 0 14px 32px -4px rgba(19, 23, 34, 0.08), 0 4px 12px -2px rgba(225, 29, 72, 0.06);
  --shadow-xl: 0 24px 50px -8px rgba(19, 23, 34, 0.12), 0 8px 20px -4px rgba(225, 29, 72, 0.08);
  --shadow-primary: 0 10px 25px -3px rgba(225, 29, 72, 0.32);
  --shadow-card-hover: 0 20px 38px -6px rgba(19, 23, 34, 0.1), 0 6px 18px -2px rgba(225, 29, 72, 0.08);

  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #ffffff;
  color: var(--text-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-body);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-brand img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-badge-tld {
  background: var(--xhost-gradient);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(225, 29, 72, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--xhost-blue);
  background: var(--primary-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-xs);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-primary {
  background: var(--xhost-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-primary);
  border: none;
}

.btn-primary:hover {
  background: var(--xhost-gradient-hover);
  box-shadow: 0 12px 28px -3px rgba(225, 29, 72, 0.42);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: var(--border-medium);
  color: var(--xhost-blue);
}

.btn-success {
  background: var(--success);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}

.btn-success:hover {
  background: var(--success-dark);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #1eb957;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

/* Gradient Text matching Xhost Cyan to Blue */
.gradient-text {
  background: var(--xhost-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
  padding: 70px 0 50px;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--primary-border);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--xhost-blue);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero-badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--xhost-cyan);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(255, 46, 84, 0.3);
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-main);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 34px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

/* Domain Search Box in Hero */
.domain-search-card {
  max-width: 780px;
  margin: 0 auto 45px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-lg);
}

.domain-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 6px 6px 6px 18px;
  transition: var(--transition);
}

.domain-search-form:focus-within {
  background: #ffffff;
  border-color: var(--xhost-blue);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.domain-icon {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.domain-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-main);
  outline: none;
}

.domain-input::placeholder {
  color: var(--text-light);
}

.domain-tld-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.tld-pill {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
}

.tld-pill span {
  color: var(--xhost-blue);
  font-weight: 700;
}

/* Hero Feature Highlights */
.hero-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
}

.hero-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--xhost-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

/* Sections */
.section {
  padding: 85px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--xhost-blue);
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--text-main);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* Glass Card / Modern Light Cards */
.glass-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.glass-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-medium);
}

/* Pricing Grid */
.pricing-section {
  padding: 80px 0 100px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-border);
}

.pricing-card.featured {
  background: #ffffff;
  border: 2px solid var(--xhost-blue);
  box-shadow: 0 18px 40px -4px rgba(225, 29, 72, 0.18);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 24px 48px -6px rgba(225, 29, 72, 0.26);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--xhost-gradient);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
}

.plan-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  min-height: 42px;
  line-height: 1.5;
  margin-bottom: 24px;
}

.plan-price-box {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.plan-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.plan-price {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-main);
  font-family: var(--font-mono);
}

.plan-cycle {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.45;
}

.check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--success-light);
  color: var(--success-dark);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* Speed Benchmark Section */
.benchmark-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

.benchmark-row {
  display: grid;
  grid-template-columns: 210px 1fr 100px;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.benchmark-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.benchmark-bar-track {
  background: var(--bg-subtle);
  height: 14px;
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.benchmark-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 1s ease-in-out;
}

.benchmark-val {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: right;
  color: var(--text-main);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feat-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feat-blue { background: var(--primary-light); color: var(--xhost-blue); }
.feat-green { background: var(--success-light); color: var(--success); }
.feat-indigo { background: var(--accent-light); color: var(--accent); }
.feat-sky { background: var(--secondary-light); color: var(--xhost-cyan); }
.feat-amber { background: var(--warning-light); color: var(--warning); }
.feat-rose { background: var(--danger-light); color: var(--danger); }

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-item.active {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--xhost-blue);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary-light);
  color: var(--xhost-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 24px;
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* Forms */
.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--xhost-blue);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.input-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.badge-paid {
  background: var(--success-light);
  color: var(--success-dark);
  border: 1px solid var(--success-border);
}

.badge-unpaid {
  background: var(--warning-light);
  color: var(--warning-dark);
  border: 1px solid var(--warning-border);
}

.badge-active {
  background: var(--primary-light);
  color: var(--xhost-blue);
  border: 1px solid var(--primary-border);
}

/* Invoice Layout */
.invoice-wrapper {
  padding: 50px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 30px;
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.invoice-table th {
  background: var(--bg-subtle);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 18px;
  text-align: left;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.invoice-table td {
  padding: 18px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.92rem;
  color: var(--text-body);
}

.bank-info-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 30px;
}

.bank-copy-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bank-copy-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.bank-copy-btn:hover {
  background: var(--primary-light);
  color: var(--xhost-blue);
  border-color: var(--primary-border);
}

/* Footer */
footer {
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 35px;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--xhost-blue);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
  flex-wrap: wrap;
  gap: 16px;
}

.payment-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-badge {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-body);
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  padding: 12px 20px 12px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  background: #1eb957;
  color: #ffffff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-ping {
  position: relative;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
}

.whatsapp-ping::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  animation: waPulse 1.8s infinite;
}

@keyframes waPulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Responsive Styles */
@media (max-width: 960px) {
  .hero h1 { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .benchmark-row { grid-template-columns: 1fr; gap: 8px; }
  .benchmark-val { text-align: left; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .domain-search-form { flex-direction: column; padding: 12px; }
  .domain-search-form .btn { width: 100%; }
  .invoice-header { flex-direction: column; gap: 20px; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { padding: 14px; border-radius: 50%; }
}

/* Print Stylesheet */
@media print {
  body { background: #ffffff !important; color: #000000 !important; font-size: 12pt !important; }
  .navbar, .floating-whatsapp, .no-print, .btn, .hero-cta-group { display: none !important; }
  .glass-card { box-shadow: none !important; border: 1px solid #ddd !important; padding: 0 !important; }
  .invoice-table th, .invoice-table td { border-color: #eee !important; color: #000 !important; }
  .bank-info-box { background: #fdfdfd !important; border: 1px solid #ccc !important; }
}
