/* ============================================================
   Nabdat Al-Ittisal — نبضة الاتصال
   Shared stylesheet (Arabic RTL + English LTR)
   One sheet serves both directions via CSS logical properties.
   ============================================================ */

:root{
  --navy-deep:#0F1426;
  --navy:#16203D;
  --navy-soft:#212C4E;
  --orange:#F68C1E;
  --orange-hot:#FF9D3C;
  --orange-light:#FFB55E;
  --paper:#F8F6F2;
  --paper-dim:#EFEBE3;
  --ink:#1A2036;
  --slate:#6B7280;
  --slate-soft:#9AA1B4;
  --line:rgba(15,20,38,0.09);
  --line-dark:rgba(255,255,255,0.12);
  --whatsapp:#25D366;
  --shadow-card:0 24px 44px -24px rgba(15,20,38,0.28);
  --grad-orange:linear-gradient(135deg,#F68C1E 0%,#FFA94D 100%);
}

*{box-sizing:border-box; margin:0; padding:0;}

html{scroll-behavior:smooth;}

body{
  background:var(--paper);
  color:var(--ink);
  font-family:'Tajawal',sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

html[lang="en"] body{ font-family:'Inter',sans-serif; }
html[lang="en"] .display{ font-family:'Sora',sans-serif; letter-spacing:-0.5px; }
html[lang="ar"] .display{ font-family:'Tajawal',sans-serif; }

::selection{ background:var(--orange); color:#fff; }

img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
button{font-family:inherit; cursor:pointer;}

.wrap{ max-width:1160px; margin:0 auto; padding:0 28px; }

/* ===== Accessibility ===== */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, summary:focus-visible{
  outline:2px solid var(--orange);
  outline-offset:3px;
  border-radius:4px;
}
.skip-link{
  position:absolute; inset-inline-start:12px; top:-52px; z-index:200;
  background:var(--navy-deep); color:#fff; font-weight:700; font-size:13.5px;
  padding:10px 18px; border-radius:0 0 10px 10px;
  transition:top .2s ease;
}
.skip-link:focus{ top:0; }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ===== Dot-grid texture helper ===== */
.dotted{ position:relative; }
.dotted::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image:radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1.4px);
  background-size:26px 26px;
  mask-image:radial-gradient(90% 90% at 50% 10%, #000 0%, transparent 78%);
  -webkit-mask-image:radial-gradient(90% 90% at 50% 10%, #000 0%, transparent 78%);
}
.dotted-light::before{
  background-image:radial-gradient(rgba(15,20,38,0.14) 1px, transparent 1.4px);
}

/* ===== Pulse signature (SVG line) ===== */
.pulse-divider{
  width:100%;
  height:34px;
  color:var(--orange);
  opacity:0.55;
}
.pulse-divider svg{ width:100%; height:100%; display:block; }
.pulse-divider path{
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.hero-pulse{
  width:100%;
  max-width:640px;
  margin-top:22px;
  filter:drop-shadow(0 0 12px rgba(246,140,30,0.45));
}
.hero-pulse path{
  fill:none;
  stroke:var(--orange);
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-dasharray:900;
  stroke-dashoffset:900;
  animation:draw 2.4s ease-out forwards 0.4s;
}
@keyframes draw{ to{ stroke-dashoffset:0; } }

/* ===== Reveal on scroll ===== */
.reveal{ opacity:0; transform:translateY(20px); transition:opacity .65s ease, transform .65s ease; }
.reveal.in{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  .hero-pulse path{ animation:none; stroke-dashoffset:0; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .hero-rings, .cta-ring{ animation:none !important; }
  *{ scroll-behavior:auto !important; }
}

/* ===== Top bar ===== */
.topbar{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(248,246,242,0.82);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .3s ease, background .3s ease;
}
.topbar.scrolled{
  background:rgba(248,246,242,0.94);
  box-shadow:0 10px 30px -18px rgba(15,20,38,0.35);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px 28px;
  max-width:1160px; margin:0 auto;
}
.brand{ display:flex; align-items:center; gap:12px; flex:none; }
.brand img{ height:42px; width:auto; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text .name{ font-weight:800; font-size:15px; letter-spacing:0.2px; }
.brand-text .sub{ font-size:10.5px; color:var(--slate); letter-spacing:1.2px; text-transform:uppercase; }

nav.mainnav{ display:flex; align-items:center; gap:4px; }
nav.mainnav a.navlink{
  color:var(--ink); font-size:14.5px; font-weight:600;
  padding:9px 15px; border-radius:22px; position:relative;
  transition:background .2s, color .2s;
  display:inline-block;
}
nav.mainnav a.navlink:hover{ background:var(--paper-dim); }
nav.mainnav a.navlink.active{ background:var(--navy-deep); color:#fff; }

.topbar-actions{ display:flex; align-items:center; gap:10px; }
.lang-toggle{
  border:1px solid var(--line); background:#fff; color:var(--ink);
  font-size:13px; font-weight:700; padding:8px 15px; border-radius:22px;
  display:inline-flex; align-items:center; gap:7px;
  transition:border-color .15s ease, color .15s ease, transform .15s ease;
}
.lang-toggle:hover{ border-color:var(--orange); color:var(--orange); transform:translateY(-1px); }
.lang-toggle svg{ opacity:.7; }

.cta-pill{
  background:var(--grad-orange); color:#fff; font-weight:700; font-size:14px;
  padding:10px 21px; border-radius:22px; border:none; display:inline-block;
  box-shadow:0 6px 18px -6px rgba(246,140,30,0.65), inset 0 1px 0 rgba(255,255,255,0.35);
  transition:transform .15s ease, box-shadow .15s ease;
}
.cta-pill:hover{ transform:translateY(-1px); box-shadow:0 12px 24px -8px rgba(246,140,30,0.75), inset 0 1px 0 rgba(255,255,255,0.35); }

.burger{ display:none; }
.mobile-menu{ display:none; }

main{ padding-top:80px; }

/* ===== Buttons ===== */
.btn-primary{
  background:var(--grad-orange); color:#fff; font-weight:700; font-size:15px;
  padding:14px 28px; border-radius:12px; border:none;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  box-shadow:0 14px 30px -10px rgba(246,140,30,0.6), inset 0 1px 0 rgba(255,255,255,0.35);
  transition:transform .15s ease, box-shadow .15s ease;
  text-align:center;
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 20px 36px -12px rgba(246,140,30,0.7), inset 0 1px 0 rgba(255,255,255,0.35); }
.btn-primary .arr, .btn-ghost .arr{ display:inline-flex; transition:transform .2s ease; }
.btn-primary:hover .arr, .btn-ghost:hover .arr{ transform:translateX(3px); }
html[dir="rtl"] .btn-primary .arr svg, html[dir="rtl"] .btn-ghost .arr svg{ transform:scaleX(-1); }
html[dir="rtl"] .btn-primary:hover .arr, html[dir="rtl"] .btn-ghost:hover .arr{ transform:translateX(-3px); }

.btn-ghost{
  background:transparent; color:#fff; font-weight:700; font-size:15px;
  padding:14px 28px; border-radius:12px; border:1px solid var(--line-dark);
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  transition:border-color .15s ease, background .15s ease, transform .15s ease;
  text-align:center;
}
.btn-ghost:hover{ border-color:#fff; background:rgba(255,255,255,0.07); transform:translateY(-2px); }
.btn-ghost.on-light{ color:var(--ink); border-color:rgba(15,20,38,0.22); }
.btn-ghost.on-light:hover{ border-color:var(--ink); background:rgba(15,20,38,0.045); }

.btn-whatsapp{
  background:var(--whatsapp); color:#fff; font-weight:700; font-size:15px;
  padding:14px 26px; border-radius:12px; border:none;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  box-shadow:0 14px 30px -10px rgba(37,211,102,0.5);
  transition:transform .15s ease;
}
.btn-whatsapp:hover{ transform:translateY(-2px); }

/* ===== Hero (home) ===== */
.hero{
  background:radial-gradient(120% 140% at 85% -10%, #26355F 0%, var(--navy) 40%, var(--navy-deep) 80%);
  color:#fff;
  padding:84px 0 96px;
  position:relative;
  overflow:hidden;
}
.hero-rings{
  position:absolute; inset-inline-end:-140px; top:-140px;
  width:560px; height:560px;
  border-radius:50%;
  border:1px solid var(--line-dark);
  animation:ringPulse 7s ease-in-out infinite;
}
.hero-rings::before, .hero-rings::after{
  content:""; position:absolute; border-radius:50%; border:1px solid var(--line-dark);
}
.hero-rings::before{ inset:64px; }
.hero-rings::after{ inset:138px; border-color:rgba(246,140,30,0.22); }
@keyframes ringPulse{
  0%,100%{ transform:scale(1); opacity:1; }
  50%{ transform:scale(1.04); opacity:.85; }
}

.hero-nodes{
  position:absolute; inset-inline-end:0; bottom:-30px; width:42%; max-width:480px; height:58%;
  opacity:.4; pointer-events:none;
}
.hero-nodes svg{ width:100%; height:100%; }

.hero-grid{
  display:grid; grid-template-columns:1.15fr 0.85fr; gap:48px; align-items:center;
  position:relative; z-index:2;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-size:12.5px; font-weight:700; letter-spacing:1.4px; text-transform:uppercase;
  color:var(--orange-light); margin-bottom:22px;
  background:rgba(246,140,30,0.10);
  border:1px solid rgba(246,140,30,0.25);
  padding:7px 15px; border-radius:20px;
}
.eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--orange); box-shadow:0 0 0 4px rgba(246,140,30,0.25); animation:blink 2.4s ease-in-out infinite; }
@keyframes blink{ 0%,100%{ box-shadow:0 0 0 4px rgba(246,140,30,0.25);} 50%{ box-shadow:0 0 0 7px rgba(246,140,30,0.12);} }

h1.hero-title{
  font-size:clamp(34px,5vw,58px);
  font-weight:900;
  line-height:1.2;
  max-width:660px;
}
h1.hero-title .accent{
  color:var(--orange);
  position:relative; display:inline-block;
  text-shadow:0 0 34px rgba(246,140,30,0.45);
}

.hero-sub{
  margin-top:22px; font-size:17px; line-height:1.85; color:#C9CEDE; max-width:540px;
}

.hero-ctas{ display:flex; gap:14px; margin-top:36px; flex-wrap:wrap; }

.hero-card{
  background:linear-gradient(160deg, rgba(255,255,255,0.075), rgba(255,255,255,0.03));
  border:1px solid var(--line-dark);
  border-radius:22px;
  padding:32px 30px;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  box-shadow:0 30px 60px -30px rgba(0,0,0,0.55);
  position:relative;
}
.hero-card::before{
  content:""; position:absolute; inset-inline:22px; top:0; height:2px;
  background:var(--grad-orange); border-radius:2px; opacity:.9;
}
.hero-card .mono-label{ font-size:11.5px; color:var(--slate-soft); letter-spacing:1.6px; text-transform:uppercase; font-weight:700;}
.hero-card ul{ list-style:none; margin-top:20px; display:flex; flex-direction:column; gap:18px; }
.hero-card li{ display:flex; gap:13px; align-items:flex-start; font-size:14.5px; color:#DDE1EC; line-height:1.65; }
.hero-card li .num{
  color:var(--orange); font-weight:800; font-family:'Sora',sans-serif; font-size:12.5px;
  background:rgba(246,140,30,0.12); border:1px solid rgba(246,140,30,0.28);
  border-radius:8px; padding:3px 8px; flex:none; margin-top:1px;
}

/* ===== Page hero (inner pages) ===== */
.page-hero{
  background:radial-gradient(130% 170% at 85% -30%, #26355F 0%, var(--navy) 44%, var(--navy-deep) 82%);
  color:#fff;
  padding:66px 0 60px;
  position:relative;
  overflow:hidden;
}
.page-hero .hero-rings{ inset-inline-end:-220px; top:-300px; animation:none; }
.page-hero .kicker{ color:var(--orange-light); }
.page-hero h1{
  font-size:clamp(30px,4vw,44px); font-weight:900; line-height:1.28; max-width:700px;
  position:relative; z-index:2;
}
.page-hero h1 .accent{ color:var(--orange); }
.page-hero p.lead{
  margin-top:16px; color:#C9CEDE; font-size:16.5px; line-height:1.85; max-width:620px;
  position:relative; z-index:2;
}
.breadcrumb{
  display:flex; align-items:center; gap:8px; flex-wrap:wrap;
  font-size:12.5px; color:var(--slate-soft); margin-bottom:20px;
  position:relative; z-index:2;
}
.breadcrumb a:hover{ color:var(--orange-light); }
.breadcrumb .sep{ opacity:.5; }

/* ===== Section shell ===== */
section.block{ padding:92px 0; }
section.block.tight{ padding:68px 0; }
.block-head{ max-width:660px; margin-bottom:52px; }
.block-head.center{ margin-inline:auto; text-align:center; }
.kicker{
  font-size:12.5px; font-weight:800; letter-spacing:1.7px; text-transform:uppercase;
  color:var(--orange); margin-bottom:14px;
  display:inline-flex; align-items:center; gap:10px;
}
.kicker::before{
  content:""; width:26px; height:2px; border-radius:2px; background:var(--grad-orange);
}
.block-head.center .kicker::after{
  content:""; width:26px; height:2px; border-radius:2px; background:var(--grad-orange);
}
h2.block-title{ font-size:clamp(27px,3.3vw,38px); font-weight:800; line-height:1.3; }
.block-desc{ margin-top:14px; color:var(--slate); font-size:15.5px; line-height:1.9; }

.alt-bg{ background:var(--navy-deep); color:#fff; position:relative; }
.alt-bg .block-desc{ color:#B9BFD2; }
.alt-bg .kicker{ color:var(--orange-light); }

/* ===== About ===== */
.about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
.about-copy p{ color:var(--slate); font-size:15.5px; line-height:1.95; margin-bottom:18px; }
.about-copy p:first-of-type{ color:var(--ink); font-size:17.5px; font-weight:500; line-height:1.85; }

.pillars{ display:flex; flex-direction:column; gap:0; }
.pillar{
  display:flex; gap:18px; padding:24px 0; border-top:1px solid var(--line);
  align-items:flex-start;
}
.pillar:last-child{ border-bottom:1px solid var(--line); }
.pillar-num{
  font-family:'Sora',sans-serif; font-weight:800; font-size:15px;
  color:var(--orange); background:rgba(246,140,30,0.10);
  border:1px solid rgba(246,140,30,0.25);
  width:44px; height:44px; border-radius:13px; flex:none;
  display:flex; align-items:center; justify-content:center;
}
.pillar-body h3{ font-size:16.5px; font-weight:800; margin-bottom:6px; }
.pillar-body p{ font-size:14px; color:var(--slate); line-height:1.75; }

.legal-strip{
  margin-top:60px;
  background:#fff; border:1px solid var(--line); border-radius:18px;
  padding:24px 28px;
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
  font-size:14px; color:var(--slate);
}
.legal-strip .legal-ico{
  width:42px; height:42px; border-radius:12px; flex:none;
  background:var(--paper-dim); color:var(--navy-deep);
  display:flex; align-items:center; justify-content:center;
}
.legal-strip strong{ color:var(--ink); }

/* ===== Network panel (about visual) ===== */
.net-panel{
  border-radius:24px; overflow:hidden; position:relative;
  background:
    radial-gradient(130% 150% at 20% 0%, rgba(246,140,30,0.16), transparent 50%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 75%);
  border:1px solid rgba(15,20,38,0.14);
  min-height:320px;
  box-shadow:var(--shadow-card);
}
.net-panel svg{ position:absolute; inset:0; width:100%; height:100%; }
.net-panel .net-caption{
  position:absolute; inset-inline:22px; bottom:20px; z-index:2;
  background:rgba(15,20,38,0.55); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  border:1px solid var(--line-dark); border-radius:14px;
  color:#DDE1EC; font-size:13px; line-height:1.7; padding:14px 18px;
}
.net-panel .net-caption strong{ color:var(--orange-light); }

/* ===== Process ===== */
.process-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; position:relative; }
.process-step{
  background:#fff; border:1px solid var(--line); border-radius:20px; padding:28px 24px;
  position:relative; overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease;
}
.process-step:hover{ transform:translateY(-4px); box-shadow:var(--shadow-card); }
.process-step::after{
  content:""; position:absolute; inset-inline:0; top:0; height:3px;
  background:var(--grad-orange);
  transform:scaleX(0); transform-origin:var(--tx-origin, left);
  transition:transform .25s ease;
}
html[dir="rtl"] .process-step::after{ --tx-origin:right; }
.process-step:hover::after{ transform:scaleX(1); }
.alt-bg .process-step{ background:rgba(255,255,255,0.05); border-color:var(--line-dark); }
.process-step .step-num{
  font-family:'Sora',sans-serif; font-weight:800; font-size:13.5px; color:var(--orange);
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:11px;
  background:rgba(246,140,30,0.12); border:1px solid rgba(246,140,30,0.25);
  margin-bottom:18px;
}
.process-step h3{ font-size:16.5px; font-weight:800; margin-bottom:8px; }
.process-step p{ font-size:13.5px; color:var(--slate); line-height:1.8; }
.alt-bg .process-step p{ color:#B9BFD2; }

/* ===== Services ===== */
.svc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.svc-card{
  background:#fff; border:1px solid var(--line); border-radius:20px;
  padding:30px 26px; transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display:flex; flex-direction:column; position:relative; overflow:hidden;
}
.svc-card::after{
  content:""; position:absolute; inset-inline:0; top:0; height:3px;
  background:var(--grad-orange);
  transform:scaleX(0); transform-origin:var(--tx-origin, left);
  transition:transform .25s ease;
}
html[dir="rtl"] .svc-card::after{ --tx-origin:right; }
.svc-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-card);
  border-color:transparent;
}
.svc-card:hover::after{ transform:scaleX(1); }
.svc-icon{
  width:52px; height:52px; border-radius:15px;
  background:var(--grad-orange);
  display:flex; align-items:center; justify-content:center; color:#fff;
  margin-bottom:20px; flex:none;
  box-shadow:0 10px 22px -8px rgba(246,140,30,0.55);
  transition:transform .22s ease;
}
.svc-card:hover .svc-icon{ transform:scale(1.06) rotate(-3deg); }
.svc-card h3{ font-size:17px; font-weight:800; margin-bottom:10px; }
.svc-card p{ font-size:14px; color:var(--slate); line-height:1.8; }
.svc-card ul{
  list-style:none; margin-top:16px; display:flex; flex-direction:column; gap:9px;
}
.svc-card ul li{
  font-size:13.5px; color:var(--slate); line-height:1.65;
  display:flex; gap:10px; align-items:flex-start;
}
.svc-card ul li::before{
  content:""; width:6px; height:6px; border-radius:50%; background:var(--orange);
  flex:none; margin-top:7px;
}
.svc-more{ margin-top:44px; text-align:center; }

.svc-callout{
  margin-top:60px;
  background:
    radial-gradient(120% 200% at 90% -40%, rgba(246,140,30,0.18), transparent 50%),
    linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 70%);
  color:#fff; border-radius:24px; padding:42px 40px;
  display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap;
  position:relative; overflow:hidden;
  box-shadow:var(--shadow-card);
}
.svc-callout::after{
  content:""; position:absolute; inset-inline-end:-90px; top:-90px;
  width:280px; height:280px; border-radius:50%;
  border:1px dashed rgba(246,140,30,0.35);
}
.svc-callout h3{ font-size:21px; font-weight:800; margin-bottom:9px; }
.svc-callout p{ color:#B9BFD2; font-size:14.5px; line-height:1.85; max-width:540px; }
.svc-callout .btn-primary{ flex:none; position:relative; z-index:2; }

/* ===== FAQ ===== */
.faq-list{ max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{
  background:#fff; border:1px solid var(--line); border-radius:16px;
  transition:box-shadow .2s ease, border-color .2s ease;
  overflow:hidden;
}
.faq-item[open]{ box-shadow:var(--shadow-card); border-color:transparent; }
.faq-item summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 24px;
  font-size:15.5px; font-weight:700;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .plus{
  width:30px; height:30px; border-radius:9px; flex:none;
  background:var(--paper-dim); color:var(--navy-deep);
  display:flex; align-items:center; justify-content:center;
  transition:transform .25s ease, background .25s ease, color .25s ease;
}
.faq-item[open] summary .plus{ transform:rotate(45deg); background:var(--grad-orange); color:#fff; }
.faq-item .faq-body{
  padding:0 24px 22px; color:var(--slate); font-size:14.5px; line-height:1.9;
}

/* ===== Portfolio ===== */
.pf-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.pf-card{
  border-radius:20px; overflow:hidden; border:1px solid var(--line); background:#fff;
  transition:transform .22s ease, box-shadow .22s ease;
}
.pf-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-card);
}
.pf-visual{
  height:150px; position:relative; overflow:hidden;
  background:
    radial-gradient(120% 160% at 15% 0%, rgba(246,140,30,0.35), transparent 55%),
    linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
}
.pf-visual::before{
  content:""; position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,0.13) 1px, transparent 1.4px);
  background-size:22px 22px;
  mask-image:linear-gradient(180deg,#000 0%,transparent 90%);
  -webkit-mask-image:linear-gradient(180deg,#000 0%,transparent 90%);
}
.pf-visual svg{ position:absolute; inset:0; width:100%; height:100%; opacity:0.9; }
.pf-body{ padding:22px 24px 26px; }
.pf-body .pf-cat{ font-size:11.5px; font-weight:800; letter-spacing:1px; text-transform:uppercase; color:var(--orange); margin-bottom:9px; display:block;}
.pf-body h3{ font-size:16.5px; font-weight:800; margin-bottom:8px; }
.pf-body p{ font-size:13.5px; color:var(--slate); line-height:1.75; }

.pf-note{
  margin-top:38px; font-size:13.5px; color:var(--slate-soft); text-align:center;
}

/* ===== Sectors strip ===== */
.sector-strip{ display:flex; flex-wrap:wrap; gap:12px; }
.sector-chip{
  background:#fff; border:1px solid var(--line); border-radius:30px;
  padding:11px 21px; font-size:13.5px; font-weight:700; color:var(--ink);
  display:inline-flex; align-items:center; gap:10px;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.sector-chip:hover{ transform:translateY(-2px); border-color:rgba(246,140,30,0.5); box-shadow:0 12px 22px -14px rgba(15,20,38,0.3); }
.sector-chip .dot{ width:7px; height:7px; border-radius:50%; background:var(--orange); flex:none; }

/* ===== CTA band ===== */
.cta-band{
  background:radial-gradient(130% 180% at 15% -30%, #26355F 0%, var(--navy) 45%, var(--navy-deep) 85%);
  color:#fff; padding:80px 0; position:relative; overflow:hidden;
}
.cta-ring{
  position:absolute; inset-inline-end:-120px; bottom:-190px;
  width:420px; height:420px; border-radius:50%;
  border:1px dashed rgba(246,140,30,0.4);
  animation:spin 40s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
.cta-band .pulse-decor{
  position:absolute; inset-inline:0; bottom:20px; height:30px; opacity:.3; color:var(--orange);
}
.cta-band .pulse-decor svg{ width:100%; height:100%; }
.cta-band .pulse-decor path{ fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; }
.cta-inner{
  display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
  position:relative; z-index:2;
}
.cta-inner h2{ font-size:clamp(25px,3.1vw,34px); font-weight:800; line-height:1.35; max-width:560px; }
.cta-inner p{ margin-top:12px; color:#B9BFD2; font-size:15px; line-height:1.85; max-width:520px; }
.cta-phone{
  display:inline-flex; align-items:center; gap:10px; margin-top:18px;
  font-family:'Sora',sans-serif; font-weight:700; font-size:19px; color:var(--orange-light);
}
.cta-phone:hover{ color:#fff; }
.cta-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ===== Contact ===== */
.contact-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:48px; }
.contact-info{ display:flex; flex-direction:column; gap:20px; }
.info-card{
  background:#fff; border:1px solid var(--line); border-radius:18px; padding:22px;
  display:flex; gap:16px; align-items:flex-start;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.info-card:hover{ transform:translateY(-2px); border-color:rgba(246,140,30,0.45); box-shadow:0 16px 30px -20px rgba(15,20,38,0.35); }
.info-icon{
  width:44px; height:44px; border-radius:12px; flex:none;
  background:var(--paper-dim); color:var(--navy-deep);
  display:flex; align-items:center; justify-content:center;
}
.info-card.whatsapp .info-icon{ background:rgba(37,211,102,0.14); color:#128C4B; }
.info-card h4{ font-size:13px; color:var(--slate); font-weight:700; margin-bottom:5px; }
.info-card p, .info-card a{ font-size:15px; font-weight:700; }
.info-card a:hover{ color:var(--orange); }
.info-card .hint{ font-size:12.5px; color:var(--slate-soft); font-weight:400; margin-top:4px; }

form.contact-form{
  background:#fff; border:1px solid var(--line); border-radius:22px; padding:34px;
  display:flex; flex-direction:column; gap:18px;
  box-shadow:0 30px 50px -38px rgba(15,20,38,0.35);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-size:13px; font-weight:700; color:var(--slate); }
.field input, .field textarea{
  border:1px solid var(--line); border-radius:11px; padding:13px 15px;
  font-family:inherit; font-size:14.5px; background:var(--paper); color:var(--ink);
  transition:border-color .15s ease, background .15s ease, box-shadow .15s ease;
  width:100%;
}
.field input:focus, .field textarea:focus{
  outline:none; border-color:var(--orange); background:#fff;
  box-shadow:0 0 0 4px rgba(246,140,30,0.12);
}
.field textarea{ resize:vertical; min-height:130px; }
.form-submit{ align-self:flex-start; margin-top:6px; }
.form-note{ font-size:12.5px; color:var(--slate-soft); }

/* ===== Footer ===== */
footer{ background:var(--navy-deep); color:#B9BFD2; padding:60px 0 26px; position:relative; overflow:hidden; }
footer .footer-pulse{
  position:absolute; inset-inline:0; top:0; height:3px;
  background:linear-gradient(90deg, transparent, var(--orange) 30%, var(--orange-light) 50%, var(--orange) 70%, transparent);
  opacity:.75;
}
.footer-grid{ display:grid; grid-template-columns:1.3fr 0.8fr 1fr; gap:40px; padding-bottom:36px; border-bottom:1px solid var(--line-dark); }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand img{ height:36px; }
.footer-brand span{ font-weight:800; color:#fff; font-size:15px; }
.footer-desc{ font-size:13.5px; line-height:1.85; max-width:290px; color:#9AA1B4; }
.footer-col h5{ color:#fff; font-size:13px; font-weight:800; margin-bottom:16px; letter-spacing:0.5px; }
.footer-col ul{ list-style:none; display:flex; flex-direction:column; gap:11px; }
.footer-col a, .footer-col span{ font-size:14px; color:#9AA1B4; }
.footer-col a{ position:relative; transition:color .15s ease; }
.footer-col a:hover{ color:var(--orange-light); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; padding-top:22px;
  font-size:12.5px; color:#7C86A0; flex-wrap:wrap; gap:10px;
}

/* ===== WhatsApp float ===== */
.wa-float{
  position:fixed; inset-inline-end:22px; bottom:22px; z-index:90;
  width:56px; height:56px; border-radius:50%;
  background:var(--whatsapp); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -8px rgba(37,211,102,0.55);
  transition:transform .15s ease;
}
.wa-float::after{
  content:""; position:absolute; inset:-5px; border-radius:50%;
  border:2px solid rgba(37,211,102,0.45);
  animation:waPing 2.6s ease-out infinite;
}
@keyframes waPing{
  0%{ transform:scale(0.9); opacity:1; }
  70%,100%{ transform:scale(1.28); opacity:0; }
}
@media (prefers-reduced-motion: reduce){ .wa-float::after{ animation:none; opacity:0; } }
.wa-float:hover{ transform:translateY(-3px) scale(1.05); }

/* ===== 404 ===== */
.notfound{
  min-height:62vh; display:flex; align-items:center; text-align:center; padding:80px 0;
}
.notfound .code{
  font-family:'Sora',sans-serif; font-weight:800; font-size:clamp(70px,13vw,130px);
  color:var(--navy-deep); line-height:1;
}
.notfound .code span{ color:var(--orange); }
.notfound h1{ font-size:23px; font-weight:800; margin-top:20px; }
.notfound p{ color:var(--slate); margin-top:10px; line-height:1.85; }
.notfound .actions{ margin-top:30px; display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ===== Responsive ===== */
@media (max-width:880px){
  nav.mainnav{ display:none; }
  .cta-pill.top{ display:none; }
  .burger{
    display:flex; align-items:center; justify-content:center;
    width:40px; height:40px; border-radius:11px; border:1px solid var(--line); background:#fff;
  }
  .mobile-menu{
    display:none; position:fixed; inset-inline:16px; top:72px; z-index:99;
    background:#fff; border:1px solid var(--line); border-radius:18px; padding:10px;
    box-shadow:0 24px 48px -20px rgba(0,0,0,0.35);
  }
  .mobile-menu.open{ display:flex; flex-direction:column; gap:4px; }
  .mobile-menu a{
    text-align:start; padding:13px 15px; border-radius:11px; font-size:15px; font-weight:600; color:var(--ink);
    display:block;
  }
  .mobile-menu a.active{ background:var(--paper-dim); color:var(--orange); }

  .hero-grid{ grid-template-columns:1fr; }
  .hero-card{ order:-1; }
  .hero-nodes{ display:none; }
  .about-grid, .contact-grid{ grid-template-columns:1fr; }
  .svc-grid, .pf-grid{ grid-template-columns:1fr 1fr; }
  .process-grid{ grid-template-columns:1fr 1fr; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:28px; }
  .net-panel{ min-height:260px; }
}
@media (max-width:560px){
  .svc-grid, .pf-grid, .process-grid{ grid-template-columns:1fr; }
  .topbar-inner{ padding:12px 18px; }
  .wrap{ padding:0 18px; }
  section.block{ padding:64px 0; }
  .hero{ padding:56px 0 66px; }
  .page-hero{ padding:48px 0 46px; }
  .svc-callout{ padding:32px 26px; }
  .cta-band{ padding:64px 0; }
}
