@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0b2d55;
  --navy-2: #123e6e;
  --blue: #176fae;
  --cyan: #19a9b5;
  --teal: #39c1a4;
  --ink: #10243d;
  --muted: #66778a;
  --bg: #f5f8fb;
  --white: #ffffff;
  --line: rgba(11, 45, 85, .10);
  --shadow: 0 18px 50px rgba(11, 45, 85, .10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar {
  background: #071f3b;
  color: rgba(255,255,255,.82);
  font-size: 12px;
}
.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-contact { display:flex; gap:10px; align-items:center; }
.topbar a:hover { color:#fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 30px;
}
.brand img { width: 100px; height: auto; }
.main-nav { display:flex; align-items:center; gap: 30px; font-size:14px; font-weight:700; }
.main-nav a { position:relative; padding:8px 0; color:#314760; }
.main-nav a:not(.nav-cta)::after {
  content:"";
  position:absolute;
  bottom:0;
  right:0;
  width:0;
  height:2px;
  background:var(--cyan);
  transition:.3s;
}
.main-nav a:hover { color:var(--navy); }
.main-nav a:hover::after { width:100%; }
.nav-cta {
  color:#fff !important;
  background:var(--navy);
  padding:10px 20px !important;
  border-radius:12px;
}
.menu-toggle { display:none; border:0; background:transparent; padding:8px; cursor:pointer; }
.menu-toggle span { display:block; width:25px; height:2px; margin:5px; background:var(--navy); }

.hero {
  position:relative;
  min-height: 690px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    radial-gradient(circle at 85% 35%, rgba(25,169,181,.14), transparent 27%),
    radial-gradient(circle at 10% 90%, rgba(23,111,174,.10), transparent 28%),
    linear-gradient(135deg, #f8fbfd 0%, #eef6fa 100%);
}
.hero::before {
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(11,45,85,.09) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events:none;
}
.hero-grid {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  align-items:center;
  gap: 55px;
}
.eyebrow, .section-kicker {
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--blue);
  font-weight:800;
  font-size:13px;
  letter-spacing:.2px;
}
.eyebrow span {
  width:8px; height:8px; border-radius:50%;
  background:var(--cyan);
  box-shadow:0 0 0 6px rgba(25,169,181,.10);
}
.hero h1 {
  margin:18px 0 20px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height:1.2;
  letter-spacing:-1.8px;
  color:var(--navy);
}
.hero h1 strong {
  display:block;
  background:linear-gradient(90deg, var(--navy), var(--blue), var(--cyan));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-content > p {
  max-width:700px;
  color:#52667b;
  font-size:17px;
}
.hero-actions { display:flex; gap:12px; margin-top:28px; flex-wrap:wrap; }
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:52px;
  padding:0 24px;
  border-radius:14px;
  font-size:14px;
  font-weight:800;
  transition:.25s;
}
.btn-primary {
  color:#fff;
  background:linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow:0 14px 28px rgba(11,45,85,.18);
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 18px 34px rgba(11,45,85,.24); }
.btn-outline { border:1px solid rgba(11,45,85,.18); background:#fff; color:var(--navy); }
.btn-outline:hover { border-color:var(--blue); transform:translateY(-2px); }
.hero-points { display:flex; gap:22px; flex-wrap:wrap; margin-top:22px; color:#607286; font-size:12px; font-weight:700; }

.hero-visual { display:flex; justify-content:center; }
.orbital-card {
  width:min(470px, 80vw);
  aspect-ratio:1;
  position:relative;
  display:grid;
  place-items:center;
}
.orbital-ring {
  position:absolute;
  border:1px solid rgba(23,111,174,.18);
  border-radius:50%;
}
.ring-a { inset:4%; animation:spin 20s linear infinite; }
.ring-b { inset:14%; border-style:dashed; animation:spin 28s linear infinite reverse; }
.ring-c { inset:25%; border-color:rgba(25,169,181,.28); }
.tech-core {
  width:52%;
  aspect-ratio:1;
  border-radius:50%;
  padding:15px;
  background:rgba(255,255,255,.88);
  box-shadow:0 30px 70px rgba(11,45,85,.16), inset 0 0 0 1px rgba(255,255,255,.9);
  display:grid;
  place-items:center;
}
.tech-core img { width:100%; border-radius:50%; }
.floating-chip {
  position:absolute;
  padding:8px 13px;
  border-radius:10px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(11,45,85,.10);
  box-shadow:0 12px 30px rgba(11,45,85,.12);
  color:var(--navy);
  font-size:10px;
  font-weight:800;
  letter-spacing:1px;
}
.chip-1 { top:12%; right:8%; }
.chip-2 { bottom:16%; right:2%; }
.chip-3 { top:28%; left:1%; }
.chip-4 { bottom:10%; left:15%; }

.trust-strip { background:var(--navy); color:#fff; }
.trust-grid { display:grid; grid-template-columns:repeat(4,1fr); padding:28px 0; }
.trust-grid > div { display:flex; flex-direction:column; align-items:center; border-left:1px solid rgba(255,255,255,.12); }
.trust-grid > div:last-child { border-left:0; }
.trust-grid strong { font-size:26px; }
.trust-grid span { color:rgba(255,255,255,.65); font-size:11px; }

.section { padding:100px 0; }
.two-col { display:grid; grid-template-columns:.8fr 1.2fr; gap:80px; align-items:start; }
.section-heading h2, .strategy-card h2, .cta-card h2 {
  margin:12px 0 18px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.35;
  color:var(--navy);
  letter-spacing:-1px;
}
.section-heading h2 span, .strategy-card h2 span { color:var(--blue); }
.about-copy { color:#596d80; font-size:16px; }
.about-copy p { margin-top:0; margin-bottom:18px; }
.about-copy strong { color:var(--navy); }

.strategy { padding-top:0; }
.strategy-card {
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:100px 1fr;
  gap:30px;
  padding:50px;
  border-radius:30px;
  background:linear-gradient(135deg, #08284d, #104f83);
  color:#fff;
  box-shadow:var(--shadow);
}
.strategy-card::after {
  content:"";
  position:absolute;
  width:350px; height:350px;
  left:-130px; bottom:-190px;
  border-radius:50%;
  background:rgba(25,169,181,.20);
}
.strategy-card .section-kicker { color:#67d6d2; }
.strategy-card h2 { color:#fff; }
.strategy-card p { color:rgba(255,255,255,.72); max-width:850px; margin:0; }
.strategy-icon {
  width:78px; height:78px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:22px;
  display:grid; place-items:center;
  font-size:40px;
  color:#70d8d1;
  background:rgba(255,255,255,.06);
}

.services { background:var(--bg); }
.centered { text-align:center; max-width:750px; margin:0 auto 50px; }
.centered > p { color:var(--muted); font-size:14px; }
.services-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
.service-card {
  position:relative;
  padding:28px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  min-height:310px;
  overflow:hidden;
  transition:.3s;
}
.service-card:hover {
  transform:translateY(-7px);
  box-shadow:var(--shadow);
  border-color:rgba(25,169,181,.25);
}
.service-number {
  position:absolute;
  top:18px;
  left:20px;
  color:#b7c5d3;
  font-size:12px;
  font-weight:800;
}
.service-icon {
  width:48px; height:48px;
  border-radius:15px;
  display:grid; place-items:center;
  color:#fff;
  font-weight:800;
  background:linear-gradient(135deg, var(--navy), var(--cyan));
  margin-bottom:18px;
  font-size:18px;
}
.service-card h3 { margin:0 0 10px; color:var(--navy); font-size:18px; }
.service-card p { color:var(--muted); font-size:13px; margin:0 0 12px; line-height:1.8; }
.service-card ul { list-style:none; padding:0; margin:0; }
.service-card li { position:relative; padding-right:17px; margin:3px 0; color:#51667b; font-size:11px; }
.service-card li::before {
  content:"";
  position:absolute;
  right:0; top:12px;
  width:5px; height:5px; border-radius:50%;
  background:var(--teal);
}

.process { background:#fff; }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:15px; }
.process-step {
  padding:30px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
}
.process-step span {
  display:inline-grid; place-items:center;
  width:42px; height:42px;
  border-radius:50%;
  background:#e9f5f7;
  color:var(--blue);
  font-size:12px;
  font-weight:800;
}
.process-step h3 { color:var(--navy); margin:18px 0 5px; }
.process-step p { color:var(--muted); font-size:12px; margin:0; }

.cta-section { padding:0 0 90px; background:#fff; }
.cta-card {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:35px;
  padding:55px;
  border-radius:30px;
  background:
    radial-gradient(circle at 10% 30%, rgba(25,169,181,.20), transparent 28%),
    linear-gradient(135deg, #08284d, #0d426d);
  color:#fff;
  overflow:hidden;
}
.cta-card h2 { color:#fff; }
.cta-card p { color:rgba(255,255,255,.68); margin:0; }
.cta-card .section-kicker { color:#70d8d1; }
.contact-actions { display:flex; align-items:center; gap:16px; flex-wrap:wrap; justify-content:flex-end; }
.contact-item {
  padding:13px 17px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:14px;
  background:rgba(255,255,255,.05);
  min-width:180px;
}
.contact-item small { display:block; color:rgba(255,255,255,.55); font-size:10px; }
.contact-item strong { display:block; color:#fff; font-size:12px; direction:ltr; text-align:right; }
.btn-light { background:#fff; color:var(--navy); }

.site-footer { background:#061c34; color:#fff; padding:55px 0 30px; }
.footer-grid { display:grid; grid-template-columns:1.1fr .8fr 1.2fr; align-items:center; gap:30px; }
.footer-brand img { width:160px; filter:brightness(0) invert(1); opacity:.9; }
.footer-brand p { color:rgba(255,255,255,.45); font-size:10px; letter-spacing:1px; margin:10px 0 0; direction:ltr; text-align:right; }
.footer-links { display:flex; justify-content:center; gap:22px; flex-wrap:wrap; font-size:12px; color:rgba(255,255,255,.7); }
.footer-links a:hover { color:#fff; }
.footer-copy { text-align:left; color:rgba(255,255,255,.4); font-size:10px; }

.floating-call {
  position:fixed;
  bottom:22px; left:22px;
  width:52px; height:52px;
  border-radius:50%;
  display:grid; place-items:center;
  color:#fff;
  background:var(--cyan);
  box-shadow:0 12px 30px rgba(25,169,181,.35);
  z-index:900;
  font-size:20px;
}
.back-top {
  position:fixed;
  bottom:85px; left:25px;
  width:38px; height:38px;
  border:0; border-radius:10px;
  background:#fff; color:var(--navy);
  box-shadow:0 8px 22px rgba(11,45,85,.14);
  cursor:pointer;
  opacity:0; visibility:hidden;
  transform:translateY(10px);
  transition:.25s;
  z-index:899;
}
.back-top.show { opacity:1; visibility:visible; transform:none; }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }
.delay-1 { transition-delay:.12s; }
.delay-2 { transition-delay:.24s; }

@keyframes spin { to { transform:rotate(360deg); } }

@media (max-width: 980px) {
  .hero { min-height:auto; padding:75px 0; }
  .hero-grid { grid-template-columns:1fr; text-align:center; }
  .hero-content > p { margin-inline:auto; }
  .hero-actions, .hero-points { justify-content:center; }
  .hero-visual { order:-1; }
  .orbital-card { width:350px; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .two-col { grid-template-columns:1fr; gap:25px; }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .cta-card { flex-direction:column; align-items:flex-start; }
  .contact-actions { justify-content:flex-start; }
  .footer-grid { grid-template-columns:1fr; text-align:center; }
  /*.footer-brand img { margin-inline:auto; }*/
  .footer-copy { text-align:center; }
}
@media (max-width: 720px) {
  .container { width:min(100% - 28px, 1180px); }
  .topbar { display:none; }
  .nav-wrap { min-height:72px; }
  .brand img { width:120px; }
  .menu-toggle { display:block; }
  .main-nav {
    position:absolute;
    top:72px; right:14px; left:14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    padding:15px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    box-shadow:var(--shadow);
  }
  .main-nav.open { display:flex; }
  .main-nav a { padding:10px 12px; }
  .hero { padding:55px 0 70px; }
  .hero h1 { font-size:39px; letter-spacing:-1px; }
  .hero-content > p { font-size:14px; }
  .orbital-card { width:290px; }
  .floating-chip { font-size:8px; padding:6px 9px; }
  .trust-grid { grid-template-columns:repeat(2,1fr); gap:20px 0; }
  .trust-grid > div:nth-child(2) { border-left:0; }
  .trust-grid > div:nth-child(3) { border-top:1px solid rgba(255,255,255,.12); padding-top:15px; }
  .trust-grid > div:nth-child(4) { border-top:1px solid rgba(255,255,255,.12); padding-top:15px; }
  .section { padding:70px 0; }
  .services-grid, .process-grid { grid-template-columns:1fr; }
  .service-card { min-height:auto; }
  .strategy-card { grid-template-columns:1fr; padding:30px; }
  .strategy-icon { width:60px; height:60px; }
  .cta-card { padding:32px 24px; }
  .contact-actions { flex-direction:column; align-items:stretch; width:100%; }
  .contact-item { min-width:0; }
  .btn-light { width:100%; }
  .floating-call { bottom:16px; left:16px; }
  .back-top { bottom:78px; left:23px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation:none !important; transition:none !important; }
}
