/* ═══════════════════════════════════════════
   TOKENS & RESET
═══════════════════════════════════════════ */
:root {
  --navy:   #06101e;
  --deep:   #03080f;
  --mid:    #0a1a30;
  --cyan:   #00c6ff;
  --blue:   #0077ff;
  --light:  #7dd4f8;
  --foam:   #b8e8ff;
  --white:  #ffffff;
  --muted:  #2a5070;
  --text:   #c8dcea;
  --glass:  rgba(0,150,255,0.07);
  --border: rgba(0,150,255,0.14);
  --green:  #25d366;
  --font-head: 'Josefin Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--muted); border-radius: 2px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 72px;
  background: rgba(6,16,30,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  animation: nav-in 0.6s ease 0.2s both;
}
@keyframes nav-in {
  from { opacity:0; transform:translateY(-100%); }
  to   { opacity:1; transform:translateY(0); }
}
.nav-logo { display:flex; align-items:center; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
  font-family: var(--font-head);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
}
.nav-links a { color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--cyan); }
.nav-links a.active { color: var(--cyan); }
.nav-cta {
  font-family: var(--font-head);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--cyan);
  border-radius: 24px; color: var(--cyan);
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--cyan); color: var(--navy); }

/* HERO */
.hero {
  position: relative; min-height: 82vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; padding-top: 72px; padding-bottom: 40px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(0,80,180,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(0,100,200,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #03080f 0%, #06101e 50%, #071828 100%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,150,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,150,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-drift 20s linear infinite;
}
@keyframes grid-drift {
  from { background-position: 0 0; }
  to   { background-position: 0 60px; }
}
.particles { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--cyan); opacity: 0;
  animation: float-up var(--dur, 8s) ease-in var(--delay, 0s) infinite;
}
@keyframes float-up {
  0%   { opacity:0; transform: translateY(0) scale(1); }
  10%  { opacity: var(--op, 0.3); }
  90%  { opacity: var(--op, 0.3); }
  100% { opacity:0; transform: translateY(-100vh) scale(0.5); }
}
.orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.orb-1 { width:500px; height:500px; background:rgba(0,100,200,0.12); top:-100px; left:-100px; animation: orb-drift 12s ease-in-out infinite alternate; }
.orb-2 { width:400px; height:400px; background:rgba(0,180,255,0.08); bottom:-50px; right:-50px; animation: orb-drift 15s ease-in-out infinite alternate-reverse; }
@keyframes orb-drift {
  from { transform: translate(0,0); }
  to   { transform: translate(40px,30px); }
}
.hero-content {
  position: relative; z-index:2;
  display: flex; flex-direction: column;
  align-items: center; gap: 0; text-align: center;
}
.hero-logo { animation: logo-drop 1s cubic-bezier(0.22,1,0.36,1) 0.4s both; }
@keyframes logo-drop {
  from { opacity:0; transform: translateY(-30px) scale(0.9); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 19px); font-weight: 300;
  color: rgba(125,212,248,0.5);
  margin-top: 40px; max-width: 580px; line-height: 1.7;
  animation: fade-up 0.8s ease 1.2s both;
}
@keyframes fade-up {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-btns {
  display: flex; gap: 16px; margin-top: 40px;
  animation: fade-up 0.8s ease 1.4s both;
  flex-wrap: wrap; justify-content: center;
}
.btn-primary {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 15px 36px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: 30px; color: var(--navy);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(0,198,255,0.25);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow: 0 8px 40px rgba(0,198,255,0.4); }
.btn-outline {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid var(--border);
  border-radius: 30px; color: var(--light);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.hero-stats {
  display: flex; gap: 60px; margin-top: 60px;
  animation: fade-up 0.8s ease 1.6s both;
  border-top: 1px solid var(--border); padding-top: 40px;
  flex-wrap: wrap; justify-content: center;
}
.stat { text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: var(--white); line-height: 1; }
.stat-num span { color: var(--cyan); }
.stat-label { font-size: 10px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.scroll-hint {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fade-up 0.8s ease 2s both;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(180deg, transparent, var(--cyan)); animation: scroll-pulse 2s ease-in-out infinite; }
@keyframes scroll-pulse { 0%,100% { opacity:0.3; transform:scaleY(1); } 50% { opacity:1; transform:scaleY(1.2); } }
.scroll-text { font-family: var(--font-head); font-size: 9px; letter-spacing: 3px; color: var(--muted); text-transform: uppercase; }

/* WAVE DIVIDER */
.wave-divider { display:block; width:100%; overflow:hidden; line-height:0; }
.wave-divider svg { display:block; width:100%; }

/* SECTION BASE */
section { padding: 100px 60px; }
.section-label { font-family: var(--font-head); font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.section-title { font-family: var(--font-head); font-size: clamp(28px, 4vw, 46px); font-weight: 700; color: var(--white); line-height: 1.15; letter-spacing: -1px; }
.section-title span { color: var(--cyan); }
.section-body { font-size: 16px; font-weight: 300; color: rgba(125,212,248,0.5); line-height: 1.8; max-width: 520px; margin-top: 20px; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* SEO INTRO */
.seo-intro-section { background: var(--deep); position: relative; overflow: hidden; padding: 80px 60px; }
.seo-intro-section::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,80,180,0.1) 0%, transparent 70%); pointer-events:none; }
.seo-intro-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index:1; }
.seo-intro-inner h2 { font-family: var(--font-head); font-size: clamp(22px, 3vw, 34px); font-weight: 700; color: var(--white); margin-bottom: 20px; letter-spacing: -0.5px; }
.seo-intro-inner h2 span { color: var(--cyan); }
.seo-intro-inner p { font-size: 16px; font-weight: 300; color: var(--text); line-height: 1.85; margin-bottom: 14px; max-width: 820px; margin-left:auto; margin-right:auto; }
.seo-keywords-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }
.seo-kw-tag { font-family: var(--font-head); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 7px 18px; border: 1px solid var(--border); border-radius: 20px; color: var(--light); background: var(--glass); transition: border-color 0.2s, color 0.2s; }
.seo-kw-tag:hover { border-color: var(--cyan); color: var(--cyan); }

/* SERVICES */
.services-section { background: var(--deep); position: relative; overflow: hidden; }
.services-section::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0,80,180,0.12) 0%, transparent 70%); pointer-events:none; }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 70px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--glass); border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px; position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; cursor: default; }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); opacity:0; transition: opacity 0.3s; }
.service-card:hover { border-color: rgba(0,198,255,0.35); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,80,180,0.2); }
.service-card:hover::before { opacity:1; }
.service-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(0,100,200,0.2); border: 1px solid rgba(0,150,255,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 22px; }
.service-name { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); letter-spacing: 0.5px; margin-bottom: 12px; }
.service-desc { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.7; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-top: 20px; opacity: 0; transform: translateX(-8px); transition: opacity 0.3s, transform 0.3s; }
.service-card:hover .service-link { opacity:1; transform:translateX(0); }

/* PACKAGES */
.packages-section { background: var(--navy); position: relative; overflow: hidden; }
.packages-section::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,100,200,0.1) 0%, transparent 60%); pointer-events:none; }
.packages-intro { text-align: center; max-width: 700px; margin: 0 auto 60px; position: relative; z-index:1; }
.packages-intro p { font-size: 16px; font-weight: 300; color: var(--text); line-height: 1.8; margin-top: 16px; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; z-index:1; }
.packages-grid-row2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 22px; position: relative; z-index:1; }
.pkg-card { background: var(--glass); border: 1px solid var(--border); border-radius: 20px; padding: 36px 30px 30px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.pkg-card.featured { border-color: rgba(0,198,255,0.4); background: rgba(0,100,200,0.1); box-shadow: 0 0 60px rgba(0,150,255,0.12); }
.pkg-card.featured::after { content: 'MOST POPULAR'; position: absolute; top: 20px; right: -28px; background: linear-gradient(90deg, var(--cyan), var(--blue)); color: var(--navy); font-family: var(--font-head); font-size: 9px; font-weight: 700; letter-spacing: 2px; padding: 5px 36px; transform: rotate(45deg); }
.pkg-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); opacity:0; transition: opacity 0.3s; }
.pkg-card:hover, .pkg-card.featured:hover { transform: translateY(-6px); box-shadow: 0 24px 70px rgba(0,100,200,0.25); border-color: rgba(0,198,255,0.5); }
.pkg-card:hover::before, .pkg-card.featured::before { opacity:1; }
.pkg-icon { font-size: 28px; margin-bottom: 16px; }
.pkg-name { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 6px; letter-spacing: 0.5px; }
.pkg-tagline { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.5; margin-bottom: 20px; }
.pkg-price { font-family: var(--font-head); font-size: 38px; font-weight: 700; color: var(--cyan); line-height: 1; margin-bottom: 4px; }
.pkg-price span { font-size: 14px; font-weight: 400; color: var(--muted); }
.pkg-divider { height: 1px; background: var(--border); margin: 20px 0; }
.pkg-features { list-style: none; margin-bottom: 24px; flex: 1; }
.pkg-features li { font-size: 13px; font-weight: 300; color: var(--text); padding: 6px 0; display: flex; gap: 10px; align-items: flex-start; border-bottom: 1px solid rgba(0,150,255,0.06); }
.pkg-features li:last-child { border-bottom: none; }
.pkg-features li::before { content: '✓'; color: var(--cyan); font-weight: 700; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.pkg-wa-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 20px; background: var(--green); border-radius: 12px; font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(37,211,102,0.25); margin-top: auto; }
.pkg-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
.pkg-wa-btn svg { width:16px; height:16px; fill:#fff; flex-shrink:0; }

/* WHY US */
.why-section { background: var(--deep); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.why-ring { position: absolute; border-radius: 50%; border: 1px solid var(--border); animation: spin-slow var(--sp, 20s) linear infinite; }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.why-ring-1 { width:320px; height:320px; --sp:25s; }
.why-ring-2 { width:240px; height:240px; --sp:18s; animation-direction:reverse; }
.why-ring-3 { width:160px; height:160px; --sp:12s; border-color:rgba(0,198,255,0.25); }
.why-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.why-center { position: relative; z-index:2; width: 90px; height: 90px; border-radius: 50%; background: rgba(0,100,200,0.15); border: 2px solid rgba(0,198,255,0.4); display: flex; align-items: center; justify-content: center; font-size: 36px; }
.why-items { display:flex; flex-direction:column; gap:24px; margin-top:40px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; padding: 20px; border-radius: 12px; border: 1px solid transparent; transition: border-color 0.3s, background 0.3s; }
.why-item:hover { background: var(--glass); border-color: var(--border); }
.why-item-icon { width: 40px; height: 40px; flex-shrink:0; border-radius: 10px; background: rgba(0,100,200,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.why-item-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-item-desc { font-size: 13px; font-weight:300; color: var(--muted); line-height:1.6; }

/* PROCESS */
.process-section { background: var(--navy); text-align: center; position: relative; overflow:hidden; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 70px; position: relative; }
.process-steps::before { content:''; position:absolute; top:36px; left:12.5%; right:12.5%; height:1px; background: var(--border); }
.process-step { padding: 0 20px; position:relative; }
.step-num { width: 72px; height: 72px; margin: 0 auto 24px; border-radius: 50%; border: 1px solid var(--border); background: var(--deep); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--cyan); position: relative; z-index:1; transition: background 0.3s, border-color 0.3s, box-shadow 0.3s; }
.process-step:hover .step-num { background: rgba(0,100,200,0.2); border-color: var(--cyan); box-shadow: 0 0 30px rgba(0,198,255,0.3); }
.step-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-desc { font-size: 13px; font-weight:300; color: var(--muted); line-height:1.6; }

/* CTA */
.cta-section { background: var(--deep); position: relative; overflow:hidden; text-align: center; padding: 120px 60px; }
.cta-section::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,100,200,0.15) 0%, transparent 70%); pointer-events:none; }
.cta-title { font-family: var(--font-head); font-size: clamp(32px, 5vw, 58px); font-weight: 700; letter-spacing: -1.5px; color: var(--white); line-height: 1.1; margin-bottom: 20px; position: relative; z-index:1; }
.cta-title span { color: var(--cyan); }
.cta-sub { font-size: 17px; font-weight:300; color: var(--muted); line-height:1.7; max-width: 480px; margin: 0 auto 40px; position: relative; z-index:1; }
.cta-btns { display:flex; gap:14px; justify-content:center; position: relative; z-index:1; flex-wrap: wrap; }
.cta-contact { font-family: var(--font-head); font-size: 11px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color: var(--muted); margin-top: 20px; position:relative; z-index:1; }
.cta-contact a { color: var(--cyan); }

/* TESTIMONIALS */
.testimonials-section { background: var(--navy); position: relative; overflow: hidden; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 60px; }
.testimonial-card { background: var(--glass); border: 1px solid var(--border); border-radius: 16px; padding: 32px; position: relative; transition: border-color 0.3s, transform 0.3s; }
.testimonial-card:hover { border-color: rgba(0,198,255,0.3); transform: translateY(-4px); }
.testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-size: 80px; color: rgba(0,198,255,0.1); font-family: Georgia, serif; line-height: 1; }
.testimonial-quote { font-size: 14px; font-weight: 300; color: var(--text); line-height: 1.8; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,#0077cc,#004499); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 16px; font-weight: 700; color: white; flex-shrink: 0; }
.testimonial-name { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--white); }
.testimonial-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* FOOTER WAVE */
.footer-wave-wrap { position: relative; height: 80px; overflow: hidden; margin: 0 -60px; line-height: 0; }
.footer-wave-wrap svg.fw { position: absolute; bottom: 0; width: 200%; height: 80px; animation: fw-move 7s linear infinite; }
.footer-wave-wrap svg.fw2 { animation-duration: 11s; animation-direction: reverse; opacity: 0.5; }
.footer-wave-wrap svg.fw3 { animation-duration: 15s; opacity: 0.3; }
@keyframes fw-move { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* FOOTER SUBSCRIBE STRIP */
.footer-subscribe-strip { background: linear-gradient(135deg, rgba(0,120,220,0.12) 0%, rgba(0,198,255,0.07) 100%); border-top: 1px solid rgba(0,198,255,0.15); border-bottom: 1px solid rgba(0,198,255,0.1); padding: 44px 0; margin: -20px -60px 60px; }
.footer-subscribe-inner { max-width: 860px; margin: 0 auto; display: flex; align-items: center; gap: 48px; padding: 0 60px; }
.footer-subscribe-text { flex: 1; }
.footer-subscribe-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: 0.5px; margin-bottom: 6px; }
.footer-subscribe-sub { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.6; }
.footer-subscribe-form { display: flex; gap: 10px; flex: 1.2; flex-wrap: wrap; }
.footer-sub-input { flex: 1; min-width: 140px; background: rgba(255,255,255,0.05); border: 1px solid rgba(0,198,255,0.2); border-radius: 6px; padding: 11px 16px; font-size: 13px; color: var(--white); font-family: var(--font-body); outline: none; transition: border-color 0.2s; }
.footer-sub-input::placeholder { color: rgba(125,212,248,0.35); }
.footer-sub-input:focus { border-color: rgba(0,198,255,0.5); }
.footer-sub-email { flex: 1.4; }
.footer-sub-btn { background: linear-gradient(90deg, #00c6ff, #0077ff); border: none; border-radius: 6px; padding: 11px 24px; color: #fff; font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: opacity 0.2s, transform 0.2s; }
.footer-sub-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.footer-subscribe-success { font-size: 14px; color: #25d366; font-weight: 500; flex: 1; }
.footer-subscribe-error { font-size: 12px; color: var(--danger); margin-top: 6px; }

/* FOOTER */
footer { background: var(--deep); padding: 60px 60px 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { font-size: 13px; font-weight:300; color: var(--muted); line-height:1.7; margin-top: 20px; max-width: 280px; }
.footer-col-title { font-family: var(--font-head); font-size: 10px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size: 13px; font-weight:300; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; border-top: 1px solid var(--border); padding-top: 28px; font-size: 12px; color: rgba(42,80,112,0.7); font-family: var(--font-head); letter-spacing:1px; flex-wrap: wrap; gap: 16px; }
.footer-socials { display:flex; gap:14px; align-items:center; }
.social-icon { width:34px; height:34px; border-radius:50%; border: 1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:13px; color:var(--muted); transition: border-color 0.2s, color 0.2s; }
.social-icon:hover { border-color:var(--cyan); color:var(--cyan); }
.footer-wa { display:flex; align-items:center; gap:8px; background: var(--green); border-radius:20px; padding: 8px 16px; font-family: var(--font-head); font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:#fff; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 0 20px rgba(37,211,102,0.3); animation: wa-pulse-footer 3s ease-in-out infinite; }
.footer-wa:hover { transform: scale(1.04); box-shadow: 0 0 30px rgba(37,211,102,0.5); animation: none; }
@keyframes wa-pulse-footer { 0%,100% { box-shadow: 0 0 16px rgba(37,211,102,0.3); } 50% { box-shadow: 0 0 32px rgba(37,211,102,0.55); } }
.footer-wa svg { width:16px; height:16px; fill:#fff; }

/* TICKER */
.ticker-wrap { background: rgba(0,80,180,0.08); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-block; animation: ticker 30s linear infinite; font-family: var(--font-head); font-size: 11px; font-weight:600; letter-spacing: 3px; text-transform:uppercase; color: var(--muted); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-sep { color: var(--cyan); margin: 0 24px; }

/* FLOATING WHATSAPP — pill button */
.wa-float { position: fixed; bottom: 32px; right: 32px; z-index: 999; display: flex; align-items: center; gap: 10px; padding: 14px 22px 14px 18px; border-radius: 50px; background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); box-shadow: 0 6px 32px rgba(37,211,102,0.50), 0 2px 8px rgba(0,0,0,0.25); animation: wa-bounce 2.8s ease-in-out infinite; transition: transform 0.2s, box-shadow 0.2s; }
.wa-float:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 14px 44px rgba(37,211,102,0.65), 0 4px 12px rgba(0,0,0,0.3); animation: none; }
.wa-float-icon { width: 26px; height: 26px; fill: #fff; flex-shrink: 0; }
.wa-float-label { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0.5px; white-space: nowrap; }
@keyframes wa-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* SERVICE PAGE BODY — rich text styling for dark theme */
.service-page-body h2 { font-family: var(--font-head); font-size: clamp(20px,2.5vw,26px); font-weight: 700; color: var(--white); letter-spacing: -0.5px; margin: 40px 0 14px; line-height: 1.25; }
.service-page-body h2:first-child { margin-top: 0; }
.service-page-body h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--light); letter-spacing: 0.5px; margin: 28px 0 10px; }
.service-page-body p { font-size: 15px; color: var(--text); line-height: 1.85; margin-bottom: 16px; }
.service-page-body ul,.service-page-body ol { padding-left: 22px; margin-bottom: 20px; }
.service-page-body li { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 6px; }
.service-page-body strong { color: var(--white); }
.service-page-body a { color: var(--cyan); }
.service-page-body a:hover { text-decoration: underline; }
.service-page-body li strong { color: var(--cyan); }

/* PAGE HERO (inner pages) */
.page-hero { padding: 140px 60px 80px; text-align: center; position: relative; overflow: hidden; background: var(--deep); }
.page-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(0,80,180,0.15) 0%, transparent 70%); pointer-events:none; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(32px, 5vw, 56px); font-weight: 700; color: var(--white); letter-spacing: -1px; position: relative; z-index:1; }
.page-hero h1 span { color: var(--cyan); }
.page-hero p { font-size: 18px; font-weight: 300; color: rgba(125,212,248,0.5); margin-top: 20px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; position: relative; z-index:1; }

/* CONTACT FORM */
.contact-section { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form-box { background: var(--glass); border: 1px solid var(--border); border-radius: 20px; padding: 48px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-head); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: rgba(0,20,50,0.5); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; font-size: 14px; font-family: var(--font-body); color: var(--white); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,198,255,0.1); }
.form-group textarea { height: 120px; resize: vertical; }
.contact-info-card { display: flex; gap: 20px; align-items: flex-start; padding: 24px; background: var(--glass); border: 1px solid var(--border); border-radius: 16px; margin-bottom: 16px; transition: border-color 0.3s; }
.contact-info-card:hover { border-color: rgba(0,198,255,0.3); }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(0,100,200,0.2); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-info-title { font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-info-value { font-size: 15px; color: var(--white); }
.contact-info-value a { color: var(--cyan); }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.blog-card { background: var(--glass); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.blog-card:hover { border-color: rgba(0,198,255,0.3); transform: translateY(-4px); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; background: rgba(0,50,100,0.3); }
.blog-card-img-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg, rgba(0,50,100,0.5), rgba(0,100,200,0.2)); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-card-body { padding: 28px; }
.blog-category { font-family: var(--font-head); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.blog-card-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 12px; }
.blog-card-excerpt { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.blog-card-meta { font-size: 12px; color: rgba(42,80,112,0.7); font-family: var(--font-head); letter-spacing: 1px; }
.btn-cyan { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 10px 24px; background: transparent; border: 1px solid var(--cyan); border-radius: 20px; color: var(--cyan); transition: background 0.2s, color 0.2s; display: inline-block; }
.btn-cyan:hover { background: var(--cyan); color: var(--navy); }

/* ALERTS */
.alert-success { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3); color: #25d366; padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; }
.alert-error { background: rgba(200,48,42,0.1); border: 1px solid rgba(200,48,42,0.3); color: #ff6b6b; padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; }

/* INLINE EDIT */
.iet-field[contenteditable="true"] { outline: 2px dashed rgba(0,198,255,0.5); outline-offset: 4px; border-radius: 4px; cursor: text; min-height: 1em; }
.iet-field[contenteditable="true"]:focus { outline-color: var(--cyan); background: rgba(0,198,255,0.05); }
.iet-save-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 10000; background: #06101e; border-bottom: 2px solid #00c6ff; padding: 12px 24px; display: flex; align-items: center; gap: 16px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: #7dd4f8; }
.iet-save-bar .iet-status { flex: 1; font-size: 13px; }
.iet-save-bar button { padding: 8px 20px; border: none; border-radius: 6px; cursor: pointer; font-size: 13px; font-weight: 600; font-family: 'DM Sans', sans-serif; }
.iet-btn-save { background: linear-gradient(135deg, #0077cc, #004499); color: #fff; }
.iet-btn-cancel { background: transparent; border: 1px solid rgba(0,198,255,0.3) !important; color: #7dd4f8; }

/* LEGAL */
.legal-content { max-width: 800px; margin: 0 auto; padding: 80px 60px; }
.legal-content h2 { font-family: var(--font-head); font-size: 22px; color: var(--white); margin: 40px 0 16px; }
.legal-content p { font-size: 15px; color: var(--text); line-height: 1.85; margin-bottom: 16px; }

/* RESPONSIVE */
@media (max-width:900px) {
  nav { padding: 0 24px; }
  nav .nav-links { display:none; }
  section { padding: 70px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid-row2 { grid-template-columns: 1fr 1fr; }
  .why-section { grid-template-columns: 1fr; }
  .why-visual { display:none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap:40px; }
  .footer-subscribe-strip { padding: 36px 0; margin-left: -24px; margin-right: -24px; }
  .footer-subscribe-inner { flex-direction: column; gap: 24px; align-items: flex-start; padding: 0 24px; }
  .footer-subscribe-form { width: 100%; }
  .hero-stats { gap: 28px; }
  .services-header { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-wave-wrap { margin: 0 -24px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width:600px) {
  section { padding: 60px 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .packages-grid-row2 { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap:32px; }
  .footer-subscribe-strip { padding: 32px 0; margin-left: -18px; margin-right: -18px; }
  .footer-subscribe-inner { padding: 0 18px; }
  .footer-sub-input { min-width: 100%; }
  .cta-section { padding: 80px 24px; }
  .wa-float { bottom: 20px; right: 16px; padding: 12px 18px 12px 14px; gap: 8px; }
  .wa-float-label { font-size: 13px; }
  .seo-intro-section { padding: 60px 18px; }
  .footer-wave-wrap { margin: 0 -18px; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 20px; }
  .page-hero { padding: 120px 24px 60px; }
  .legal-content { padding: 60px 24px; }
}
