/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: #1a2340; background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --blue: #0d6efd;
  --dark-blue: #0a2d6e;
  --light-blue: #4db8ff;
  --accent: #00b4d8;
  --green: #25d366;
  --text: #1a2340;
  --muted: #6b7a99;
  --bg-light: #f8faff;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(13,110,253,0.10);
  --shadow-lg: 0 8px 40px rgba(13,110,253,0.15);
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 8px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: 2px solid transparent;
  transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: #0b5ed7; border-color: #0b5ed7; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-outline-dark { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-dark:hover { background: var(--blue); color: #fff; }
.btn-whatsapp { background: var(--green); color: #fff; border-color: var(--green); }
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--dark-blue); border-color: #fff; }
.btn-white:hover { background: #f0f4ff; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 16px 24px; max-width: 1200px; margin: 0 auto;
}
.logo img { 
  height: 93px; 
  width: auto; 
  display: block;
}
/* Ensure SVG logo displays properly */
.logo svg {
  height: 93px;
  width: auto;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  padding: 8px 14px; border-radius: 6px; font-weight: 500;
  color: var(--text); font-size: 0.95rem; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue); background: #f0f4ff;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1a4fa0 50%, #0d6efd 100%);
  color: #fff; padding: 80px 0 0; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,0.04); pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; padding-bottom: 60px; }
.badge {
  display: inline-block; background: rgba(255,255,255,0.15);
  color: #fff; padding: 6px 16px; border-radius: 20px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.25);
}
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 580px; }
.highlight { color: var(--light-blue); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.15);
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.6rem; font-weight: 800; color: #fff; }
.stat span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.hero-wave { line-height: 0; }
.hero-wave svg { display: block; width: 100%; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1a4fa0 100%);
  color: #fff; padding: 60px 0; text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.section-header p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ===== FEATURES ===== */
.features-section { background: var(--bg-light); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.feature-card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem; margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 0.95rem; }

/* ===== PLANS ===== */
.plans-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px; align-items: start;
}
.full-plans { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.plan-card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  border: 2px solid var(--border); position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card.popular {
  border-color: var(--blue); box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; padding: 4px 18px;
  border-radius: 20px; font-size: 0.8rem; font-weight: 700; white-space: nowrap;
}
.plan-name { font-size: 1.2rem; font-weight: 800; color: var(--dark-blue); margin-bottom: 12px; }
.plan-price { font-size: 2.4rem; font-weight: 800; color: var(--blue); line-height: 1; }
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.plan-yearly { font-size: 0.85rem; color: var(--muted); margin: 6px 0 24px; }
.plan-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.plan-features li i.fa-check { color: #22c55e; font-size: 0.85rem; flex-shrink: 0; }
.plan-features li.no { color: var(--muted); }
.plan-features li.no i.fa-times { color: #ef4444; font-size: 0.85rem; flex-shrink: 0; }
.plan-tag {
  text-align: center; margin-top: 16px; font-size: 0.8rem;
  color: var(--muted); font-weight: 600;
}
.plans-cta { text-align: center; margin-top: 40px; }
.tax-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 24px; }

/* ===== BILLING TOGGLE ===== */
.billing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 48px;
}
.toggle-label { font-weight: 600; color: var(--muted); font-size: 1rem; }
.toggle-label.active { color: var(--blue); }
.save-badge {
  background: #dcfce7; color: #16a34a; padding: 2px 10px;
  border-radius: 12px; font-size: 0.78rem; font-weight: 700; margin-left: 6px;
}
.switch { position: relative; display: inline-block; width: 52px; height: 28px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; cursor: pointer; inset: 0;
  background: #cbd5e1; border-radius: 28px; transition: 0.3s;
}
.slider::before {
  content: ''; position: absolute; height: 20px; width: 20px;
  left: 4px; bottom: 4px; background: #fff; border-radius: 50%; transition: 0.3s;
}
input:checked + .slider { background: var(--blue); }
input:checked + .slider::before { transform: translateX(24px); }

/* ===== COMPARE TABLE ===== */
.compare-section { background: var(--bg-light); }
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; background: #fff; }
.compare-table th, .compare-table td {
  padding: 14px 20px; text-align: center; border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.compare-table th { background: var(--dark-blue); color: #fff; font-weight: 700; }
.compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: #f8faff; }
.highlight-col { background: #eff6ff; }
.compare-table th.highlight-col { background: var(--blue); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid var(--border); transition: all 0.2s;
}
.service-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card i { font-size: 2rem; color: var(--blue); margin-bottom: 16px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 0.92rem; }

/* ===== WEB DESIGN PREVIEW ===== */
.webdesign-preview { background: var(--bg-light); }
.webdesign-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.webdesign-text .badge { background: #eff6ff; color: var(--blue); border: 1px solid #bfdbfe; }
.webdesign-text h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 800; margin: 16px 0; }
.webdesign-text p { color: var(--muted); margin-bottom: 20px; }
.check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.check-list li i { color: #22c55e; }
.webdesign-cards { display: flex; flex-direction: column; gap: 16px; }
.wd-card {
  background: #fff; border-radius: var(--radius); padding: 20px 24px;
  border: 2px solid var(--border); transition: all 0.2s;
}
.wd-card.featured { border-color: var(--blue); box-shadow: var(--shadow); }
.wd-price { font-size: 1.8rem; font-weight: 800; color: var(--blue); }
.wd-name { font-weight: 700; font-size: 1rem; margin: 4px 0; }
.wd-desc { color: var(--muted); font-size: 0.88rem; }

/* ===== WHO WE SERVE ===== */
.who-section { background: #fff; }
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; }
.who-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 16px; border-radius: var(--radius); border: 1px solid var(--border);
  text-align: center; transition: all 0.2s; cursor: default;
}
.who-card:hover { border-color: var(--blue); background: #eff6ff; transform: translateY(-3px); }
.who-card i { font-size: 1.8rem; color: var(--blue); }
.who-card span { font-size: 0.88rem; font-weight: 600; color: var(--text); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-blue), #1a4fa0);
  color: #fff; padding: 64px 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,0.8); }
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== PLANS PREVIEW ===== */
.plans-preview { background: #fff; }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-light); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; background: none; border: none; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--text); text-align: left;
  transition: background 0.2s;
}
.faq-q:hover { background: #f8faff; }
.faq-q i { color: var(--blue); transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.faq-q.open i { transform: rotate(180deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-a.open { max-height: 200px; padding: 0 24px 18px; }
.faq-a p { color: var(--muted); font-size: 0.95rem; }

/* ===== PROCESS ===== */
.process-section { background: var(--bg-light); }
.process-steps {
  display: flex; align-items: flex-start; gap: 16px;
  flex-wrap: wrap; justify-content: center;
}
.step {
  flex: 1; min-width: 180px; max-width: 220px;
  text-align: center; padding: 28px 20px;
  background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
}
.step-num {
  font-size: 2rem; font-weight: 900; color: var(--blue);
  opacity: 0.2; margin-bottom: 12px;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.88rem; }
.step-arrow { color: var(--blue); font-size: 1.4rem; margin-top: 40px; opacity: 0.4; }

/* ===== ABOUT PAGE ===== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text .badge { background: #eff6ff; color: var(--blue); border: 1px solid #bfdbfe; }
.about-text h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 800; margin: 16px 0; text-align: center; }
.about-text p { color: var(--muted); margin-bottom: 16px; text-align: justify; }
.about-highlights { display: flex; flex-direction: column; gap: 20px; }
.highlight-box {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--bg-light); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.highlight-box i { font-size: 1.5rem; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.highlight-box strong { display: block; font-weight: 700; margin-bottom: 4px; }
.highlight-box p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ===== VISION MISSION ===== */
.vm-section { background: var(--bg-light); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card {
  position: relative;
  background: linear-gradient(135deg, var(--vm-g1), var(--vm-g2));
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.2);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
}
.vm-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.vm-bg-svg {
  width: 100%;
  height: 100%;
}
.vm-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.vm-icon-svg {
  width: 48px;
  height: 48px;
}
.vm-card h3 { position: relative; font-size: 1.4rem; font-weight: 800; margin: 0; letter-spacing: -.3px; }
.vm-card p { position: relative; color: rgba(255,255,255,.9); font-size: .95rem; line-height: 1.7; margin: 0; flex: 1; }
.vm-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.4);
  margin: 8px auto 0;
  backdrop-filter: blur(4px);
  letter-spacing: .3px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.contact-info > p { color: var(--muted); margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
}
.contact-item strong { display: block; font-weight: 700; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--muted); font-size: 0.95rem; }
.contact-item a:hover { color: var(--blue); }
.contact-social { display: flex; gap: 12px; margin-top: 32px; }
.contact-social a {
  width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all 0.2s;
}
.contact-social a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.contact-form-wrap { background: var(--bg-light); border-radius: var(--radius); padding: 40px; }
.contact-form-wrap h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 0.95rem; font-family: inherit; color: var(--text);
  background: #fff; transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(13,110,253,0.1);
}
.form-group textarea { resize: vertical; }
.form-success {
  margin-top: 16px; padding: 14px 20px; background: #dcfce7;
  border-radius: 8px; color: #16a34a; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.form-error {
  margin-top: 16px; padding: 14px 20px; background: #fef2f2;
  border-radius: 8px; color: #dc2626; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-intro {
  background: #eff6ff; border-radius: var(--radius); padding: 28px 32px;
  border-left: 4px solid var(--blue); margin-bottom: 40px;
}
.legal-intro p { color: var(--text); margin-bottom: 8px; }
.legal-intro p:last-child { margin-bottom: 0; }
.legal-toc {
  background: var(--bg-light); border-radius: var(--radius); padding: 28px 32px;
  margin-bottom: 40px; border: 1px solid var(--border);
}
.legal-toc h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.legal-toc ol { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.legal-toc a { color: var(--blue); font-size: 0.95rem; }
.legal-toc a:hover { text-decoration: underline; }
.legal-section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.legal-section:last-of-type { border-bottom: none; }
.legal-section h2 { font-size: 1.3rem; font-weight: 800; color: var(--dark-blue); margin-bottom: 16px; padding-top: 8px; }
.legal-section h4 { font-size: 1rem; font-weight: 700; margin: 16px 0 8px; }
.legal-section p { color: var(--muted); margin-bottom: 12px; line-height: 1.7; }
.legal-section ul, .legal-section ol { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.legal-section ul li { color: var(--muted); list-style: disc; }
.legal-section ol li { color: var(--muted); list-style: decimal; }
.legal-contact {
  background: var(--bg-light); border-radius: var(--radius); padding: 28px 32px;
  border: 1px solid var(--border); margin-top: 40px;
}
.legal-contact h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.legal-contact p { color: var(--muted); margin-bottom: 6px; }
.legal-contact a { color: var(--blue); }

/* ===== REFUND PAGE ===== */
.refund-summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 40px; }
.refund-card {
  border-radius: var(--radius); padding: 24px; text-align: center;
  border: 1px solid var(--border);
}
.refund-card.green { background: #f0fdf4; border-color: #86efac; }
.refund-card.red { background: #fef2f2; border-color: #fca5a5; }
.refund-card.yellow { background: #fffbeb; border-color: #fcd34d; }
.refund-card i { font-size: 2rem; margin-bottom: 12px; }
.refund-card.green i { color: #16a34a; }
.refund-card.red i { color: #dc2626; }
.refund-card.yellow i { color: #d97706; }
.refund-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.refund-card p { font-size: 0.88rem; color: var(--muted); }
.info-box {
  display: flex; gap: 12px; align-items: flex-start;
  background: #eff6ff; border-radius: 8px; padding: 16px 20px;
  border-left: 4px solid var(--blue); margin-top: 16px;
}
.info-box i { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.info-box p { color: var(--text); margin: 0; font-size: 0.95rem; }
.warning-box {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fffbeb; border-radius: 8px; padding: 16px 20px;
  border-left: 4px solid #f59e0b; margin-top: 16px;
}
.warning-box i { color: #f59e0b; flex-shrink: 0; margin-top: 2px; }
.warning-box p { color: var(--text); margin: 0; font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer { background: #0d1b3e; color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { 
  height: 95px; 
  width: auto; 
  margin-bottom: 16px; 
  /* No filters needed for SVG - it will display correctly */
  filter: none;
  mix-blend-mode: normal;
  background: transparent;
  object-fit: contain;
  opacity: 1;
}
.footer-brand img,
.footer-brand svg {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
/* Remove white background from logo in footer */
.footer .footer-brand .footer-logo {
  background-color: transparent !important;
  backdrop-filter: none;
  padding: 0;
  margin-bottom: 16px;
}
/* Wrapper to ensure no white background shows */
.footer-brand {
  background: transparent;
  position: relative;
}
.footer-brand > * {
  position: relative;
  z-index: 1;
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: all 0.2s;
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-links h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--light-blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .webdesign-inner { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: #fff;
    padding: 16px 24px; border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 4px;
  }
  .nav-links.open { display: flex; }
  .navbar .btn-whatsapp { display: none; }
  .hamburger { display: flex; }
  .nav-inner { position: relative; }

  .hero { padding: 60px 0 0; }
  .hero-stats { gap: 24px; }
  .hero-btns { flex-direction: column; }

  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.popular { transform: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .process-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }

  .section { padding: 56px 0; }
  .page-hero { padding: 48px 0; }

  .refund-summary { grid-template-columns: 1fr; }
  .legal-content { padding: 0 4px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 2s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ══════════════════════════════════════════════
   DOMAIN PAGE
══════════════════════════════════════════════ */
.domain-ext-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.dext-card {
  background: #fff; border-radius: var(--radius);
  border: 2px solid var(--border); padding: 28px 20px;
  text-align: center; position: relative;
  transition: all .2s;
}
.dext-card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.dext-popular { border-color: var(--blue); box-shadow: var(--shadow); }
.dext-deal { border-color: #16a34a; }
.dext-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; padding: 3px 14px;
  border-radius: 12px; font-size: .75rem; font-weight: 700; white-space: nowrap;
}
.dext-badge-green { background: #16a34a; }
.dext-name { font-size: 1.8rem; font-weight: 900; color: var(--dark-blue); margin-bottom: 6px; }
.dext-desc { font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
.dext-price { font-size: 1.4rem; font-weight: 800; color: var(--blue); margin-bottom: 20px; }
.dext-price span { font-size: .85rem; font-weight: 500; color: var(--muted); }

/* domain tips */
.domain-tips-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.dtip {
  background: var(--bg-light); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--border);
  transition: all .2s;
}
.dtip:hover { border-color: var(--blue); background: #fff; box-shadow: var(--shadow); }
.dtip-num {
  font-size: 2.4rem; font-weight: 900; color: var(--blue);
  opacity: .15; line-height: 1; margin-bottom: 10px;
}
.dtip h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.dtip p  { font-size: .9rem; color: var(--muted); }

@media (max-width: 768px) {
  .domain-ext-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .domain-ext-grid { grid-template-columns: 1fr 1fr; }
}
