/* NAQIME — Global Styles (HTML/CSS/JS only) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root{
  --bg: #0f172a;          /* Dark Navy Blue */
  --panel: #1e293b;       /* Lighter Navy for cards/sections */
  --panel-2: #132038;     /* Slightly deeper variant */
  --accent: #22c55e;      /* Bright Green / Emerald */
  --text: #ffffff;
  --muted: #94a3b8;
  --stroke: rgba(148, 163, 184, 0.22);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1120px;
  --header-h: 74px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% -10%, rgba(34,197,94,0.12), transparent 55%),
              radial-gradient(1000px 700px at 120% 10%, rgba(34,197,94,0.10), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--panel);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 1000;
  border: 1px solid var(--stroke);
}
.skip-link:focus{ left: 12px; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.72);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}
.header-inner{
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.brand svg{
  width: 22px;
  height: 22px;
  color: var(--accent);
  filter: drop-shadow(0 0 10px rgba(34,197,94,0.25));
}
.brand span{ font-size: 16px; }

.nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.nav a{
  position: relative;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.nav a:hover{
  color: var(--text);
  background: rgba(148, 163, 184, 0.10);
}
.nav a.active{
  color: var(--accent);
  background: rgba(34, 197, 94, 0.10);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.22);
}

.header-actions{
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 12px;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  font-weight: 700;
  color: var(--text);
  background: rgba(148, 163, 184, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  user-select: none;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(148, 163, 184, 0.30);
}
.btn:active{ transform: translateY(0px); }
.btn-primary{
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.98), rgba(34, 197, 94, 0.78));
  border-color: rgba(34, 197, 94, 0.55);
  color: #052012;
  box-shadow: 0 16px 45px rgba(34, 197, 94, 0.18);
}
.btn-primary:hover{
  box-shadow: 0 22px 55px rgba(34, 197, 94, 0.22);
}
.btn-outline{
  background: rgba(30, 41, 59, 0.35);
  border-color: rgba(148, 163, 184, 0.22);
  color: var(--text);
}
.btn-glow{
  position: relative;
  overflow: hidden;
}
.btn-glow::after{
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(420px 140px at var(--mx, 50%) var(--my, 50%),
    rgba(34,197,94,0.30), transparent 55%);
  opacity: 0;
  transition: opacity 180ms ease;
}
.btn-glow:hover::after{ opacity: 1; }
.btn-glow > span, .btn-glow > svg{ position: relative; z-index: 1; }

.icon-btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  background: rgba(148, 163, 184, 0.08);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.icon-btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(148, 163, 184, 0.30);
}
.icon-btn svg{ width: 22px; height: 22px; color: var(--text); }

.mobile-toggle{ display: none; }

/* Mobile nav panel */
.mobile-panel{
  position: fixed;
  inset: var(--header-h) 12px auto 12px;
  background: rgba(30, 41, 59, 0.86);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 12px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 200ms ease, opacity 200ms ease;
}
.mobile-panel.open{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-panel nav{
  display: grid;
  gap: 6px;
}
.mobile-panel a{
  padding: 12px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 700;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.14);
}
.mobile-panel a.active{
  color: var(--accent);
  border-color: rgba(34,197,94,0.35);
  background: rgba(34,197,94,0.10);
}

/* Layout helpers */
.section{
  padding: 64px 0;
}
.section-sm{ padding: 48px 0; }
.grid{
  display: grid;
  gap: 18px;
}
.grid-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card{
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.86), rgba(30, 41, 59, 0.72));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(34,197,94,0.20);
}
.card h3{ margin: 0 0 8px 0; }
.card p{ margin: 0; color: var(--muted); }

.kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(34,197,94,0.95);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.kicker-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(34,197,94,0.14);
}
.h1{
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin: 12px 0 12px 0;
  letter-spacing: -0.02em;
}
.lead{
  font-size: 16px;
  color: var(--muted);
  max-width: 64ch;
}
.muted{ color: var(--muted); }

/* Hero */
.hero{
  padding: 64px 0 54px 0;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}
.hero-visual{
  min-height: 320px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    radial-gradient(900px 320px at 20% 20%, rgba(34,197,94,0.22), transparent 60%),
    radial-gradient(700px 260px at 80% 30%, rgba(148,163,184,0.16), transparent 60%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.76), rgba(15, 23, 42, 0.35));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-visual::before{
  content: "";
  position: absolute;
  inset: -60px;
  background: repeating-linear-gradient(
    135deg,
    rgba(34,197,94,0.10),
    rgba(34,197,94,0.10) 2px,
    transparent 2px,
    transparent 12px
  );
  opacity: 0.35;
  transform: rotate(8deg);
}
.hero-visual::after{
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 90px;
  border-radius: 18px;
  border: 1px solid rgba(34,197,94,0.22);
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(10px);
}
.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Page banners */
.page-hero{
  padding: 54px 0 34px 0;
}
.page-banner{
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    radial-gradient(900px 360px at 10% 20%, rgba(34,197,94,0.18), transparent 60%),
    radial-gradient(900px 360px at 110% 10%, rgba(148,163,184,0.14), transparent 60%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.35));
  box-shadow: var(--shadow);
  padding: 26px 22px;
}
.page-banner h1{
  margin: 0;
  font-size: clamp(26px, 3.3vw, 40px);
  letter-spacing: -0.02em;
}
.page-banner p{
  margin: 10px 0 0 0;
  color: var(--muted);
  max-width: 80ch;
}

/* CTA */
.cta{
  border-radius: 22px;
  border: 1px solid rgba(34,197,94,0.22);
  background:
    radial-gradient(1000px 300px at 20% 10%, rgba(34,197,94,0.26), transparent 60%),
    linear-gradient(180deg, rgba(30,41,59,0.78), rgba(30,41,59,0.58));
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: var(--shadow);
}
.cta strong{ font-size: 18px; }
.cta p{ margin: 6px 0 0 0; color: var(--muted); }

/* About */
.placeholder-img{
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  min-height: 320px;
  background:
    radial-gradient(900px 360px at 18% 15%, rgba(34,197,94,0.22), transparent 60%),
    radial-gradient(900px 360px at 85% 30%, rgba(148,163,184,0.12), transparent 60%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.35));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.placeholder-img::after{
  content: "Illustration";
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(148,163,184,0.85);
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(10px);
}

/* Pricing */
.pricing-head{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.toggle{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(148,163,184,0.07);
}
.toggle button{
  border: 0;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}
.toggle button[aria-pressed="true"]{
  background: rgba(34,197,94,0.14);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(34,197,94,0.22);
}
.price{
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
}
.price .amount{
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.price .per{
  color: var(--muted);
  font-weight: 700;
}
.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  color: #062012;
  background: linear-gradient(180deg, rgba(34,197,94,0.98), rgba(34,197,94,0.70));
  border: 1px solid rgba(34,197,94,0.55);
}
.pricing-card.popular{
  border-color: rgba(34,197,94,0.35);
  box-shadow: 0 22px 70px rgba(34,197,94,0.10), var(--shadow);
}
.checklist{
  margin: 14px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.checklist li{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}
.checklist svg{
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* World map placeholder */
.map{
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    radial-gradient(1200px 380px at 50% 30%, rgba(34,197,94,0.16), transparent 60%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.80), rgba(15, 23, 42, 0.35));
  box-shadow: var(--shadow);
  padding: 22px;
  overflow: hidden;
  position: relative;
}
.map::before{
  content: "";
  position: absolute;
  inset: -40px;
  background:
    repeating-linear-gradient(0deg, rgba(148,163,184,0.12), rgba(148,163,184,0.12) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(90deg, rgba(148,163,184,0.10), rgba(148,163,184,0.10) 1px, transparent 1px, transparent 24px);
  opacity: 0.22;
}
.map-inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.map-visual{
  min-height: 260px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    radial-gradient(900px 320px at 40% 30%, rgba(34,197,94,0.22), transparent 60%),
    radial-gradient(800px 320px at 70% 50%, rgba(148,163,184,0.12), transparent 60%);
}
.stats{
  display: grid;
  gap: 12px;
}
.stat{
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.35);
  padding: 14px;
}
.stat .num{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.stat .label{ color: var(--muted); font-weight: 700; }

/* Contact */
.form{
  display: grid;
  gap: 12px;
}
label{
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}
input, select, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  background: rgba(15, 23, 42, 0.45);
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
textarea{ min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(34,197,94,0.40);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.12);
}
.form-hint{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.20);
  background: rgba(15, 23, 42, 0.45);
  color: var(--text);
  font-weight: 800;
}
.form-status.success{
  border-color: rgba(34,197,94,0.40);
  background: rgba(34,197,94,0.10);
}
.form-status.error{
  border-color: rgba(148,163,184,0.35);
  background: rgba(148,163,184,0.10);
}

/* Footer */
.site-footer{
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  margin-top: 24px;
  background: rgba(15, 23, 42, 0.72);
}
.footer-grid{
  padding: 34px 0 18px 0;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 18px;
}
.footer-title{
  font-weight: 900;
  margin: 0 0 10px 0;
}
.footer p{
  margin: 0;
  color: var(--muted);
}
.footer a{
  color: var(--muted);
  font-weight: 700;
}
.footer a:hover{ color: var(--text); }
.footer-links{
  display: grid;
  gap: 10px;
}
.copyright{
  padding: 14px 0 22px 0;
  color: rgba(148,163,184,0.9);
  font-weight: 700;
  font-size: 13px;
}

/* Scroll reveal */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 650ms ease, transform 650ms ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 980px){
  .header-inner{ grid-template-columns: 1fr auto; }
  .nav{ display: none; }
  .mobile-toggle{ display: inline-grid; }
  .hero-inner{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .map-inner{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ transition: none; transform: none; }
  .btn, .card, .icon-btn{ transition: none; }
}

