:root {
  --text:#0f172a;
  --muted:#475569;
  --bg:#f4f7fb;
  --panel:rgba(255,255,255,0.25);
  --panel-strong:rgba(255,255,255,0.92);
  --line:rgba(15,23,42,0.08);
  --shadow:0 18px 48px rgba(15, 23, 42, 0.12);
  --accent:#0ea5e9;
  --accent-strong:#0284c7;
  --accent2:#0f766e;
  --danger:#b91c1c;
  --success:#15803d;
  --radius:16px;
  --radius-sm:12px;
  --glass-blur:14px;
}

* { box-sizing:border-box; }

html {
  scroll-padding-top: 120px; /* Replace 80px with your navbar height */
}

body {
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 18% 20%, rgba(14,165,233,0.12), transparent 26%),
              radial-gradient(circle at 82% 10%, rgba(34,197,94,0.10), transparent 28%),
              #f4f7fb;
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
}

a { color:var(--accent); text-decoration: none !important; }
a:hover { color:var(--accent-strong); text-decoration:underline; }
a.btn:hover, a.social-link:hover { color:#ffffff; }

img { max-width:100%; height:auto; display:block; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 22px 16px; }

/* Glass helpers */
.glassy {
  background: var(--panel);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom:1px solid var(--line);
  box-shadow: var(--shadow);
}
.glassy-footer {
  background: var(--panel-strong);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-top:1px solid var(--line);
}

/* Navbar shell */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 12px 0 12px;
}
.topbar {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: visible; /* allow dropdown to show */
}
.nav {
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  min-height:72px;
  position: relative; /* anchor for absolute menu */
}
.brand .logo { height:50px; width:auto; display:block; }
.nav-left { display:flex; align-items:center; gap:10px; }

/* Mobile inline name + WA icon */
.mobile-nav-bar {
  display:none;
  align-items:center;
  gap:10px;
}
.mobile-brand-text { font-weight:800; color:var(--text); font-size:15px; }
.mobile-wa-icon img { width:26px; height:26px; display:block; }

/* Hamburger */
.nav-toggle {
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background: var(--panel-strong);
  backdrop-filter: blur(var(--glass-blur));
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:6px;
  flex-direction:column;
  padding:10px;
}
.nav-toggle span {
  display:block;
  width:100%;
  height:2px;
  background:var(--text);
  border-radius:4px;
}

/* Menu */
.menu-wrapper {
  display:flex;
  align-items:center;
  gap:14px;
}
.menu {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  font-size:14px;
  align-items:center;
}
.menu a {
  padding: 9px 12px;
  border-radius: 12px;
  color:var(--text);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.menu a:hover { background: rgba(14,165,233,0.12); color:var(--accent-strong); transform: translateY(-1px); }
.menu-ctas a:hover { color:var(--bg); }

.cta-row { display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px; }
.menu-ctas { display:flex; gap:10px; flex-wrap:wrap; }

/* Buttons */
.btn {
  display:inline-block;
  padding:11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #007bff, #00d4ff);
  color:#ffffff;
  font-weight:800;
  font-size:14px;
  border:none;
  cursor:pointer;
  box-shadow: 0 12px 30px rgba(14,165,233,0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 16px 36px rgba(14,165,233,0.28); }
.btn.secondary { background: linear-gradient(135deg, #111827, #1f2937); color:#f8fafc; box-shadow: 0 12px 28px rgba(17,24,39,0.20); }
.btn.whatsapp { background: linear-gradient(135deg, #25D366, #16a34a); color:#0b1220; box-shadow: 0 12px 28px rgba(37,211,102,0.24); }

/* Hero */
.hero-title {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0 0 32px;
  max-width: 500px;
}

/* Results Stats */
.results-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--success), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* Badges */
.badges { display:flex; gap:10px; flex-wrap:wrap; margin: 10px 0 0; }
.badge {
  font-size:13px;
  padding:7px 11px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--text);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 22px rgba(15,23,42,0.08);
}

/* Grid & cards */
.grid { display:grid; gap:14px; grid-template-columns: repeat(12, 1fr); margin-top: 18px; }
.card {
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  color:var(--text);
}
.card:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(15,23,42,0.16); border-color: rgba(14,165,233,0.24); }
.card h3 { margin: 0 0 8px; font-size:16px; letter-spacing:-0.01em; color:var(--text); }
.card p { margin: 0; color: var(--muted); font-size:14px; }

.span-8 { grid-column: span 8; }
.span-4 { grid-column: span 4; }

/* Sections */
.section { padding: 28px 0; }
.section h2 { font-size: clamp(22px, 3vw, 26px); margin:0 0 12px; letter-spacing:-0.01em; color:var(--text); }
.section p.lead { color:var(--muted); margin:0 0 18px; font-size:15px; }

/* Tables */
.table-wrap { overflow-x:auto; border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); background: rgba(255,255,255,0.92); }
table { width:100%; border-collapse:collapse; min-width: 780px; color:var(--text); }
th, td { padding: 13px 12px; border-bottom:1px solid rgba(15,23,42,0.06); vertical-align: top; }
th { text-align:left; background: rgba(255,255,255,0.85); font-size:13px; color:var(--text); }
td { font-size:14px; color:var(--text); }
tbody tr:nth-child(even) td { background: rgba(15,23,42,0.03); }
.plan { font-weight:800; }
.price { font-weight:800; color: var(--accent2); }
.small { font-size:13px; color:var(--muted); }
.note-inline { margin-top:10px; display:block; color:var(--muted); }

/* Details */
details {
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:12px 14px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow);
  color:var(--text);
}
details + details { margin-top: 10px; }
summary { cursor:pointer; font-weight:800; outline:none; color:var(--text); }
summary .small { font-weight:600; color:var(--muted); }

/* KPI */
.kpi { display:grid; gap:12px; grid-template-columns: repeat(3, 1fr); }
.kpi .box {
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow);
  color:var(--text);
}
.kpi .num { font-size: 20px; font-weight:900; letter-spacing:-0.01em; color:var(--text); }
.kpi .lbl { color:var(--muted); font-size:13px; }

/* Notes & divider */
.note {
  background: rgba(14,165,233,0.10);
  border:1px solid rgba(14,165,233,0.25);
  border-radius: var(--radius);
  padding:12px 14px;
  color:var(--text);
  box-shadow: var(--shadow);
}
.divider { height:1px; background:rgba(15,23,42,0.08); margin: 14px 0 0; }

/* Footer (merged duplicates; later values take precedence) */
.footer {
  padding: 18px 0;
  color:var(--muted);
  font-size:13px;
}

.footer-left { max-width: 520px; display:flex; flex-direction:column; gap:6px; }
.footer-note { color:var(--muted); margin:0; }
.socials { display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.socials img { width:26px; height:26px; filter: drop-shadow(0 6px 12px rgba(15,23,42,0.15)); }
.footer-right { max-width: 260px; }

/* ✅ FULLY RESPONSIVE FOOTER - Mobile First */
:root {
  --footer-bg: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  --footer-text: #e8f0fe;
  --footer-text-muted: #b8d2f2;
  --footer-accent: #00d4ff;
  --footer-link-hover: rgba(255,255,255,0.1);
}

.enhanced-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 40px 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Main Footer Grid */
.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo {
  height: 40px;
  width: auto;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--footer-text-muted);
  margin: 0 0 12px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--footer-text-muted);
  margin: 0;
  opacity: 0.8;
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-column {
  min-width: 0;
}

.footer-column h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.footer-column h4 i {
  color: var(--footer-accent);
  width: 20px;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--footer-text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
  text-decoration: none !important;
  line-height: 1.4;
}

.footer-column a:hover {
  color: white !important;
  background: var(--footer-link-hover) !important;
  padding: 0.25rem 0.5rem !important;
  border-radius: 6px !important;
  transform: translateX(4px) !important;
}

/* Contact Column */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--footer-link-hover);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: rgba(255,255,255,0.2);
  transform: translateX(4px);
}

.contact-link.whatsapp {
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.contact-link.whatsapp:hover {
  background: rgba(37, 211, 102, 0.3);
}

.coverage {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: var(--footer-text-muted);
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
}

.socials-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.stay-connected {
  font-size: 1rem;
  color: var(--footer-text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.social-link.whatsapp:hover {
  background: rgba(37, 211, 102, 0.3);
}

.footer-cta {
  text-align: center;
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.95rem;
}

/* Facebook Widget */
.fb-widget {
  margin-top: 2rem;
  text-align: center;
}

/* ===========================================
   TABLET & DESKTOP RESPONSIVE BREAKPOINTS
============================================= */

/* Tablet (768px+) */
@media (min-width: 768px) {
  .enhanced-footer {
    padding: 60px 0 20px;
  }
  
  .footer-main {
    grid-template-columns: 300px 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
    text-align: left;
  }
  
  .brand-text {
    font-size: 1.8rem;
  }
  
  .footer-links {
    flex-direction: row;
    gap: 2rem;
  }
  
  .socials-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-cta {
    margin-top: 16px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .footer-main {
    gap: 4rem;
  }
  
  .footer-links {
    gap: 3rem;
  }
  
  .footer-column {
    flex: 1;
  }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .footer-inner {
    padding: 0 24px;
  }
}

/* Print Styles */
@media print {
  .enhanced-footer {
    display: none;
  }
}
.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-link {
  color: #b8d2f2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border-radius: 6px;
  text-decoration: none !important;
}
.contact-link:hover {
  color: white !important;
  background: rgba(255,255,255,0.1) !important;
  padding-left: 1rem !important;
  transform: translateX(4px) !important;
}
.contact-link.whatsapp i { color: #25D366; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Social links (merged; later styles take precedence) */
.socials-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none !important;
}
.social-link:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Form */
.form-card { margin-top:0; background: rgba(255,255,255,0.94); }
.contact-form { display:grid; gap:14px; max-width: 640px; }
.field { display:flex; flex-direction:column; gap:6px; }
label { font-weight:600; font-size:14px; color:var(--text); }
input[type="text"], input[type="email"], textarea, input[type="tel"] {
  border:1px solid var(--line);
  border-radius: var(--radius-sm);
  padding:11px 12px;
  font-size:14px;
  background: rgba(255,255,255,0.9);
  color:var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.18);
  background: rgba(255,255,255,1);
}
textarea { resize: vertical; min-height: 60px; }
.hp-field { position:absolute; left:-5000px; top:-5000px; }
.alert {
  padding:10px 12px;
  border-radius: var(--radius-sm);
  font-size:14px;
  border:1px solid transparent;
}
.alert.success { background: rgba(34,197,94,0.10); border-color: rgba(34,197,94,0.25); color:#166534; }
.alert.error { background: rgba(248,113,113,0.10); border-color: rgba(248,113,113,0.25); color:#b91c1c; }
.captcha-row { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.captcha-row input[type="text"] { width:82px; text-align:center; }
.captcha-equals { font-weight:700; color:var(--text); }

/* Contact layout */
.contact-flex {
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap:16px;
  align-items:start;
}
.form-col { min-width:0; }
.info-col { display:grid; gap:12px; }

/* Form rows */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field-half { min-width: 0; }
.action-row {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 12px;
  align-items: end;
}
.action-row .btn {
  height: 46px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hover disable on touch */
@media (hover: none) {
  .card:hover { transform:none; box-shadow: var(--shadow); }
  .btn:hover { transform:none; box-shadow: 0 12px 30px rgba(14,165,233,0.22); }
}

/* Hide hero on mobile */
@media (max-width: 1025px) {
  .hero-media { display:none; }
  .hideonmobile { display:none; }
  .hero-grid { display:flex; }
}

/* Navbar mobile and responsive adjustments */
@media (max-width: 900px) {
	.nav-toggle { display:flex; }
  .mobile-nav-bar { display:flex; }
  .menu-wrapper {
    position: absolute;
    top: calc(72px + 8px);
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 12px 16px 16px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border:1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap:12px;
    display: none;
    z-index: 60;
  }
  .menu-wrapper.open { display:flex; }
  .menu { width:100%; flex-direction: column; align-items:flex-start; gap:8px; }
  .menu a { width:100%; }
  .menu-ctas { width:100%; flex-direction: column; }
  .menu-ctas .btn { width:100%; text-align:center; }

  /* Responsive layout changes */
  .contact-flex { grid-template-columns: 1fr; }
}

/* Smaller screens */
@media (max-width: 720px) {
  .field-row { grid-template-columns: 1fr; }
  .action-row { grid-template-columns: 1fr; }
  .action-row .btn { width: 100%; }
}

/* Even smaller */
@media (max-width: 540px) {
  .wrap { padding: 20px 14px; }
  .btn { width: 100%; text-align:center; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .grid { grid-template-columns: repeat(12, 1fr); }
  .span-8, .span-4 { grid-column: span 12; }
  .captcha-row { flex-wrap: wrap; }
  .footer-inner { flex-direction: column; }
  .brand .logo { height:30px; width:auto; display:block; }
}

/* Very small */
@media (max-width: 350px) {
  .brand .logo { height:15px; width:auto; display:block; }
}

/* Services section */
.services-section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  transition: all 0.3s ease;
  padding: 1.5rem;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,123,255,0.12);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #007bff, #00d4ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 20px rgba(0,123,255,0.18);
  transition: all 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.05); }
.service-icon i { font-size: 1.25rem; color: white; }
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
.services-grid { gap: 1.5rem; }
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .service-card { padding: 1.25rem; margin-bottom: 0; }
  .service-icon { width: 48px; height: 48px; }
}

/* Pricing */
.pricing-section {
  padding: 80px 0;
}
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e8f0fe;
}
.pricing-card.popular {
  border-color: #007bff;
  box-shadow: 0 20px 60px rgba(0,123,255,0.15);
  transform: scale(1.02);
}
.popular-badge {
  position: absolute;
  top: -8px;
  right: 20px;
  background: #ff6b35;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.card-header { text-align: center; margin-bottom: 1.5rem; }
.plan-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #007bff, #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.plan-icon i { font-size: 1.5rem; color: white; }
.price-box { margin: 1rem 0; }
.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  display: block;
}
.price-period { color: #666; font-size: 0.95rem; font-weight: 500; }
.features-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #444;
}
.features-list i { color: #28a745; width: 18px; }
.pricing-note {
  background: #e8f5ff;
  border-left: 4px solid #007bff;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 8px;
}
.pricing-note i { color: #007bff; margin-top: 0.25rem; font-size: 1.2rem; }
@media (max-width: 768px) {
  .pricing-cards-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .price { font-size: 2.2rem; }
}

/* Package details & accordion */
.package-details { padding: 60px 0; }
.package-accordion { max-width: 900px; margin: 0 auto; }
.package-item {
  background: white;
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.package-item:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.package-item summary {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
}
.package-item summary::-webkit-details-marker { display: none; }
.package-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #007bff, #00d4ff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.package-icon i { color: white; font-size: 1.2rem; }
.package-item h4 { margin: 0; font-size: 1.3rem; flex: 1; }
.package-item h4 span { font-size: 1rem; font-weight: 500; color: #666; }
.ideal-for { color: #666; font-size: 0.9rem; font-style: italic; }
.package-content { padding: 0 2rem 2rem; }
.package-content ul { list-style: none; padding: 0; }
.package-content li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.package-content li:last-child { border-bottom: none; }
.package-content i { color: #28a745; width: 20px; }

.package-custom {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 2.5rem;
  border-radius: 16px;
  margin-top: 2rem;
}
.custom-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}
.custom-price { font-size: 1.5rem; margin: 1rem 0; }

/* LOGO SPECIFIC STYLES */
.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-brand .logo {
  width: 42px !important;
  height: 42px !important;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}
.footer-brand .brand:hover .logo {
  filter: brightness(0) invert(1) saturate(1.2);
  transform: scale(1.05);
}
.footer-brand .brand span { color: white; font-weight: 700; }

/* NO UNDERLINES ANYWHERE (applies globally for footer/contact/social links) */
.footer-column a,
.contact-link,
.social-link { text-decoration: none !important; }

/* End of cleaned CSS */

/* Hero Section - Complete Improved Version */
:root {
  --primary: #0088db;
  --primary-dark: #1d4ed8;
  --accent: #f59e0b;
  --success: #10b981;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
}

.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Language Toggle */
.lang-toggle {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.lang-btn {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--white);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(37,99,235,0.15);
}

/* Hero Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  
  .hero-media {
    order: -1;
  }
}

/* Hero Content */
.hero-content {
  max-width: 600px;
}

.trust-badge {
  display: inline-flex;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(37,99,235,0.3);
}

.hero-title {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0 0 32px;
  max-width: 500px;
}

/* Results Stats */
.results-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--success), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* CTAs */
.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}


.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,99,235,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn i.icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn:hover i.icon {
  transform: translateX(4px);
}

/* Trust Signals */
.trust-signals {
  margin-top: 24px;
}

.trust-text {
  font-size: 14px;
  color: var(--success);
  font-weight: 600;
}

/* Hero Media */
.hero-media {
  position: relative;
}

.media-wrapper {
  position: relative;
}

.hero-media img {
  width: 100%;
  object-fit: cover;
}

.growth-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #25D366, #16a34a);
  color: white;
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(16,185,129,0.4);
}

.growth-badge span:first-child {
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.growth-badge span:last-child {
  font-size: 14px;
  opacity: 0.9;
}

/* Quick Contact */
.quick-contact {
	border-left: 4px solid #16a34a;
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  margin-top: 48px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 5px;
  color: var(--text);
}

.contact-card p {
  color: var(--text-light);
  margin: 0 0 5px;
  font-size: 15px;
}


/* Mobile Optimizations */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero-container {
    padding: 0 20px;
  }
  
  .hero-grid {
    gap: 28px;
  }
  
  .results-stats {
    justify-content: center;
  }
  
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .quick-contact {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 24px;
  }
  
  .hero-lead {
    font-size: 16px;
  }
}


/* VIP button*/
.uiverse {
  --duration: 7s;
  --easing: linear;
  --c-color-1: rgba(255, 163, 26, 0.7);
  --c-color-2: #1a23ff;
  --c-color-3: #e21bda;
  --c-color-4: rgba(255, 232, 26, 0.7);
  --c-shadow: rgba(255, 223, 87, 0.5);
  --c-shadow-inset-top: rgba(255, 223, 52, 0.9);
  --c-shadow-inset-bottom: rgba(255, 250, 215, 0.8);
  --c-radial-inner: #ffd215;
  --c-radial-outer: #fff172;
  --c-color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  outline: none;
  position: relative;
  cursor: pointer;
  border: none;
  display: table;
  border-radius: 24px;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: var(--c-color);
  background: radial-gradient(
    circle,
    var(--c-radial-inner),
    var(--c-radial-outer) 80%
  );
  box-shadow: 0 0 14px var(--c-shadow);
}

.uiverse:before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  box-shadow:
    inset 0 3px 12px var(--c-shadow-inset-top),
    inset 0 -3px 4px var(--c-shadow-inset-bottom);
}

.uiverse .wrapper {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  overflow: hidden;
  border-radius: 24px;
  min-width: 132px;
  padding: 12px 0;
}

.uiverse .wrapper span {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.uiverse:hover {
  --duration: 1400ms;
}

.uiverse .wrapper .circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  filter: blur(var(--blur, 8px));
  background: var(--background, transparent);
  transform: translate(var(--x, 0), var(--y, 0)) translateZ(0);
  animation: var(--animation, none) var(--duration) var(--easing) infinite;
}

.uiverse .wrapper .circle.circle-1,
.uiverse .wrapper .circle.circle-9,
.uiverse .wrapper .circle.circle-10 {
  --background: var(--c-color-4);
}

.uiverse .wrapper .circle.circle-3,
.uiverse .wrapper .circle.circle-4 {
  --background: var(--c-color-2);
  --blur: 14px;
}

.uiverse .wrapper .circle.circle-5,
.uiverse .wrapper .circle.circle-6 {
  --background: var(--c-color-3);
  --blur: 16px;
}

.uiverse .wrapper .circle.circle-2,
.uiverse .wrapper .circle.circle-7,
.uiverse .wrapper .circle.circle-8,
.uiverse .wrapper .circle.circle-11,
.uiverse .wrapper .circle.circle-12 {
  --background: var(--c-color-1);
  --blur: 12px;
}

.uiverse .wrapper .circle.circle-1 {
  --x: 0;
  --y: -40px;
  --animation: circle-1;
}

.uiverse .wrapper .circle.circle-2 {
  --x: 92px;
  --y: 8px;
  --animation: circle-2;
}

.uiverse .wrapper .circle.circle-3 {
  --x: -12px;
  --y: -12px;
  --animation: circle-3;
}

.uiverse .wrapper .circle.circle-4 {
  --x: 80px;
  --y: -12px;
  --animation: circle-4;
}

.uiverse .wrapper .circle.circle-5 {
  --x: 12px;
  --y: -4px;
  --animation: circle-5;
}

.uiverse .wrapper .circle.circle-6 {
  --x: 56px;
  --y: 16px;
  --animation: circle-6;
}

.uiverse .wrapper .circle.circle-7 {
  --x: 8px;
  --y: 28px;
  --animation: circle-7;
}

.uiverse .wrapper .circle.circle-8 {
  --x: 28px;
  --y: -4px;
  --animation: circle-8;
}

.uiverse .wrapper .circle.circle-9 {
  --x: 20px;
  --y: -12px;
  --animation: circle-9;
}

.uiverse .wrapper .circle.circle-10 {
  --x: 64px;
  --y: 16px;
  --animation: circle-10;
}

.uiverse .wrapper .circle.circle-11 {
  --x: 4px;
  --y: 4px;
  --animation: circle-11;
}

.uiverse .wrapper .circle.circle-12 {
  --blur: 14px;
  --x: 52px;
  --y: 4px;
  --animation: circle-12;
}

@keyframes circle-1 {
  33% {
    transform: translate(0px, 16px) translateZ(0);
  }

  66% {
    transform: translate(12px, 64px) translateZ(0);
  }
}

@keyframes circle-2 {
  33% {
    transform: translate(80px, -10px) translateZ(0);
  }

  66% {
    transform: translate(72px, -48px) translateZ(0);
  }
}

@keyframes circle-3 {
  33% {
    transform: translate(20px, 12px) translateZ(0);
  }

  66% {
    transform: translate(12px, 4px) translateZ(0);
  }
}

@keyframes circle-4 {
  33% {
    transform: translate(76px, -12px) translateZ(0);
  }

  66% {
    transform: translate(112px, -8px) translateZ(0);
  }
}

@keyframes circle-5 {
  33% {
    transform: translate(84px, 28px) translateZ(0);
  }

  66% {
    transform: translate(40px, -32px) translateZ(0);
  }
}

@keyframes circle-6 {
  33% {
    transform: translate(28px, -16px) translateZ(0);
  }

  66% {
    transform: translate(76px, -56px) translateZ(0);
  }
}

@keyframes circle-7 {
  33% {
    transform: translate(8px, 28px) translateZ(0);
  }

  66% {
    transform: translate(20px, -60px) translateZ(0);
  }
}

@keyframes circle-8 {
  33% {
    transform: translate(32px, -4px) translateZ(0);
  }

  66% {
    transform: translate(56px, -20px) translateZ(0);
  }
}

@keyframes circle-9 {
  33% {
    transform: translate(20px, -12px) translateZ(0);
  }

  66% {
    transform: translate(80px, -8px) translateZ(0);
  }
}

@keyframes circle-10 {
  33% {
    transform: translate(68px, 20px) translateZ(0);
  }

  66% {
    transform: translate(100px, 28px) translateZ(0);
  }
}

@keyframes circle-11 {
  33% {
    transform: translate(4px, 4px) translateZ(0);
  }

  66% {
    transform: translate(68px, 20px) translateZ(0);
  }
}

@keyframes circle-12 {
  33% {
    transform: translate(56px, 0px) translateZ(0);
  }

  66% {
    transform: translate(60px, -32px) translateZ(0);
  }
}

/* FAQ */

.faq-section {
  padding-button: 100px;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.section-header h2 i {
  color: #007bff;
  font-size: 2.2rem;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
    margin-right: auto;
  margin-left: auto;
}

.faq-item:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.faq-item[open] {
  border-color: #007bff;
}

.faq-item summary {
  padding: 1.75rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  transition: background 0.3s ease;
}


.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #007bff, #00d4ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;

}

.faq-item h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #1a1a1a;
  font-weight: 600;
}

.faq-answer {
  padding: 0 2rem 2rem;
}

.faq-answer p {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.faq-answer ul {
  list-style: none;
  padding-left: 0;
}

.faq-answer li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #495057;
}

.faq-answer li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.1rem;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1rem 0;
}

.business-grid span {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  text-align: center;
  border: 1px solid #e9ecef;
}

.faq-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .faq-item summary {
    padding: 1.5rem;
  }
}

/* ROI */

