:root {
  --primary: #00FF85;
  --primary-2: #00d470;
  --primary-deep: #052b1b;
  --secondary: #1E90FF;
  --accent: #00FF85;
  --accent-2: #1E90FF;
  --bg: #0D0D0D;
  --panel: #151515;
  --panel-2: #1a1a1a;
  --line: #262626;
  --glass: rgba(255,255,255,.07);
  --ink: #FFFFFF;
  --muted: #9A9A9A;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(0,255,133,.08);
  --font: 'Montserrat', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- Scrollbars ---------- */
* { scrollbar-width: thin; scrollbar-color: var(--primary) rgba(255,255,255,.06); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,.06); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-2); }
::-webkit-scrollbar-corner { background: transparent; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 50px; font-weight: 600; font-family: var(--font);
  font-size: .95rem; transition: .3s ease; border: none; cursor: pointer; letter-spacing: .2px;
}
.btn-lg { padding: 13px 26px; font-size: .9rem; }
.btn-block { width: 100%; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #04120b; box-shadow: 0 10px 24px rgba(0,255,133,.25); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,255,133,.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-glass { background: var(--glass); color: var(--white); border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(6px); }
.btn-glass:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.btn-white { background: var(--primary); color: #05100a; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,255,133,.3); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px; padding: 11px 24px;
  background: linear-gradient(135deg, #25D366, #128C7E); color: #fff;
  text-decoration: none; border-radius: 50px; font-size: 15px; font-weight: 600;
  font-family: 'Arial', sans-serif; box-shadow: 0 8px 20px rgba(37,211,102,.35);
  transition: all .3s ease;
}
.btn-whatsapp i {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,.7); border-radius: 50%; font-size: 18px;
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #25D366); transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
}
.btn-whatsapp:active { transform: scale(.98); }
.call-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 11px 24px;
  background: linear-gradient(135deg, #1E90FF, #0b6ec7); color: #fff;
  text-decoration: none; border-radius: 50px; font-size: 15px; font-weight: 600;
  font-family: 'Arial', sans-serif; box-shadow: 0 8px 20px rgba(30,144,255,.35);
  transition: all .3s ease;
}
.call-btn i {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,.7); border-radius: 50%; font-size: 17px;
}
.call-btn:hover {
  background: linear-gradient(135deg, #0b6ec7, #1E90FF); transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(30,144,255,.45);
}
.call-btn:active { transform: scale(.98); }
.call-btn.sm-btn { padding: 8px 16px; font-size: 13px; gap: 8px; box-shadow: 0 5px 14px rgba(30,144,255,.3); }
.call-btn.sm-btn i { width: 24px; height: 24px; font-size: 12px; border-width: 1.5px; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: #2ee06d; box-shadow: 0 0 0 0 rgba(46,224,109,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(46,224,109,.7);} 70% { box-shadow: 0 0 0 10px rgba(46,224,109,0);} 100% { box-shadow: 0 0 0 0 rgba(46,224,109,0);} }

/* ---------- Header ---------- */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  padding: 18px 0; transition: .35s ease; background: transparent;
}
.site-nav.scrolled { background: rgba(10,10,10,.92); backdrop-filter: blur(12px); padding: 12px 0; box-shadow: 0 8px 30px rgba(0,0,0,.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: #1a1a1a; border: 1.5px solid rgba(0,255,133,.35);
  box-shadow: 0 8px 18px rgba(0,255,133,.15); padding: 6px;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-mark .logo-animate { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: inherit; background: transparent; }
.icn { display: inline-block; vertical-align: middle; object-fit: contain; }
.icn-sm { width: 18px; height: 18px; margin-right: 7px; }
.icn-lg { width: 30px; height: 30px; margin-right: 9px; }
.btn .icn, .btn-call .icn, .ci .icn, .f-col .icn { vertical-align: -4px; }
.logo-inline { width: 46px; height: 46px; display: block; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text b { color: var(--white); font-weight: 800; font-size: 1.15rem; letter-spacing: 1px; }
.brand-text small { color: var(--primary); font-weight: 600; font-size: .62rem; letter-spacing: 2.5px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: rgba(255,255,255,.85); font-weight: 500; font-size: .92rem; position: relative; padding: 4px 0; transition: .25s; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px; background: var(--primary); transition: .3s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 6px; cursor: pointer; }
.nav-toggle span { height: 2.5px; width: 26px; background: #fff; border-radius: 3px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(1000px 600px at 85% -10%, rgba(0,255,133,.12), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(30,144,255,.1), transparent 55%),
    linear-gradient(160deg, #080808 0%, #0D0D0D 55%, #0a1f16 100%);
  color: var(--white); padding-top: 120px; overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 34px 34px; mask-image: radial-gradient(700px 500px at 20% 30%, #000, transparent); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-block; background: var(--glass); border: 1px solid rgba(255,255,255,.2); padding: 8px 18px; border-radius: 40px; font-size: .8rem; font-weight: 600; letter-spacing: 2px; color: var(--primary); margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.3rem); font-weight: 900; line-height: 1.08; letter-spacing: -.5px; }
.gradient-text { background: linear-gradient(120deg, var(--primary), var(--secondary), var(--primary)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { max-width: 560px; margin: 22px 0 32px; color: rgba(255,255,255,.78); font-size: 1.05rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-stats strong { font-size: 1.7rem; font-weight: 800; display: block; color: var(--primary); }
.hero-stats span { font-size: .78rem; color: rgba(255,255,255,.65); font-weight: 500; letter-spacing: .4px; }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone-frame { width: 230px; height: 460px; background: #000; border: 3px solid rgba(255,255,255,.16); border-radius: 38px; padding: 10px; box-shadow: 0 40px 80px rgba(0,0,0,.6); position: relative; z-index: 2; }
.screen { height: 100%; border-radius: 28px; background: #000; overflow: hidden; position: relative; }
.screen-top { height: 26px; width: 90px; background: rgba(255,255,255,.14); border-radius: 0 0 16px 16px; margin: 0 auto; }
.dl-mode { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 28px; }
.float-card { position: absolute; background: rgba(20,20,20,.85); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.18); padding: 12px 18px; border-radius: 14px; font-size: .82rem; font-weight: 600; z-index: 3; box-shadow: 0 18px 40px rgba(0,0,0,.4); animation: float 5s ease-in-out infinite; }
.float-card span { color: var(--primary); margin-right: 6px; }
.card-1 { top: 12%; right: -6%; }
.card-2 { bottom: 14%; left: -8%; animation-delay: 2.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Brands strip */
.brands-strip { position: relative; z-index: 2; margin-top: 80px; background: rgba(0,0,0,.35); border-top: 1px solid rgba(255,255,255,.08); padding: 26px 0; }
.brands-strip p { text-align: center; color: rgba(255,255,255,.55); font-size: .78rem; letter-spacing: 3px; font-weight: 600; margin-bottom: 18px; }
.brand-logo { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.brand-logo span { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 24px; padding: 9px 20px; font-size: 1rem; transition: .3s; cursor: default; }
.brand-logo span:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); box-shadow: 0 10px 24px rgba(0,0,0,.35); }

.b-samsung  { color: #6A8BFF; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; }
.b-apple    { color: #E8E8E8; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif; font-weight: 400; letter-spacing: .5px; }
.b-tecno    { color: #1FA8E0; font-family: Verdana, Geneva, sans-serif; font-weight: 700; letter-spacing: .5px; }
.b-infinix  { color: #F7A800; font-family: Tahoma, Geneva, sans-serif; font-weight: 800; font-style: italic; letter-spacing: .5px; }
.b-itel     { color: #ED1C24; font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.b-nokia    { color: #5B86E5; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
.b-xiaomi   { color: #FF6900; font-family: Arial, "Noto Sans", sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.b-oppo     { color: #00C271; font-family: "Poppins", "Segoe UI Rounded", "Segoe UI", sans-serif; font-weight: 700; letter-spacing: .5px; }
.b-vivo     { color: #00A0FF; font-family: "Trebuchet MS", "Segoe UI", sans-serif; font-weight: 800; font-style: italic; letter-spacing: .5px; }
.b-huawei   { color: #FF5A52; font-family: "Arial Black", Arial, sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-tag { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); background: rgba(0,255,133,.08); padding: 7px 16px; border-radius: 30px; margin-bottom: 16px; }
.section-tag.light { color: var(--primary); background: rgba(0,255,133,.12); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -.4px; margin-bottom: 14px; }
.section-head p { color: var(--muted); }

/* About */
.about { background: var(--bg); }
.about-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.about-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 800; letter-spacing: -.4px; margin-bottom: 18px; }
.about-copy > p { color: var(--muted); margin-bottom: 30px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-features > div { display: flex; gap: 14px; align-items: flex-start; background: var(--panel); padding: 18px; border-radius: var(--radius); border: 1px solid var(--line); }
.feat-icon { width: 44px; height: 44px; min-width: 44px; display: grid; place-items: center; border-radius: 12px; background: rgba(0,255,133,.12); color: var(--primary); font-size: 1.2rem; }
.about-features b { display: block; font-size: .95rem; margin-bottom: 3px; }
.about-features p { font-size: .8rem; color: var(--muted); }
.about-art { position: relative; display: grid; place-items: center; }
.hex-grid { position: relative; width: 340px; height: 340px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hex { border-radius: 22px; transform: rotate(45deg); background: linear-gradient(135deg, #0c3a28, #14503a); box-shadow: var(--shadow); }
.hex1 { grid-column: 1; } .hex2 { grid-column: 2; } .hex3 { grid-column: 1; } .hex4 { grid-column: 2; }
.center-badge { position: absolute; inset: 0; margin: auto; width: 150px; height: 150px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: grid; place-content: center; text-align: center; color: #04120b; box-shadow: 0 20px 50px rgba(0,255,133,.3); }
.center-badge strong { font-size: 2rem; font-weight: 900; }
.center-badge span { font-size: .72rem; font-weight: 600; letter-spacing: 1px; }

/* Services */
.services { background: #111; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: .35s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transform: scaleX(0); transform-origin: left; transition: .4s; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(0,255,133,.3); }
.service-card:hover::before { transform: scaleX(1); }
.s-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; background: rgba(0,255,133,.1); color: var(--primary); font-size: 1.3rem; margin-bottom: 18px; transition: .3s; }
.service-card:hover .s-icon { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #04120b; }
.service-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: .86rem; color: var(--muted); }

/* Why */
.why { background: linear-gradient(160deg, #0a0a0a, #111); color: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why .section-head p { color: rgba(255,255,255,.65); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-item { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; transition: .3s; }
.why-item:hover { background: var(--panel-2); transform: translateY(-6px); border-color: rgba(0,255,133,.3); }
.why-item span { font-size: 2.4rem; font-weight: 900; color: rgba(0,255,133,.3); display: block; margin-bottom: 12px; }
.why-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.why-item p { font-size: .85rem; color: rgba(255,255,255,.65); }

/* Process */
.process { background: var(--bg); }
.process-steps { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.step { text-align: center; width: 220px; }
.step-num { width: 62px; height: 62px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #04120b; font-weight: 900; font-size: 1.4rem; box-shadow: 0 14px 30px rgba(0,255,133,.25); }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: .83rem; color: var(--muted); }
.step-arrow { font-size: 1.8rem; color: var(--primary); font-weight: 800; }

/* CTA banner */
.cta-banner { background: linear-gradient(120deg, var(--primary), var(--secondary)); padding: 70px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-inner h2 { color: #04120b; font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 6px; }
.cta-inner p { color: rgba(4,18,11,.8); }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Contact */
.contact { background: #111; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -.4px; }
.contact-info > p { color: var(--muted); margin-bottom: 28px; }
.contact-list { list-style: none; margin-bottom: 30px; }
.contact-list li { display: flex; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.ci { width: 48px; height: 48px; min-width: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--panel); color: var(--primary); font-size: 1.15rem; box-shadow: 0 6px 16px rgba(0,255,133,.1); }
.contact-list b { display: block; font-size: .82rem; color: var(--muted); font-weight: 600; }
.contact-list a, .contact-list span { font-weight: 700; color: var(--ink); }
.contact-list a:hover { color: var(--primary); }
.contact-form { background: var(--panel); padding: 36px; border-radius: 22px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.contact-form label { display: block; font-size: .82rem; font-weight: 600; margin: 16px 0 8px; color: var(--ink); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font); font-size: .92rem; transition: .25s; background: #1d1d1d; color: var(--ink);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(0,255,133,.1); background: #222; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .btn { margin-top: 24px; }
.js-invalid { border-color: #ff5d5d !important; box-shadow: 0 0 0 4px rgba(255,93,93,.1) !important; }
.js-error-message { color: #ff6b6b; font-size: .75rem; margin-top: 6px; font-weight: 600; }

/* Footer */
.site-footer { background: #080808; color: rgba(255,255,255,.75); padding: 70px 0 0; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.f-brand p { margin-top: 18px; font-size: .88rem; color: rgba(255,255,255,.55); max-width: 320px; }
.f-col h4 { color: #fff; font-size: .95rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.f-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: var(--primary); border-radius: 3px; }
.f-col a { display: block; color: rgba(255,255,255,.6); font-size: .9rem; padding: 5px 0; transition: .25s; }
.f-col a:hover { color: var(--primary); padding-left: 6px; }
.f-col p { font-size: .9rem; margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(255,255,255,.45); }
.back-top { color: var(--primary); font-weight: 600; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .12s; } .reveal.delay-2 { transition-delay: .24s; } .reveal.delay-3 { transition-delay: .36s; }

/* ---------- Horizontal carousel (shared) ---------- */
.h-carousel { position: relative; }
.h-viewport { overflow: hidden; margin: 0 -6px; padding: 12px 6px 26px; }
.h-track {
  display: flex; gap: 24px; scroll-snap-type: x mandatory;
  transition: transform .6s cubic-bezier(.25, .8, .35, 1);
  will-change: transform;
}
.h-card {
  scroll-snap-align: start; flex-shrink: 0; position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.h-card:hover { transform: translateY(-10px); box-shadow: 0 26px 55px rgba(0,255,133,.14); border-color: rgba(0,255,133,.4); }
.h-nav {
  position: absolute; top: 42%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; z-index: 5;
  background: var(--glass); border: 1px solid rgba(255,255,255,.22);
  color: var(--white); font-size: 1.7rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: .3s ease; backdrop-filter: blur(8px);
}
.h-nav:hover { background: var(--primary); color: #04120b; border-color: var(--primary); box-shadow: 0 0 24px rgba(0,255,133,.4); }
.h-prev { left: -22px; }
.h-next { right: -22px; }
.h-dots { display: flex; justify-content: center; gap: 8px; margin-top: 8px; }
.h-dot { width: 10px; height: 10px; border-radius: 20px; background: rgba(255,255,255,.18); border: none; cursor: pointer; transition: .3s ease; padding: 0; }
.h-dot.active { width: 30px; background: var(--primary); }
.section-empty { text-align: center; color: var(--muted); padding: 30px; border: 1px dashed var(--line); border-radius: 22px; }

/* ---------- Testimonials ---------- */
.testimonials { background: linear-gradient(180deg, transparent, rgba(0,255,133,.04), transparent); }
.testi-card { width: 400px; padding: 30px 28px 26px; background: linear-gradient(160deg, var(--panel), #191919); }
.testi-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary)); opacity: 0; transition: opacity .4s ease;
}
.testi-card:hover::before { opacity: 1; }
.testi-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.testi-stars { color: #ffc84d; letter-spacing: 3px; font-size: .95rem; }
.testi-source {
  font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--primary); background: rgba(0,255,133,.1); border: 1px solid rgba(0,255,133,.25);
  padding: 5px 12px; border-radius: 30px;
}
.testi-quote { font-size: 3.4rem; line-height: .6; color: var(--primary); opacity: .55; margin-bottom: 6px; }
.testi-msg { font-size: .98rem; line-height: 1.75; color: rgba(255,255,255,.9); margin: 12px 0 22px; min-height: 108px; }
.testi-person { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); padding-top: 20px; }
.testi-avatar {
  width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,.2); box-shadow: 0 4px 14px rgba(0,255,133,.25);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-initials { color: #04120b; font-weight: 800; font-size: 1.4rem; }
.testi-id b { display: block; font-size: 1rem; }
.testi-id small { color: var(--muted); font-size: .78rem; display: inline-flex; align-items: center; gap: 6px; }
.testi-id small i { color: var(--primary); font-size: .7rem; }

/* ---------- Latest News ---------- */
.news { background: var(--bg); }
.news-card { width: 350px; background: var(--panel); }
.news-card a { display: block; height: 100%; }
.news-thumb { height: 200px; overflow: hidden; background: #111; display: flex; align-items: center; justify-content: center; position: relative; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.news-card:hover .news-thumb img { transform: scale(1.08); }
.news-thumb-fallback { font-size: 3.4rem; opacity: .35; }
.news-cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: .68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: #04120b; background: linear-gradient(135deg, var(--primary), var(--primary-2));
  padding: 6px 14px; border-radius: 30px; box-shadow: 0 6px 16px rgba(0,255,133,.3);
}
.news-body { padding: 22px 22px 26px; }
.news-date { font-size: .74rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); display: inline-flex; align-items: center; gap: 7px; }
.news-date i { font-size: .8rem; }
.news-body h3 { font-size: 1.12rem; font-weight: 700; margin: 12px 0 8px; line-height: 1.4; }
.news-body p { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.news-more { color: var(--primary); font-weight: 700; font-size: .88rem; display: inline-flex; align-items: center; gap: 8px; transition: gap .3s ease; }
.news-card:hover .news-more { gap: 13px; }

/* ---------- Blog page ---------- */
.blog-hero { padding: 120px 0 40px; background: linear-gradient(160deg, rgba(0,255,133,.08), transparent 60%); }
.blog-back { display: inline-block; color: var(--primary); font-weight: 700; margin-bottom: 20px; }
.blog-hero h1 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); font-weight: 800; letter-spacing: -.4px; line-height: 1.25; max-width: 780px; }
.blog-meta { display: flex; gap: 22px; margin-top: 18px; color: var(--muted); font-size: .9rem; }
.blog-body { padding: 20px 0 100px; }
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.blog-article { background: var(--panel); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.blog-cover { height: 380px; overflow: hidden; background: #111; }
.blog-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-content { padding: 34px 38px 44px; font-size: 1.02rem; line-height: 1.8; color: rgba(255,255,255,.88); }
.blog-content p { margin-bottom: 18px; }
.blog-content h2, .blog-content h3 { margin: 26px 0 12px; color: var(--white); }
.blog-content ul, .blog-content ol { margin: 0 0 18px 22px; }
.blog-content a { color: var(--primary); }
.blog-content img { border-radius: 14px; margin: 10px 0; }
.blog-side-card { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 24px; margin-bottom: 22px; }
.blog-side-card h3 { font-size: 1rem; margin-bottom: 14px; }
.blog-mini { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
.blog-mini:last-child { border-bottom: none; }
.blog-mini b { display: block; font-size: .92rem; line-height: 1.45; }
.blog-mini b:hover { color: var(--primary); }
.blog-mini small { color: var(--muted); font-size: .78rem; }
.blog-empty { color: var(--muted); font-size: .88rem; }



/* ---------- Responsive ---------- */
@keyframes phone-in { 0% { opacity: 0; transform: translateY(30px) scale(.9); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes phone-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .h-prev { left: 6px; }
  .h-next { right: 6px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-side { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
}
@media (max-width: 720px) {
  .nav-links { position: fixed; top: 0; right: -100%; width: min(300px, 80vw); height: 100vh; background: #111; flex-direction: column; padding: 100px 34px; gap: 22px; transition: right .4s ease; z-index: 999; }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; z-index: 1000; }
  .nav-cta .btn-outline { display: none; }
  .services-grid, .why-grid, .about-features { grid-template-columns: 1fr; }
  .testi-card { width: 300px; }
  .news-card { width: 280px; }
  .testi-msg { min-height: 0; }
  .process-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .blog-cover { height: 230px; }
  .blog-content { padding: 26px 22px 34px; }
  .blog-side { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero-visual { display: flex; margin-top: 48px; }
  .phone-frame { width: 170px; height: 340px; animation: phone-in .7s ease forwards, phone-bob 5s ease-in-out .7s infinite; }
  .card-1 { right: 2%; top: 6%; }
  .card-2 { left: 2%; bottom: 8%; }
  .call-btn.sm-btn { padding: 10px 13px; font-size: 12px; }
}
