:root {
  --navy: #0c1524;
  --navy-2: #111f38;
  --navy-3: #0a1120;
  --orange: #ff8a1e;
  --gold: #f5a623;
  --white: #ffffff;
  --light: #f5f7fb;
  --ink: #1a2338;
  --muted: #667191;
  --border: #e6ebf4;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(12, 21, 36, 0.10);
  --shadow-lg: 0 24px 60px rgba(12, 21, 36, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, .logo { font-family: 'Poppins', system-ui, sans-serif; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.accent { color: var(--orange); }
section { scroll-margin-top: 90px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 999px; cursor: pointer; border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--gold)); color: #fff; box-shadow: 0 10px 24px rgba(255,138,30,.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(255,138,30,.45); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-3px); }
.btn-ghost { background: #fff; color: var(--navy); box-shadow: var(--shadow); }
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Logo */
.logo { font-weight: 800; font-size: 24px; letter-spacing: -.5px; }
.logo .v1 { color: #fff; }
.logo .v2 { color: var(--orange); }
.nav.scrolled .logo .v1 { color: var(--navy); }

/* Top bar */
.topbar { background: var(--navy-3); color: #c7d2e6; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; }
.topbar a { color: #c7d2e6; }
.topbar a:hover { color: var(--orange); }
.topbar .tb-left span { color: var(--gold); font-weight: 600; }
.topbar .tb-right { display: flex; gap: 18px; flex-wrap: wrap; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 100; background: var(--navy); transition: background .3s, box-shadow .3s; }
.nav.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); box-shadow: 0 4px 24px rgba(12,21,36,.10); }
.nav .container { display: flex; align-items: center; justify-content: space-between; padding-top: 15px; padding-bottom: 15px; }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a { padding: 9px 15px; border-radius: 999px; font-weight: 500; font-size: 15px; color: #dbe3f1; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); }
.nav.scrolled .nav-links a { color: var(--ink); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { color: var(--orange); background: var(--light); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 3px; margin: 5px 0; transition: .3s; }
.nav.scrolled .hamburger span { background: var(--navy); }

/* Hero */
.hero { position: relative; background: radial-gradient(1000px 600px at 15% -10%, #16294c 0%, transparent 55%), radial-gradient(900px 500px at 100% 0%, #1c2f52 0%, transparent 50%), linear-gradient(180deg, var(--navy), var(--navy-2)); color: #fff; overflow: hidden; }
.hero::after { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 26px 26px; opacity:.6; pointer-events:none; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; padding-top: 84px; padding-bottom: 96px; }
.hero h1, .hero p.sub { max-width: 720px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,138,30,.14); color: var(--gold); border: 1px solid rgba(255,138,30,.3); padding: 7px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: .3px; text-transform: uppercase; }
.hero h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; margin: 22px 0 18px; letter-spacing: -1px; }
.hero p.sub { font-size: 18px; color: #c3cfe4; max-width: 540px; }
.hero-btns { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* Interior page hero */
.page-hero { position: relative; background: radial-gradient(900px 500px at 20% -20%, #16294c 0%, transparent 55%), radial-gradient(800px 400px at 100% 0%, #1c2f52 0%, transparent 50%), linear-gradient(180deg, var(--navy), var(--navy-2)); color: #fff; text-align: center; padding: 82px 0 66px; overflow: hidden; }
.page-hero::after { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 26px 26px; opacity:.6; pointer-events:none; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 48px); font-weight: 800; margin: 16px 0 12px; letter-spacing: -.5px; }
.page-hero p { color: #c3cfe4; font-size: 17px; max-width: 640px; margin: 0 auto; }

/* Partner strip */
.partners { background: var(--navy-2); border-top: 1px solid rgba(255,255,255,.06); }
.partners .container { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; padding: 26px 22px; }
.partners span { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px; color: #5f6f8f; letter-spacing: .5px; transition: color .3s; }
.partners span:hover { color: #aeb9d1; }

/* Section shells */
.section { padding: 84px 0; }
.section.light { background: var(--light); }
.head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.head .kicker { color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; }
.head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin: 12px 0 14px; letter-spacing: -.5px; }
.head p { color: var(--muted); font-size: 17px; }

/* Portfolio */
.grid-portfolio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.work img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.work:hover img { transform: scale(1.08); }
.work .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,14,26,.85)); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; opacity: .96; }
.work .cat { color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.work .ttl { color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 21px; margin-top: 4px; }

/* Pricing */
.grid-price { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 30px 26px; box-shadow: var(--shadow); position: relative; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.popular { border: 2px solid var(--orange); box-shadow: 0 24px 60px rgba(255,138,30,.22); }
.price-card.popular::before { content: "Most Popular"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,var(--orange),var(--gold)); color: #fff; font-family:'Poppins',sans-serif; font-weight: 700; font-size: 12px; padding: 6px 16px; border-radius: 999px; letter-spacing: .5px; white-space: nowrap; }
.price-card h3 { font-size: 21px; font-weight: 700; }
.price-card .tagline { color: var(--muted); font-size: 14px; margin: 4px 0 16px; min-height: 40px; }
.price-card .old { color: #9aa4bd; text-decoration: line-through; font-weight: 600; font-size: 16px; }
.price-card .now { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 40px; color: var(--navy); line-height: 1; margin: 2px 0 18px; }
.price-card .now small { font-size: 15px; color: var(--muted); font-weight: 600; }
.price-card ul { list-style: none; margin: 0 0 24px; display: grid; gap: 11px; }
.price-card li { font-size: 14.5px; color: #3a465f; display: flex; gap: 10px; align-items: flex-start; }
.price-card li .ck { color: #16a34a; font-weight: 800; flex: none; }
.price-card .btn { margin-top: auto; width: 100%; }
.price-card.popular .btn { background: linear-gradient(135deg,var(--orange),var(--gold)); color:#fff; box-shadow: 0 10px 24px rgba(255,138,30,.35); }
.price-card:not(.popular) .btn { background: var(--navy); color: #fff; }
.price-card:not(.popular) .btn:hover { background: var(--navy-2); transform: translateY(-3px); }

/* Why choose (dark band) */
.why { background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: #fff; }
.grid-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 30px 24px; text-align: center; transition: transform .3s, background .3s; }
.why-item:hover { transform: translateY(-6px); background: rgba(255,138,30,.10); border-color: rgba(255,138,30,.3); }
.why-item .emoji { font-size: 40px; }
.why-item h3 { font-size: 18px; margin: 14px 0 6px; }
.why-item p { color: #b4c0d8; font-size: 14px; }

/* Services */
.grid-serv { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.serv { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 30px 24px; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; }
.serv:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.serv .ic { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; font-size: 26px; background: linear-gradient(135deg, rgba(255,138,30,.16), rgba(245,166,35,.16)); }
.serv h3 { font-size: 18px; margin: 16px 0 8px; }
.serv p { color: var(--muted); font-size: 14.5px; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--orange), var(--gold)); color: #fff; text-align: center; }
.cta-band .container { padding: 60px 22px; }
.cta-band h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; }
.cta-band p { font-size: 17px; margin: 10px 0 26px; opacity: .95; }

/* Testimonials */
.grid-test { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px 26px; box-shadow: var(--shadow); }
.test .stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; }
.test p { color: #3a465f; font-style: italic; margin: 14px 0 20px; }
.test .who { display: flex; align-items: center; gap: 13px; }
.test .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,var(--orange),var(--gold)); color: #fff; display: grid; place-items: center; font-family:'Poppins',sans-serif; font-weight: 700; }
.test .who b { font-family: 'Poppins', sans-serif; }
.test .who span { display: block; color: var(--muted); font-size: 13px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info h3 { font-size: 24px; margin-bottom: 10px; }
.contact-info > p { color: var(--muted); margin-bottom: 24px; }
.info-row { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); }
.info-row .ic { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, rgba(255,138,30,.15), rgba(245,166,35,.15)); display: grid; place-items: center; font-size: 20px; flex: none; }
.info-row .lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.info-row .val { font-family: 'Poppins', sans-serif; font-weight: 600; }
.form { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 30px; box-shadow: var(--shadow); }
.form h3 { font-size: 22px; margin-bottom: 18px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #3a465f; }
.field input, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 12px; font-family: inherit; font-size: 15px; background: #fbfcfe; transition: border .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,138,30,.15); }
.form .btn-primary { width: 100%; }
.form-success { display: none; background: #ecfdf5; border: 1.5px solid #a7f3d0; color: #047857; border-radius: 12px; padding: 16px; text-align: center; font-weight: 600; margin-top: 14px; }
.form-success.show { display: block; }

/* Footer */
.footer { background: #070c17; color: #aab4cc; }
.footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding: 60px 22px 30px; }
.footer .logo { font-size: 26px; margin-bottom: 14px; }
.footer .logo .v1 { color: #fff; }
.footer p.blurb { font-size: 14.5px; max-width: 360px; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { font-size: 14.5px; }
.footer ul a:hover { color: var(--orange); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: background .3s, transform .3s; }
.socials a:hover { background: var(--orange); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; fill: #fff; }
.copyright { border-top: 1px solid rgba(255,255,255,.08); text-align: center; padding: 20px; font-size: 13.5px; }

/* Portfolio laptop mockups */
.laptop .frame { background: #15181f; border-radius: 14px 14px 5px 5px; padding: 12px 12px 0; box-shadow: 0 20px 44px rgba(12,21,36,.20); }
.laptop .cam { display: block; width: 5px; height: 5px; border-radius: 50%; background: #3a3f4a; margin: 0 auto 8px; }
.laptop .screen { position: relative; border-radius: 5px; overflow: hidden; aspect-ratio: 16/10; background: #000; container-type: size; }
.laptop .screen img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.device:hover .screen img { transform: scale(1.07); }

/* Recreated website "design shots" inside each laptop */
.mini { position: absolute; inset: 0; background: var(--m-bg); color: var(--m-fg); font-family: 'Inter', sans-serif; display: flex; flex-direction: column; overflow: hidden; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.device:hover .mini { transform: scale(1.05); }
.mini .mn { display: flex; align-items: center; justify-content: space-between; padding: 5cqh 5cqw 0; }
.mini .mb { font-family: var(--m-brandfont, 'Poppins'), sans-serif; font-weight: 800; font-size: 3.3cqw; letter-spacing: .02em; color: var(--m-brandcolor, var(--m-fg)); }
.mini .ml { display: flex; gap: 2.8cqw; font-size: 2cqw; opacity: .7; font-weight: 600; }
.mini .strip { margin-top: 3cqh; padding: 1.4cqh 5cqw; background: var(--m-strip, transparent); font-size: 1.7cqw; letter-spacing: .18em; text-transform: uppercase; opacity: .85; font-weight: 700; }
.mini .mh { flex: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 4cqw; padding: 3cqh 5cqw 4cqh; align-items: center; }
.mini .mh.rev { grid-template-columns: .95fr 1.05fr; }
.mini .mh.rev .mcopy { order: 2; }
.mini .tag { font-size: 1.8cqw; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .7; display: inline-block; }
.mini h3 { font-family: var(--m-headfont, 'Poppins'), sans-serif; font-weight: 800; font-size: 8cqw; line-height: .98; margin: 1.6cqh 0; color: var(--m-headcolor, var(--m-fg)); letter-spacing: -.01em; }
.mini h3 small { display: block; font-size: 4.4cqw; font-weight: 700; }
.mini p { font-size: 1.9cqw; line-height: 1.5; opacity: .78; margin-bottom: 2.6cqh; }
.mini .mbtn { display: inline-block; background: var(--m-acc); color: var(--m-btnfg, #fff); font-weight: 700; font-size: 2.1cqw; padding: 1.7cqh 4.5cqw; border-radius: 20cqw; }
.mini .mbtn.sq { border-radius: 1.5cqw; }
.mini .mimg { position: relative; height: 100%; min-height: 44cqh; border-radius: 2.5cqw; background-size: cover; background-position: center; box-shadow: 0 1cqh 3cqh rgba(0,0,0,.25); }
.mini .mimg.round { border-radius: 50%; aspect-ratio: 1; height: auto; align-self: center; }
.mini .mbadge { position: absolute; bottom: -3cqw; left: -3cqw; width: 22cqw; height: 22cqw; border-radius: 50%; background: var(--m-badge, #e23b2e); color: #fff; display: grid; place-items: center; text-align: center; font-family: 'Poppins'; font-weight: 800; font-size: 4cqw; line-height: 1; box-shadow: 0 1cqh 3cqh rgba(0,0,0,.3); }
.mini .mbadge small { display: block; font-size: 1.8cqw; font-weight: 700; letter-spacing: .1em; }

.m-burger { --m-bg: #f6b52a; --m-fg: #3a2410; --m-acc: #e23b2e; --m-headcolor: #3a2410; --m-strip: rgba(58,36,16,.12); }
.m-build  { --m-bg: #ffffff; --m-fg: #22335c; --m-acc: #f4b23e; --m-btnfg: #22335c; --m-headcolor: #22335c; }
.m-ai     { --m-bg: #ffffff; --m-fg: #111111; --m-acc: #f2e500; --m-btnfg: #111111; --m-strip: #111111; --m-headcolor: #111; }
.m-ai .strip { color: #fff; }
.m-moody  { --m-bg: #171717; --m-fg: #e9e0cf; --m-acc: #c9a86a; --m-btnfg: #171717; --m-headfont: Georgia; --m-headcolor: #efe7d5; }
.m-resto  { --m-bg: #efe9db; --m-fg: #6b5b3e; --m-acc: #6b5b3e; --m-headcolor: #5b4d34; }
.m-bike   { --m-bg: #141414; --m-fg: #ffffff; --m-acc: #e08a3c; --m-btnfg: #141414; --m-headcolor: #fff; }
.m-local  { --m-bg: #f6d5d0; --m-fg: #2f6b52; --m-acc: #2f6b52; --m-headfont: Georgia; --m-headcolor: #2f6b52; }
.laptop .deck { position: relative; height: 14px; width: 120%; margin-left: -10%; background: linear-gradient(#e7ebf2, #b1bacb); border-radius: 0 0 12px 12px; box-shadow: 0 14px 26px rgba(12,21,36,.15); }
.laptop .deck::after { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 92px; height: 6px; background: #98a2b4; border-radius: 0 0 8px 8px; }
.device .cap { text-align: center; margin-top: 18px; }
.device .cap .cat { color: var(--orange); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.device .cap .ttl { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; margin-top: 3px; color: var(--ink); }

/* FAQ accordion */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 22px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center; color: var(--ink); }
.faq-q .pm { color: var(--orange); font-size: 26px; line-height: 1; transition: transform .3s; flex: none; }
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); }

/* Call-us floating button (bottom-left) */
.callus { position: fixed; left: 20px; bottom: 22px; z-index: 300; display: flex; align-items: center; gap: 12px; text-decoration: none; }
.callus .orb { position: relative; width: 64px; height: 64px; border-radius: 50%; background: radial-gradient(circle at 32% 28%, #38d986, #16a34a); box-shadow: 0 12px 30px rgba(22,163,74,.5); display: grid; place-items: center; }
.callus .orb svg { width: 30px; height: 30px; animation: ringphone 1.4s ease-in-out infinite; transform-origin: center; }
.callus .orb::before, .callus .orb::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #22c55e; animation: pulsering 2.2s ease-out infinite; }
.callus .orb::after { animation-delay: 1.1s; }
.callus .spark { position: absolute; font-size: 15px; color: #fde047; pointer-events: none; animation: twinkle 1.6s ease-in-out infinite; }
.callus .s1 { top: -6px; right: 2px; } .callus .s2 { bottom: -4px; left: -2px; animation-delay: .5s; } .callus .s3 { top: 8px; left: -8px; animation-delay: 1s; }
.callus .lbl { background: #0c1524; color: #fff; padding: 9px 16px; border-radius: 12px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; box-shadow: var(--shadow); line-height: 1.2; }
.callus .lbl small { display: block; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 11px; color: #9fb0cf; }
@keyframes pulsering { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(2); opacity: 0; } }
@keyframes ringphone { 0%,100% { transform: rotate(0); } 12%,36% { transform: rotate(-14deg); } 24%,48% { transform: rotate(14deg); } 60% { transform: rotate(0); } }
@keyframes twinkle { 0%,100% { opacity: 0; transform: scale(.3) rotate(0); } 50% { opacity: 1; transform: scale(1) rotate(90deg); } }

/* Live chat widget (bottom-right) */
.chat-fab { position: fixed; right: 20px; bottom: 22px; z-index: 300; width: 62px; height: 62px; border-radius: 50%; border: 0; cursor: pointer; background: linear-gradient(135deg, var(--orange), var(--gold)); box-shadow: 0 12px 30px rgba(255,138,30,.5); display: grid; place-items: center; transition: transform .25s; }
.chat-fab:hover { transform: scale(1.06); }
.chat-fab svg { width: 28px; height: 28px; fill: #fff; }
.chat-fab .badge { position: absolute; top: -3px; right: -3px; width: 22px; height: 22px; border-radius: 50%; background: #ef4444; color: #fff; font-size: 11px; font-weight: 700; display: grid; place-items: center; border: 2px solid #fff; }
.chat-panel { position: fixed; right: 20px; bottom: 96px; z-index: 300; width: 350px; max-width: calc(100vw - 40px); background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; transform: translateY(20px) scale(.96); opacity: 0; pointer-events: none; transition: .28s cubic-bezier(.16,1,.3,1); }
.chat-panel.open { transform: none; opacity: 1; pointer-events: auto; }
.chat-head { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; padding: 15px 18px; display: flex; align-items: center; gap: 12px; }
.chat-head .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--gold)); display: grid; place-items: center; font-family: 'Poppins', sans-serif; font-weight: 700; flex: none; }
.chat-head b { font-family: 'Poppins', sans-serif; font-size: 15px; display: block; }
.chat-head .on { font-size: 12px; color: #7ee2a8; display: flex; align-items: center; gap: 5px; }
.chat-head .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,.6); animation: pulsering 2s infinite; }
.chat-head .x { margin-left: auto; background: none; border: 0; color: #fff; font-size: 24px; cursor: pointer; line-height: 1; padding: 0 4px; }
.chat-body { padding: 16px; height: 310px; overflow-y: auto; background: var(--light); display: flex; flex-direction: column; gap: 10px; }
.bubble { max-width: 84%; padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.5; }
.bubble.bot { background: #fff; border: 1px solid var(--border); border-bottom-left-radius: 4px; align-self: flex-start; color: #2a3550; }
.bubble.me { background: linear-gradient(135deg, var(--orange), var(--gold)); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.quick { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 2px; }
.quick button { background: #fff; border: 1px solid var(--orange); color: var(--orange); border-radius: 999px; padding: 7px 12px; font-size: 12.5px; font-weight: 600; cursor: pointer; transition: .2s; font-family: inherit; }
.quick button:hover { background: var(--orange); color: #fff; }
.chat-foot { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--border); background: #fff; }
.chat-foot input { flex: 1; border: 1.5px solid var(--border); border-radius: 999px; padding: 10px 15px; font-family: inherit; font-size: 14px; }
.chat-foot input:focus { outline: none; border-color: var(--orange); }
.chat-foot button { background: linear-gradient(135deg, var(--orange), var(--gold)); border: 0; width: 42px; height: 42px; border-radius: 50%; color: #fff; cursor: pointer; display: grid; place-items: center; flex: none; }
.chat-foot button svg { width: 17px; height: 17px; fill: #fff; }

@media (max-width: 680px) {
  .callus .lbl { display: none; }
  .callus { bottom: 18px; left: 16px; } .chat-fab { bottom: 18px; right: 16px; }
  .chat-panel { bottom: 90px; }
}

/* Scroll-in reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .callus .orb svg, .callus .orb::before, .callus .orb::after, .callus .spark, .chat-head .dot { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-btns { justify-content: flex-start; }
  .grid-portfolio, .grid-price, .grid-why, .grid-serv, .grid-test { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { position: fixed; top: 66px; left: 14px; right: 14px; flex-direction: column; align-items: stretch; gap: 4px; background: #fff; border-radius: 18px; padding: 12px; box-shadow: var(--shadow-lg); transform: translateY(-14px); opacity: 0; pointer-events: none; transition: .28s; }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { color: var(--ink); padding: 13px 16px; }
  .hamburger { display: block; }
  .nav-cta .btn-desktop { display: none; }
  .topbar { display: none; }
  .grid-portfolio, .grid-price, .grid-why, .grid-serv, .grid-test, .footer .container { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .partners { display: none; }
}
