/* ============================================================
   GADAKI DIGITAL HUB — style.css
   Mobile-first, app-like responsive design
   Colors: Off-White / Black / Orange
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800;900&family=Nunito+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --black:      #0A0A0A;
  --black2:     #111111;
  --black3:     #1A1A1A;
  --black4:     #222222;
  --orange:     #FF6B1A;
  --orange2:    #E55A0D;
  --orange3:    #FF8C4A;
  --orange-soft:rgba(255,107,26,0.12);
  --orange-glow:rgba(255,107,26,0.06);
  --white:      #FFFDF9;
  --white2:     #F5F2EE;
  --white3:     #EAE7E1;
  --white4:     #DDD9D3;
  --gray:       #999999;
  --gray2:      #666666;
  --gray3:      #444444;
  --green:      #28c864;
  --blue:       #5C8AE8;
  --font-head:  'Exo 2', sans-serif;
  --font-body:  'Nunito Sans', sans-serif;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.09);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.12);
  --shadow-org: 0 8px 24px rgba(255,107,26,0.2);
  --transition: 0.25s ease;
  --nav-h:      68px;
  --mobile-nav-h: 64px;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust:100%; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul, ol { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input, textarea, select { font-family:inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--black2); }
::-webkit-scrollbar-thumb { background:var(--orange); border-radius:3px; }

/* ── SELECTION ── */
::selection { background:var(--orange); color:#fff; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container { width:100%; max-width:1200px; margin:0 auto; padding:0 24px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
.text-orange { color:var(--orange); }
.text-white  { color:#fff; }
.text-gray   { color:var(--gray2); }
.d-flex { display:flex; }
.align-center { align-items:center; }
.justify-between { justify-content:space-between; }
.gap-8  { gap:8px; }
.gap-12 { gap:12px; }
.gap-16 { gap:16px; }
.gap-24 { gap:24px; }

/* ── SECTION LABEL ── */
.section-label {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; color:var(--orange); margin-bottom:14px;
}
.section-label::before {
  content:''; width:22px; height:2px; background:var(--orange); display:block; flex-shrink:0;
}

/* ── SECTION TITLE ── */
.section-title {
  font-family:var(--font-head);
  font-size:clamp(26px, 4vw, 44px);
  font-weight:900; line-height:1.1;
  letter-spacing:-1.5px; margin-bottom:12px;
}
.section-subtitle {
  font-size:16px; color:var(--gray2); line-height:1.65; max-width:560px;
}

/* ── BUTTONS ── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-head); font-weight:700;
  border-radius:var(--radius-md); transition:var(--transition);
  font-size:14px; letter-spacing:.3px; white-space:nowrap;
}
.btn-primary {
  background:var(--orange); color:#fff; padding:13px 28px;
  box-shadow:var(--shadow-org);
}
.btn-primary:hover { background:var(--orange2); transform:translateY(-2px); box-shadow:0 12px 32px rgba(255,107,26,0.3); }
.btn-primary:active { transform:translateY(0); }

.btn-outline-dark {
  background:transparent; color:#fff; padding:12px 28px;
  border:1.5px solid rgba(255,255,255,0.2);
}
.btn-outline-dark:hover { border-color:var(--orange); color:var(--orange); }

.btn-outline-light {
  background:transparent; color:var(--black); padding:11px 24px;
  border:1.5px solid var(--white3);
}
.btn-outline-light:hover { border-color:var(--orange); color:var(--orange); }

.btn-whatsapp {
  background:#25D366; color:#fff; padding:13px 28px;
  box-shadow:0 8px 24px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover { background:#1da851; transform:translateY(-2px); }

.btn-sm { font-size:13px; padding:9px 20px; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background:var(--black);
  height:var(--nav-h);
  position:sticky; top:0; z-index:900;
  border-bottom:1px solid rgba(255,255,255,0.06);
  transition:var(--transition);
}
.site-header.scrolled {
  background:rgba(10,10,10,0.97);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:0 4px 24px rgba(0,0,0,0.3);
}
.header-inner {
  height:100%; display:flex; align-items:center;
  justify-content:space-between; gap:24px;
}

/* Logo */
.site-logo { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.logo-mark {
  width:36px; height:36px; background:var(--orange); border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-weight:900; font-size:18px; color:#fff;
  flex-shrink:0;
}
.logo-text { font-family:var(--font-head); font-weight:700; font-size:15px; color:#fff; line-height:1.2; }
.logo-text span { display:block; font-size:10px; font-weight:500; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,0.35); }

/* Desktop nav links */
.nav-links { display:flex; align-items:center; gap:6px; }
.nav-links a {
  font-size:13.5px; font-weight:500; color:rgba(255,255,255,0.65);
  padding:8px 12px; border-radius:var(--radius-sm); transition:var(--transition);
}
.nav-links a:hover, .nav-links a.active { color:#fff; background:rgba(255,255,255,0.06); }
.nav-links a.active { color:var(--orange); }

/* Nav CTA */
.nav-cta { background:var(--orange); color:#fff; padding:9px 20px; border-radius:var(--radius-sm); font-family:var(--font-head); font-weight:700; font-size:13px; letter-spacing:.3px; transition:var(--transition); flex-shrink:0; }
.nav-cta:hover { background:var(--orange2); }

/* Hamburger */
.nav-hamburger {
  display:none; flex-direction:column; gap:5px;
  padding:8px; border-radius:var(--radius-sm); cursor:pointer;
  background:rgba(255,255,255,0.06);
}
.nav-hamburger span {
  display:block; width:22px; height:2px; background:rgba(255,255,255,0.8);
  border-radius:2px; transition:var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  display:none; position:fixed; inset:0; top:var(--nav-h);
  background:var(--black2); z-index:800; overflow-y:auto;
  padding:24px; flex-direction:column; gap:6px;
  border-top:1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  font-family:var(--font-head); font-weight:600; font-size:17px;
  color:rgba(255,255,255,0.75); padding:14px 16px;
  border-radius:var(--radius-md); border-bottom:1px solid rgba(255,255,255,0.05);
  transition:var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active { color:var(--orange); background:var(--orange-soft); }
.mobile-menu .menu-cta {
  margin-top:16px; background:var(--orange); color:#fff; text-align:center;
  padding:16px; border-radius:var(--radius-md); font-size:16px;
  box-shadow:var(--shadow-org);
}
.mobile-menu .menu-cta:hover { background:var(--orange2); }

/* ============================================================
   MOBILE BOTTOM NAVIGATION (App-like)
   ============================================================ */
.mobile-bottom-nav {
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:850;
  background:var(--black);
  border-top:1px solid rgba(255,255,255,0.08);
  height:var(--mobile-nav-h);
  padding-bottom:env(safe-area-inset-bottom);
  box-shadow:0 -4px 24px rgba(0,0,0,0.4);
}
.mbn-inner {
  display:flex; align-items:center; justify-content:space-around;
  height:100%; padding:0 8px;
}
.mbn-item {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:4px; flex:1; padding:8px 4px; border-radius:var(--radius-md);
  color:rgba(255,255,255,0.4); transition:var(--transition); text-decoration:none;
  min-height:50px;
}
.mbn-item:hover, .mbn-item.active { color:var(--orange); }
.mbn-item.active .mbn-icon-wrap { background:var(--orange-soft); }
.mbn-icon-wrap {
  width:32px; height:32px; border-radius:var(--radius-sm);
  display:flex; align-items:center; justify-content:center;
  transition:var(--transition);
}
.mbn-item svg { width:20px; height:20px; }
.mbn-label { font-size:10px; font-weight:700; letter-spacing:.3px; font-family:var(--font-head); line-height:1; }
/* CTA item in bottom nav */
.mbn-item.mbn-cta .mbn-icon-wrap { background:var(--orange); border-radius:var(--radius-md); }
.mbn-item.mbn-cta { color:var(--orange); }
.mbn-item.mbn-cta svg { color:#fff; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background:var(--black);
  min-height:calc(100vh - var(--nav-h));
  display:flex; align-items:center;
  padding:80px 0; position:relative; overflow:hidden;
}
.hero-bg-grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,107,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,26,0.04) 1px, transparent 1px);
  background-size:48px 48px; pointer-events:none;
}
.hero-glow-1 {
  position:absolute; top:-120px; left:-80px;
  width:600px; height:600px;
  background:radial-gradient(circle, rgba(255,107,26,0.08) 0%, transparent 65%);
  pointer-events:none;
}
.hero-glow-2 {
  position:absolute; bottom:-100px; right:-100px;
  width:500px; height:500px;
  background:radial-gradient(circle, rgba(255,107,26,0.05) 0%, transparent 65%);
  pointer-events:none;
}
.hero-inner {
  display:flex; align-items:center; gap:60px;
  position:relative; z-index:2;
}
.hero-left { flex:1; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,107,26,0.1); border:1px solid rgba(255,107,26,0.22);
  border-radius:100px; padding:6px 16px; margin-bottom:28px;
}
.hero-badge-dot {
  width:7px; height:7px; background:var(--orange);
  border-radius:50%; animation:badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)}
}
.hero-badge-text { font-size:12px; font-weight:700; color:var(--orange); letter-spacing:1px; text-transform:uppercase; }

.hero-title {
  font-family:var(--font-head);
  font-size:clamp(40px, 6vw, 74px);
  font-weight:900; color:#fff; line-height:1.05;
  letter-spacing:-2.5px; margin-bottom:22px;
}
.hero-title .accent { color:var(--orange); }
.hero-title .dim    { color:rgba(255,255,255,0.25); }

.hero-sub {
  font-size:17px; color:rgba(255,255,255,0.55); line-height:1.7;
  max-width:500px; margin-bottom:16px;
}
.hero-location {
  display:flex; align-items:center; gap:8px;
  font-size:13px; color:rgba(255,255,255,0.3); margin-bottom:36px;
}
.hero-location-dot { width:6px; height:6px; background:var(--orange); border-radius:50%; flex-shrink:0; }

.hero-buttons { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:52px; }

.hero-stats {
  display:flex; gap:36px; flex-wrap:wrap;
  padding-top:32px; border-top:1px solid rgba(255,255,255,0.07);
}
.hero-stat-num {
  font-family:var(--font-head); font-size:28px; font-weight:900;
  color:#fff; line-height:1;
}
.hero-stat-num span { color:var(--orange); }
.hero-stat-label {
  font-size:11.5px; color:rgba(255,255,255,0.35); margin-top:4px;
  letter-spacing:.5px; text-transform:uppercase;
}

/* Hero right — device mockup */
.hero-right {
  flex:0 0 400px; position:relative;
}
.hero-device {
  background:#111; border:1px solid #222;
  border-radius:16px; overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.05);
}
.hero-device-bar {
  height:32px; background:#0d0d0d;
  border-bottom:1px solid #1a1a1a;
  display:flex; align-items:center; padding:0 12px; gap:6px;
}
.hd-dot { width:9px; height:9px; border-radius:50%; }
.hd-url {
  flex:1; height:17px; background:#1a1a1a; border-radius:5px;
  margin-left:10px; display:flex; align-items:center; padding:0 8px;
  font-size:8px; color:rgba(255,255,255,.3); letter-spacing:.5px;
}
.hero-device-body { height:260px; background:#0A0A0A; display:flex; }
/* Sidebar */
.hdb-sidebar {
  width:60px; background:#050505; border-right:1px solid #1a1a1a;
  padding:10px 0; display:flex; flex-direction:column; gap:2px;
}
.hdb-sitem {
  height:28px; margin:0 6px; border-radius:6px;
  display:flex; align-items:center; justify-content:center;
  font-size:12px; color:rgba(255,255,255,0.2);
}
.hdb-sitem.active { background:rgba(255,107,26,.15); color:var(--orange); }
/* Main */
.hdb-main { flex:1; padding:10px; display:flex; flex-direction:column; gap:8px; }
.hdb-topbar { height:22px; background:#111; border-radius:5px; display:flex; align-items:center; padding:0 8px; gap:6px; }
.hdb-search { flex:1; height:12px; background:#1a1a1a; border-radius:3px; }
.hdb-avatar { width:16px; height:16px; border-radius:50%; background:var(--orange); display:flex; align-items:center; justify-content:center; font-size:7px; font-weight:800; color:#fff; }
.hdb-kpis { display:grid; grid-template-columns:repeat(4,1fr); gap:5px; }
.hdb-kpi { background:#111; border:1px solid #1a1a1a; border-radius:5px; padding:6px 5px; }
.hdb-kpi-v { font-family:var(--font-head); font-size:11px; font-weight:800; color:#fff; line-height:1; }
.hdb-kpi-l { font-size:6px; color:rgba(255,255,255,0.3); margin-top:2px; }
.hdb-kpi-bar { height:2px; border-radius:1px; margin-top:5px; }
.hdb-charts { display:grid; grid-template-columns:3fr 2fr; gap:6px; flex:1; }
.hdb-chart { background:#111; border:1px solid #1a1a1a; border-radius:5px; padding:7px; }
.hdb-chart-lbl { font-size:7px; color:rgba(255,255,255,.4); font-weight:700; letter-spacing:.5px; text-transform:uppercase; margin-bottom:4px; }
.hdb-bars { display:flex; align-items:flex-end; gap:3px; height:42px; }
.hdb-bar { flex:1; border-radius:2px 2px 0 0; min-width:5px; }
.hdb-pie { width:44px; height:44px; border-radius:50%; background:conic-gradient(#FF6B1A 0 42%, #5c8ae8 42% 70%, #28c864 70% 85%, #1e1e1e 85% 100%); margin:0 auto 4px; }
.hdb-legend { display:flex; flex-direction:column; gap:2px; }
.hdb-leg { display:flex; align-items:center; gap:4px; font-size:6px; color:rgba(255,255,255,.4); }
.hdb-leg-dot { width:6px; height:6px; border-radius:50%; flex-shrink:0; }
.hdb-table { background:#111; border:1px solid #1a1a1a; border-radius:5px; padding:5px; }
.hdb-trow { display:flex; align-items:center; gap:4px; padding:3px 2px; border-bottom:1px solid #1a1a1a; }
.hdb-trow:last-child { border:none; }
.hdb-tavatar { width:14px; height:14px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:6px; font-weight:700; color:#fff; }
.hdb-tname { flex:1; height:6px; background:#1a1a1a; border-radius:2px; }
.hdb-tbadge { padding:2px 5px; border-radius:3px; font-size:6px; font-weight:700; }
.hero-device-label {
  position:absolute; bottom:-14px; left:50%; transform:translateX(-50%);
  background:rgba(255,107,26,.15); border:1px solid rgba(255,107,26,.25);
  border-radius:100px; padding:5px 16px;
  font-size:11px; font-weight:700; color:var(--orange); white-space:nowrap; letter-spacing:.5px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { padding:96px 0; background:var(--white); }
.services-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:52px;
}
.service-card {
  background:var(--white2); border:1px solid var(--white3);
  border-radius:var(--radius-lg); padding:30px;
  transition:var(--transition); position:relative; overflow:hidden;
  cursor:pointer;
}
.service-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background:var(--orange); transform:scaleX(0); transform-origin:left;
  transition:var(--transition);
}
.service-card:hover { border-color:rgba(255,107,26,0.25); transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.service-card:hover::after { transform:scaleX(1); }
.svc-icon {
  width:52px; height:52px; background:var(--orange-soft);
  border:1px solid rgba(255,107,26,0.15); border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:24px; margin-bottom:20px;
}
.svc-title { font-family:var(--font-head); font-size:18px; font-weight:800; margin-bottom:10px; letter-spacing:-.3px; }
.svc-desc { font-size:14px; color:var(--gray2); line-height:1.65; margin-bottom:16px; }
.svc-tags { display:flex; flex-wrap:wrap; gap:6px; }
.svc-tag { font-size:11.5px; padding:3px 10px; border-radius:100px; background:var(--white3); color:var(--gray2); font-weight:600; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { padding:96px 0; background:var(--black3); }
.why-section .section-title { color:#fff; }
.why-section .section-subtitle { color:rgba(255,255,255,.45); }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:52px; }
.why-card {
  background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.07);
  border-radius:var(--radius-lg); padding:30px 26px; transition:var(--transition);
}
.why-card:hover { border-color:rgba(255,107,26,0.3); background:rgba(255,107,26,0.04); }
.why-number { font-size:11px; font-weight:700; color:var(--orange); letter-spacing:2px; margin-bottom:14px; opacity:.7; font-family:var(--font-head); }
.why-icon { font-size:30px; margin-bottom:14px; }
.why-title { font-family:var(--font-head); font-size:17px; font-weight:800; color:#fff; margin-bottom:10px; }
.why-text { font-size:14px; color:rgba(255,255,255,.45); line-height:1.65; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { padding:96px 0; background:var(--white2); }
.process-section .section-title { text-align:center; }
.process-section .section-label { justify-content:center; }
.process-steps { display:grid; grid-template-columns:repeat(6,1fr); gap:0; position:relative; margin-top:52px; }
.process-steps::before {
  content:''; position:absolute; top:28px; left:8%; right:8%;
  height:2px; background:linear-gradient(90deg, var(--orange), rgba(255,107,26,.1)); z-index:0;
}
.process-step { text-align:center; padding:0 6px; position:relative; z-index:1; }
.step-circle {
  width:56px; height:56px; border-radius:50%; margin:0 auto 16px;
  display:flex; align-items:center; justify-content:center;
  background:var(--white); border:2px solid var(--white3);
  transition:var(--transition); font-family:var(--font-head);
  font-size:14px; font-weight:800; color:var(--orange);
}
.process-step:first-child .step-circle { background:var(--orange); border-color:var(--orange); color:#fff; }
.process-step:hover .step-circle { background:var(--orange); border-color:var(--orange); color:#fff; }
.step-label { font-family:var(--font-head); font-size:13px; font-weight:700; margin-bottom:4px; }
.step-sub { font-size:12px; color:var(--gray); line-height:1.4; }

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-section { padding:96px 0; background:var(--white); }
.portfolio-filter { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:40px; }
.filter-btn {
  padding:8px 18px; border-radius:100px; font-size:12.5px; font-weight:700;
  cursor:pointer; border:1.5px solid var(--white3); background:transparent;
  color:var(--gray2); transition:var(--transition); font-family:var(--font-head);
}
.filter-btn.active, .filter-btn:hover { background:var(--orange); border-color:var(--orange); color:#fff; }
.portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.portfolio-card {
  border-radius:var(--radius-lg); overflow:hidden; background:var(--white2);
  border:1px solid var(--white3); transition:var(--transition); cursor:pointer;
}
.portfolio-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:rgba(255,107,26,0.2); }
.portfolio-preview { height:190px; overflow:hidden; position:relative; }
.portfolio-body { padding:18px 20px 20px; }
.portfolio-cat { font-size:10.5px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:var(--orange); margin-bottom:6px; }
.portfolio-name { font-family:var(--font-head); font-size:16px; font-weight:800; margin-bottom:5px; letter-spacing:-.3px; }
.portfolio-url { font-size:12px; color:var(--gray); margin-bottom:8px; font-style:italic; }
.portfolio-desc { font-size:13px; color:var(--gray2); line-height:1.6; margin-bottom:12px; }
.portfolio-tags { display:flex; flex-wrap:wrap; gap:5px; margin-bottom:14px; }
.portfolio-tag { font-size:11px; padding:3px 9px; border-radius:100px; background:var(--white3); color:var(--gray2); font-weight:600; }
.portfolio-footer { display:flex; align-items:center; justify-content:space-between; padding-top:12px; border-top:1px solid var(--white3); }
.portfolio-result { font-size:12px; color:var(--gray); font-style:italic; }
.portfolio-result strong { color:var(--black); font-style:normal; }
.portfolio-arrow {
  width:32px; height:32px; border-radius:50%;
  border:1.5px solid var(--white3); display:flex; align-items:center; justify-content:center;
  transition:var(--transition); font-size:14px; color:var(--gray2);
}
.portfolio-card:hover .portfolio-arrow { background:var(--orange); border-color:var(--orange); color:#fff; }

/* ============================================================
   TOOLS SECTION
   ============================================================ */
.tools-section { padding:96px 0; background:var(--black); }
.tools-section .section-title { color:#fff; }
.tools-section .section-subtitle { color:rgba(255,255,255,.45); }
.tools-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:52px; }
.tool-card {
  background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.07);
  border-radius:var(--radius-lg); padding:26px 22px;
  transition:var(--transition); text-decoration:none; display:block;
}
.tool-card:hover { border-color:rgba(255,107,26,.4); background:rgba(255,107,26,.05); transform:translateY(-3px); }
.tool-card-top { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:14px; }
.tool-icon {
  width:46px; height:46px; border-radius:10px; background:var(--orange-soft);
  border:1px solid rgba(255,107,26,.15); display:flex; align-items:center; justify-content:center; font-size:22px;
}
.tool-badge { font-size:10.5px; font-weight:700; padding:3px 10px; border-radius:100px; }
.badge-live { background:rgba(40,200,100,0.1); color:var(--green); border:1px solid rgba(40,200,100,.2); }
.badge-soon { background:rgba(255,107,26,0.1); color:var(--orange3); border:1px solid rgba(255,107,26,.15); }
.tool-name { font-family:var(--font-head); font-size:16px; font-weight:800; color:#fff; margin-bottom:6px; letter-spacing:-.2px; }
.tool-desc { font-size:13px; color:rgba(255,255,255,.4); line-height:1.6; margin-bottom:14px; }
.tool-features { display:flex; flex-wrap:wrap; gap:5px; margin-bottom:18px; }
.tool-feature { font-size:11px; padding:3px 9px; border-radius:100px; background:rgba(255,255,255,.04); color:rgba(255,255,255,.35); border:1px solid rgba(255,255,255,.07); }
.tool-link { display:flex; align-items:center; gap:6px; font-family:var(--font-head); font-size:13px; font-weight:700; color:var(--orange); transition:var(--transition); }
.tool-card:hover .tool-link { gap:10px; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section { padding:96px 0; background:var(--white2); }
.pricing-section .section-title { text-align:center; }
.pricing-section .section-label { justify-content:center; }
.pricing-section .section-subtitle { text-align:center; margin:0 auto; }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:52px; }
.pricing-card {
  background:var(--white); border:1px solid var(--white3);
  border-radius:var(--radius-xl); padding:36px 30px;
  position:relative; transition:var(--transition);
}
.pricing-card.featured {
  background:var(--black); border-color:var(--orange);
  transform:scale(1.03);
  box-shadow:0 24px 64px rgba(0,0,0,.2), 0 0 0 1px rgba(255,107,26,.3);
}
.pricing-card:hover:not(.featured) { box-shadow:var(--shadow-lg); border-color:rgba(255,107,26,.2); }
.pricing-featured-badge {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:var(--orange); color:#fff; font-size:11px; font-weight:700;
  padding:5px 18px; border-radius:100px; white-space:nowrap; letter-spacing:.5px;
  font-family:var(--font-head);
}
.pricing-tier { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--orange); margin-bottom:10px; }
.pricing-name { font-family:var(--font-head); font-size:22px; font-weight:900; margin-bottom:8px; letter-spacing:-.5px; }
.pricing-card.featured .pricing-name { color:#fff; }
.pricing-from { font-size:12px; color:var(--gray); margin-bottom:4px; }
.pricing-card.featured .pricing-from { color:rgba(255,255,255,.4); }
.pricing-amount { font-family:var(--font-head); font-size:40px; font-weight:900; letter-spacing:-2px; margin-bottom:24px; line-height:1; }
.pricing-card.featured .pricing-amount { color:#fff; }
.pricing-amount span { font-size:16px; font-weight:500; color:var(--gray); letter-spacing:0; }
.pricing-card.featured .pricing-amount span { color:rgba(255,255,255,.35); }
.pricing-divider { height:1px; background:var(--white3); margin-bottom:22px; }
.pricing-card.featured .pricing-divider { background:rgba(255,255,255,.1); }
.pricing-features { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:30px; }
.pricing-features li { font-size:14px; color:var(--gray2); display:flex; align-items:center; gap:10px; line-height:1.4; }
.pricing-card.featured .pricing-features li { color:rgba(255,255,255,.6); }
.pricing-check {
  width:20px; height:20px; background:var(--orange-soft); border-radius:50%;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  font-size:10px; color:var(--orange);
}
.pricing-card.featured .pricing-check { background:rgba(255,107,26,.2); }
.pricing-btn {
  width:100%; padding:14px; border-radius:var(--radius-md);
  font-family:var(--font-head); font-weight:700; font-size:14px;
  letter-spacing:.3px; cursor:pointer; transition:var(--transition); border:none;
}
.pricing-btn-dark { background:var(--black); color:#fff; }
.pricing-btn-dark:hover { background:var(--orange); }
.pricing-btn-orange { background:var(--orange); color:#fff; box-shadow:var(--shadow-org); }
.pricing-btn-orange:hover { background:var(--orange2); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  padding:100px 0; background:var(--black);
  position:relative; overflow:hidden; text-align:center;
}
.cta-bg {
  position:absolute; inset:0;
  background:radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,107,26,.1) 0%, transparent 70%);
  pointer-events:none;
}
.cta-inner { position:relative; z-index:2; max-width:680px; margin:0 auto; }
.cta-title {
  font-family:var(--font-head); font-size:clamp(30px,5vw,58px); font-weight:900;
  color:#fff; line-height:1.1; letter-spacing:-2px; margin-bottom:18px;
}
.cta-title span { color:var(--orange); }
.cta-sub { font-size:17px; color:rgba(255,255,255,.5); line-height:1.7; margin-bottom:36px; }
.cta-buttons { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:28px; }
.cta-badges { display:flex; gap:8px; flex-wrap:wrap; justify-content:center; }
.cta-badge {
  font-size:12px; background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.4); padding:5px 14px; border-radius:100px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background:#050505; padding:70px 0 0;
  border-top:1px solid #111;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px; padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
/* Brand column */
.footer-brand .footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-brand .fl-mark { width:34px; height:34px; background:var(--orange); border-radius:7px; display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-size:15px; font-weight:900; color:#fff; flex-shrink:0; }
.footer-brand .fl-name { font-family:var(--font-head); font-size:16px; font-weight:800; color:#fff; line-height:1.2; }
.footer-brand .fl-name span { display:block; font-size:10px; font-weight:500; color:rgba(255,255,255,.35); letter-spacing:1px; }
.footer-tagline { font-size:13.5px; color:rgba(255,255,255,.4); line-height:1.7; margin-bottom:20px; max-width:260px; }
.footer-contact { display:flex; flex-direction:column; gap:8px; margin-bottom:20px; }
.footer-contact a {
  font-size:13px; color:rgba(255,255,255,.4);
  display:flex; align-items:center; gap:8px; transition:var(--transition);
}
.footer-contact a:hover { color:var(--orange); }
.fc-icon { font-size:14px; flex-shrink:0; }
/* Social icons */
.footer-socials { display:flex; gap:8px; flex-wrap:wrap; }
.footer-social {
  width:36px; height:36px; border-radius:8px;
  border:1px solid rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.45); transition:var(--transition); text-decoration:none;
}
.footer-social:hover { background:var(--orange); border-color:var(--orange); color:#fff; transform:translateY(-2px); }
.footer-social svg { width:15px; height:15px; }

/* Footer columns */
.footer-col h4 {
  font-family:var(--font-head); font-size:11px; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase;
  color:rgba(255,255,255,0.5); margin-bottom:16px;
}
.footer-col ul { display:flex; flex-direction:column; gap:9px; }
.footer-col ul li a {
  font-size:13.5px; color:rgba(255,255,255,0.38);
  display:flex; align-items:center; gap:5px; transition:var(--transition);
}
.footer-col ul li a::before { content:'›'; color:var(--orange); font-size:15px; opacity:.5; }
.footer-col ul li a:hover { color:rgba(255,255,255,0.75); padding-left:4px; }

/* Footer bottom */
.footer-bottom {
  padding:20px 0 24px;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:12px;
}
.footer-copy {
  font-size:12.5px; color:rgba(255,255,255,0.35);
  line-height:1.5;
}
.footer-copy strong { color:rgba(255,107,26,0.7); font-weight:600; }
.footer-powered {
  font-size:12px; color:rgba(255,255,255,0.2);
}
.footer-powered strong { color:rgba(255,107,26,0.4); font-weight:500; }

/* Mobile bottom nav spacing for footer */
@media(max-width:768px) {
  footer { padding-bottom:calc(var(--mobile-nav-h) + 16px); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background:var(--black); padding:80px 0; position:relative; overflow:hidden;
}
.page-hero-bg {
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,107,26,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,107,26,0.04) 1px,transparent 1px);
  background-size:40px 40px; pointer-events:none;
}
.page-hero-inner { position:relative; z-index:2; }
.page-hero-breadcrumb {
  display:flex; align-items:center; gap:8px;
  font-size:13px; color:rgba(255,255,255,.35); margin-bottom:18px;
}
.page-hero-breadcrumb a { color:rgba(255,255,255,.35); transition:var(--transition); }
.page-hero-breadcrumb a:hover { color:var(--orange); }
.page-hero-breadcrumb span { color:var(--orange); }
.page-hero-title {
  font-family:var(--font-head); font-size:clamp(32px,5vw,56px); font-weight:900;
  color:#fff; letter-spacing:-1.5px; line-height:1.1; margin-bottom:14px;
}
.page-hero-title span { color:var(--orange); }
.page-hero-sub { font-size:16px; color:rgba(255,255,255,.5); max-width:560px; line-height:1.7; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-label { font-size:13.5px; font-weight:600; color:var(--gray3); }
.form-input, .form-select, .form-textarea {
  width:100%; padding:13px 16px; border-radius:var(--radius-md);
  border:1.5px solid var(--white3); background:var(--white);
  font-family:var(--font-body); font-size:14.5px; color:var(--black);
  transition:var(--transition); outline:none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color:var(--orange); box-shadow:0 0 0 3px rgba(255,107,26,0.1);
}
.form-textarea { min-height:130px; resize:vertical; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-submit { width:100%; padding:15px; font-size:15px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.stats-bar { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.stat-card { text-align:center; padding:32px 20px; background:var(--white2); border-radius:var(--radius-lg); border:1px solid var(--white3); }
.stat-card-num { font-family:var(--font-head); font-size:42px; font-weight:900; color:var(--black); line-height:1; }
.stat-card-num span { color:var(--orange); }
.stat-card-label { font-size:14px; color:var(--gray2); margin-top:6px; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.blog-card {
  background:var(--white2); border:1px solid var(--white3);
  border-radius:var(--radius-lg); overflow:hidden;
  transition:var(--transition); cursor:pointer;
}
.blog-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:rgba(255,107,26,.2); }
.blog-thumb {
  height:160px; display:flex; align-items:center; justify-content:center; font-size:40px;
}
.blog-body { padding:22px; }
.blog-meta { display:flex; align-items:center; gap:8px; margin-bottom:10px; }
.blog-tag { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--orange); background:var(--orange-soft); padding:3px 10px; border-radius:100px; }
.blog-date { font-size:12px; color:var(--gray); }
.blog-title { font-family:var(--font-head); font-size:17px; font-weight:800; margin-bottom:8px; letter-spacing:-.3px; line-height:1.25; }
.blog-excerpt { font-size:13.5px; color:var(--gray2); line-height:1.6; margin-bottom:14px; }
.blog-read-more { font-family:var(--font-head); font-size:13px; font-weight:700; color:var(--orange); display:flex; align-items:center; gap:6px; transition:var(--transition); }
.blog-card:hover .blog-read-more { gap:10px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
.animate-fade-up { animation:fadeInUp .6s ease forwards; }
.animate-fade    { animation:fadeIn .5s ease forwards; }

/* Reveal on scroll */
.reveal { opacity:0; transform:translateY(24px); transition:.65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position:fixed; bottom:80px; right:20px; z-index:700;
  width:44px; height:44px; background:var(--orange); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:18px; box-shadow:var(--shadow-org);
  transition:var(--transition); opacity:0; pointer-events:none;
}
.back-to-top.visible { opacity:1; pointer-events:all; }
.back-to-top:hover { transform:translateY(-3px); background:var(--orange2); }

/* ============================================================
   NOTIFICATION / TOAST
   ============================================================ */
.toast {
  position:fixed; bottom:calc(var(--mobile-nav-h) + 16px); left:50%;
  transform:translateX(-50%) translateY(20px);
  background:var(--black3); color:#fff; padding:12px 24px;
  border-radius:var(--radius-md); font-size:14px; font-weight:500;
  border-left:3px solid var(--orange); box-shadow:var(--shadow-lg);
  opacity:0; transition:var(--transition); z-index:1000; white-space:nowrap;
}
.toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* ============================================================
   RESPONSIVE — TABLET (≤992px)
   ============================================================ */
@media (max-width: 992px) {
  .hero-right { display:none; }
  .services-grid   { grid-template-columns:repeat(2,1fr); }
  .why-grid        { grid-template-columns:repeat(2,1fr); }
  .portfolio-grid  { grid-template-columns:repeat(2,1fr); }
  .tools-grid      { grid-template-columns:repeat(2,1fr); }
  .pricing-grid    { grid-template-columns:1fr; max-width:460px; margin-left:auto; margin-right:auto; }
  .pricing-card.featured { transform:scale(1); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .process-steps  { grid-template-columns:repeat(3,1fr); gap:24px; }
  .process-steps::before { display:none; }
  .form-row { grid-template-columns:1fr; }
  .stats-bar { grid-template-columns:repeat(2,1fr); }
  .blog-grid { grid-template-columns:repeat(2,1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h:60px; }
  .container { padding:0 18px; }

  /* Show hamburger, hide desktop nav */
  .nav-links, .nav-cta { display:none; }
  .nav-hamburger { display:flex; }

  /* Show mobile bottom nav */
  .mobile-bottom-nav { display:block; }

  /* Hero */
  .hero { min-height:auto; padding:52px 0 60px; }
  .hero-title { font-size:clamp(34px,9vw,52px); letter-spacing:-1.5px; }
  .hero-sub { font-size:15px; }
  .hero-stats { gap:24px; }
  .hero-stat-num { font-size:22px; }
  .hero-buttons { flex-direction:column; }
  .hero-buttons .btn { width:100%; justify-content:center; }

  /* Sections */
  .services-section, .why-section, .process-section,
  .portfolio-section, .tools-section, .pricing-section,
  .cta-section { padding:64px 0; }

  /* Grids to single column */
  .services-grid   { grid-template-columns:1fr; }
  .why-grid        { grid-template-columns:1fr; }
  .process-steps   { grid-template-columns:repeat(2,1fr); gap:20px; }
  .portfolio-grid  { grid-template-columns:1fr; }
  .tools-grid      { grid-template-columns:1fr; }
  .footer-grid     { grid-template-columns:1fr; gap:28px; }
  .stats-bar       { grid-template-columns:repeat(2,1fr); }
  .blog-grid       { grid-template-columns:1fr; }

  /* Pricing - full width */
  .pricing-grid    { grid-template-columns:1fr; max-width:100%; }
  .pricing-card.featured { transform:none; }

  /* CTA buttons */
  .cta-buttons { flex-direction:column; align-items:center; }
  .cta-buttons .btn { width:100%; max-width:340px; justify-content:center; }

  /* Footer */
  .footer-bottom { flex-direction:column; text-align:center; gap:8px; }
  .footer-brand .footer-tagline { max-width:100%; }

  /* Section headers */
  .section-title { letter-spacing:-1px; }

  /* Back to top - above mobile nav */
  .back-to-top { bottom:calc(var(--mobile-nav-h) + 16px); }

  /* Toast - above mobile nav */
  .toast { bottom:calc(var(--mobile-nav-h) + 16px); }

  /* Page hero */
  .page-hero { padding:52px 0; }
  .page-hero-title { font-size:clamp(28px,8vw,44px); }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size:32px; letter-spacing:-1px; }
  .hero-stats { gap:16px; }
  .hero-badge-text { font-size:10px; }
  .section-title { font-size:24px; }
  .portfolio-preview { height:170px; }
  .pricing-card { padding:26px 20px; }
  .cta-title { font-size:28px; }
  .process-steps { grid-template-columns:1fr; max-width:220px; margin:0 auto; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .mobile-bottom-nav, .mobile-menu, .back-to-top { display:none !important; }
  body { background:#fff; color:#000; }
}
