/* ===================================================================
   Codingcafe Technologies — Premium IT Company Website
   Global Stylesheet
   =================================================================== */

/* ----- CSS Variables / Design Tokens ----- */
:root {
  /* ===== Logo theme — magenta/pink -> purple -> blue (best one) ===== */
  --navy-900: #120a2e;
  --navy-800: #1a0f3d;
  --navy-700: #271858;
  --navy-600: #3b2a8a;
  --blue-500: #7c3aed;   /* primary accent (purple) */
  --blue-400: #a855f7;   /* lighter purple */
  --cyan-400: #ec4899;   /* pink accent */
  --indigo-500: #6366f1;
  --pink-500: #ec4899;
  --pink-400: #f472b6;
  --magenta: #d6266e;
  --sky-500: #3b82f6;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Gradients — mirror the logo: pink -> purple -> blue */
  --grad-primary: linear-gradient(135deg, #ec4899 0%, #a855f7 45%, #6366f1 75%, #3b82f6 100%);
  --grad-dark: linear-gradient(135deg, #120a2e 0%, #271858 55%, #3b2a8a 100%);
  --grad-hero: radial-gradient(ellipse at top left, rgba(236,72,153,0.28), transparent 50%),
               radial-gradient(ellipse at bottom right, rgba(59,130,246,0.22), transparent 50%),
               linear-gradient(135deg, #120a2e 0%, #1a0f3d 55%, #271858 100%);
  --grad-text: linear-gradient(135deg, #f472b6 0%, #a855f7 50%, #60a5fa 100%);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-bg-light: rgba(255, 255, 255, 0.7);

  /* Typography */
  --font-main: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Spacing & sizing */
  --container: 1200px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 12px 40px rgba(168, 85, 247, 0.4);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Reset ----- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }
input, textarea, select { font-family: inherit; }
section { position: relative; }

/* ----- Utility ----- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.text-center { text-align: center; }
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----- Section heading ----- */
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-500);
  background: rgba(168, 85, 247, 0.12);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.section-subtitle {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--gray-500);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(168, 85, 247, 0.5); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); transform: translateY(-3px); }
.btn-dark { background: var(--navy-900); color: var(--white); }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-3px); }
.btn-light { background: var(--white); color: var(--navy-900); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-sm { padding: 11px 24px; font-size: 0.9rem; }

/* ===================================================================
   PRELOADER
   =================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--grad-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 60px; height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--cyan-400);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
.loader-text {
  margin-top: 22px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
}
.loader-text span { color: var(--cyan-400); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================================================================
   HEADER / NAVIGATION
   =================================================================== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(18, 10, 46, 0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
/* When page has no dark hero, keep header solid + offset first section */
body.no-hero .header {
  background: rgba(18, 10, 46, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
body.no-hero .section-first { padding-top: 150px; }

.nav { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.25rem; color: var(--white); }
.logo-img { height: 74px; width: auto; display: block; transition: height var(--transition); }
.header.scrolled .logo-img { height: 60px; }
.logo-icon {
  width: 42px; height: 42px;
  background: var(--grad-primary);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-glow);
}
.logo span { color: var(--cyan-400); }
.footer-brand .logo-img { height: 76px; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255, 255, 255, 0.1); }
.nav-cta { margin-left: 12px; }
.menu-toggle {
  display: none;
  background: transparent;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.menu-toggle span {
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================================================================
   HERO / PAGE BANNER
   =================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black, transparent 75%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}
.hero-blob.b1 { width: 400px; height: 400px; background: rgba(168,85,247,0.45); top: -100px; right: -80px; }
.hero-blob.b2 { width: 320px; height: 320px; background: rgba(59,130,246,0.32); bottom: -120px; left: -60px; animation-delay: 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-visual { position: relative; }

/* ===== Animated code editor window ===== */
.code-editor {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #1a1140 0%, #140b30 100%);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04), 0 18px 60px rgba(124,40,180,0.4);
  overflow: hidden;
  max-width: 480px;
  margin-left: auto;
}
.ce-bar {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ce-dots { display: flex; gap: 7px; }
.ce-dots i { width: 12px; height: 12px; border-radius: 50%; }
.ce-dots i:nth-child(1){ background:#ff5f57; }
.ce-dots i:nth-child(2){ background:#febc2e; }
.ce-dots i:nth-child(3){ background:#28c840; }
.ce-tab {
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 8px;
}
.ce-tab i { color: var(--cyan-400); }
.ce-body { padding: 22px 20px; min-height: 240px; }
.ce-code {
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.92rem;
  line-height: 1.85;
  color: #c9c3e8;
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
}
.ce-code .kw { color: #c084fc; }
.ce-code .fn { color: #60a5fa; }
.ce-code .str { color: #5eead4; }
.ce-code .num { color: #f472b6; }
.ce-code .com { color: #6b7280; font-style: italic; }
.ce-cursor {
  display: inline-block;
  width: 9px; height: 1.1em;
  background: var(--cyan-400);
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: blink 1s steps(2) infinite;
  box-shadow: 0 0 10px var(--cyan-400);
}
@keyframes blink { 0%,50% { opacity: 1; } 50.01%,100% { opacity: 0; } }
.ce-status {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: rgba(94, 234, 212, 0.08);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem; font-weight: 600; color: #5eead4;
}
.ce-dot-live { width: 9px; height: 9px; border-radius: 50%; background: #34d399; box-shadow: 0 0 10px #34d399; animation: pulse-dot 1.6s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8% -4%;
  background: radial-gradient(circle at 60% 40%, rgba(168,85,247,0.4), rgba(59,130,246,0.22) 50%, transparent 75%);
  filter: blur(55px);
  z-index: 0;
}

.ce-chip {
  position: absolute;
  z-index: 5;
  background: rgba(26, 17, 64, 0.9);
  border: 1px solid rgba(168,85,247,0.3);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 11px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex; align-items: center; gap: 9px;
  box-shadow: 0 12px 30px rgba(124,40,180,0.35);
  animation: float 5s ease-in-out infinite;
}
.ce-chip i { color: var(--cyan-400); }
.ce-chip.ce-chip1 { top: -22px; left: -18px; }
.ce-chip.ce-chip2 { bottom: -20px; right: -14px; animation-delay: 1.5s; }
.ce-chip.ce-chip2 i { color: #5eead4; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--cyan-400); border-radius: 50%; box-shadow: 0 0 12px var(--cyan-400); }
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 56px; flex-wrap: wrap; justify-content: center; }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--white); }
.hero-stat span { font-size: 0.88rem; color: rgba(255, 255, 255, 0.65); }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.hero-card-top { display: flex; gap: 8px; margin-bottom: 22px; }
.hero-card-top i { width: 12px; height: 12px; border-radius: 50%; }
.hero-card-top i:nth-child(1) { background: #ff5f57; }
.hero-card-top i:nth-child(2) { background: #febc2e; }
.hero-card-top i:nth-child(3) { background: #28c840; }
.code-line { height: 12px; border-radius: 6px; margin-bottom: 14px; background: rgba(255,255,255,0.12); }
.code-line.w1 { width: 80%; background: rgba(236,72,153,0.45); }
.code-line.w2 { width: 60%; }
.code-line.w3 { width: 90%; background: rgba(168,85,247,0.45); }
.code-line.w4 { width: 45%; }
.code-line.w5 { width: 75%; background: rgba(59,130,246,0.45); }
.float-chip {
  position: absolute;
  background: var(--white);
  color: var(--navy-900);
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 5s ease-in-out infinite;
}
.float-chip i { font-size: 1.3rem; }
.float-chip.fc1 { top: -25px; left: -30px; color: var(--blue-500); }
.float-chip.fc2 { bottom: -25px; right: -25px; color: #16a34a; animation-delay: 1.5s; }

/* ===== Rich hero scene: laptop dashboard + phone + floating cards ===== */
.hero-scene { position: relative; width: 100%; max-width: 560px; margin: 0 auto; padding: 30px 0; }

/* Laptop */
.hero-laptop {
  background: #2b2b38;
  border: 10px solid #34343f;
  border-radius: 18px 18px 6px 6px;
  padding: 8px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5),
              inset 0 0 0 1px rgba(255,255,255,0.08),
              0 0 0 1px rgba(255,255,255,0.06);
}
.hero-laptop-base {
  height: 20px;
  background: linear-gradient(180deg, #d9dbe4 0%, #b6b9c7 55%, #999db0 100%);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  width: 124%;
  margin-left: -12%;
  position: relative;
  box-shadow: 0 18px 34px rgba(0,0,0,0.4), inset 0 2px 2px rgba(255,255,255,0.5);
}
.hero-laptop-base::after {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 96px; height: 7px;
  background: linear-gradient(180deg, #8a8ea3, #6f7388);
  border-radius: 0 0 8px 8px;
}
.hero-dash { display: flex; background: #f7f7fb; border-radius: 8px; overflow: hidden; height: 290px; }
.hd-side {
  width: 46px; background: var(--grad-dark);
  display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 14px 0;
}
.hd-logo { width: 22px; height: 22px; border-radius: 7px; background: var(--grad-primary); }
.hd-ico { width: 20px; height: 20px; border-radius: 6px; background: rgba(255,255,255,0.14); }
.hd-main { flex: 1; padding: 14px; overflow: hidden; }
.hd-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.hd-title { width: 90px; height: 9px; border-radius: 4px; background: #2a2152; margin-bottom: 6px; }
.hd-sub { width: 130px; height: 6px; border-radius: 4px; background: #cdc9dd; }
.hd-pill { width: 56px; height: 18px; border-radius: 50px; background: #ece9f6; }
.hd-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-bottom: 12px; }
.hd-stat { background: #fff; border: 1px solid #ececf4; border-radius: 8px; padding: 8px 6px; }
.hd-stat b { display: block; font-size: 0.72rem; color: #1f1640; font-weight: 800; line-height: 1.1; }
.hd-stat span { display: block; font-size: 0.42rem; color: #8b86a0; margin: 2px 0; letter-spacing: 0.3px; }
.hd-stat i.up { font-size: 0.42rem; color: #16a34a; font-style: normal; font-weight: 700; }
.hd-charts { display: grid; grid-template-columns: 1.6fr 1fr; gap: 8px; }
.hd-chart, .hd-donut { background: #fff; border: 1px solid #ececf4; border-radius: 8px; padding: 10px; }
.hd-chart-head { width: 70px; height: 6px; border-radius: 4px; background: #d7d3e6; margin-bottom: 8px; }
.hd-line { width: 100%; height: 64px; }
.hd-line polyline { fill: none; stroke: #a855f7; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.hd-donut { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.donut {
  width: 56px; height: 56px; border-radius: 50%;
  background: conic-gradient(#ec4899 0 52%, #a855f7 52% 76%, #6366f1 76% 91%, #3b82f6 91% 100%);
  -webkit-mask: radial-gradient(circle 16px at center, transparent 98%, #000 100%);
          mask: radial-gradient(circle 16px at center, transparent 98%, #000 100%);
}
.dl { display: block; width: 40px; height: 4px; border-radius: 3px; }
.dl1 { background: #ec4899; } .dl2 { background: #a855f7; } .dl3 { background: #6366f1; }

/* Phone overlapping laptop */
.hero-phone {
  position: absolute;
  left: -28px; bottom: 18px;
  width: 138px;
  background: var(--grad-dark);
  border: 5px solid #2a2152;
  border-radius: 22px;
  padding: 16px 10px 12px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.4);
  z-index: 4;
}
.hp-head { color: #fff; font-size: 0.58rem; line-height: 1.5; margin-bottom: 12px; opacity: 0.95; }
.hp-head b { font-size: 0.62rem; }
.hp-item {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border-radius: 10px; padding: 7px 8px; margin-bottom: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}
.hp-ico {
  width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center; font-size: 0.6rem;
}
.hp-item strong { display: block; font-size: 0.55rem; color: #1f1640; }
.hp-item small { font-size: 0.42rem; color: #8b86a0; }

/* Floating glass cards */
.hero-fc {
  position: absolute;
  background: rgba(255,255,255,0.96);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 16px 40px rgba(124,40,180,0.25);
  display: flex; align-items: center; gap: 12px;
  z-index: 5;
  animation: float 5s ease-in-out infinite;
}
.hero-fc .fc-ico {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center; font-size: 1rem;
}
.hero-fc small { display: block; font-size: 0.62rem; color: #8b86a0; font-weight: 600; }
.hero-fc b { display: block; font-size: 1.1rem; color: #1f1640; font-weight: 800; line-height: 1.1; }
.hero-fc b i { font-size: 0.7rem; color: #8b86a0; font-style: normal; }
.hero-fc em { font-size: 0.6rem; color: #16a34a; font-style: normal; font-weight: 700; }
.hero-fc.fc-speed { top: -28px; left: 6px; z-index: 8; }
.hero-fc.fc-growth { top: 40px; right: -30px; animation-delay: 1.2s; }
.hero-fc.fc-secure { bottom: 60px; right: -10px; animation-delay: 2.2s; }

/* ===== 3D decorative props (reference-style) ===== */
.hero-scene .hero-laptop { position: relative; z-index: 2; }
.hero-phone { z-index: 6; }

/* Professional woman (illustrated, sitting with laptop) */
/* Paper plane + dashed trail */
.hero-plane {
  position: absolute; top: -14px; left: 52%;
  font-size: 1.9rem; color: var(--blue-500); z-index: 7;
  transform: rotate(-22deg);
  filter: drop-shadow(0 8px 12px rgba(124,40,180,0.4));
  animation: float 6s ease-in-out infinite;
}
.hero-plane-trail {
  position: absolute; top: 14px; left: 20%; width: 34%; height: 44px; z-index: 1;
  border-top: 2.5px dashed rgba(168,85,247,0.5);
  border-radius: 50%;
  transform: rotate(-6deg);
}

/* Plant */
.hero-plant { position: absolute; bottom: 4px; left: -58px; width: 58px; height: 90px; z-index: 7; }
.hero-plant .pot {
  position: absolute; bottom: 0; left: 12px;
  width: 36px; height: 36px;
  background: linear-gradient(180deg, #f1f0f6, #d9d7e6);
  border-radius: 4px 4px 12px 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}
.hero-plant .pot::before {
  content: ""; position: absolute; top: 0; left: -2px; width: 40px; height: 9px;
  background: #e9e7f2; border-radius: 4px;
}
.hero-plant .leaf {
  position: absolute; bottom: 32px; width: 16px; height: 36px;
  background: var(--grad-primary); border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}
.hero-plant .leaf.l1 { left: 12px; transform: rotate(-26deg); }
.hero-plant .leaf.l2 { left: 25px; transform: rotate(0deg); height: 44px; bottom: 34px; }
.hero-plant .leaf.l3 { left: 38px; transform: rotate(26deg); }

/* Target / dartboard */
.hero-target { position: absolute; bottom: -30px; left: 30px; width: 56px; height: 56px; z-index: 6; }
.hero-target .ring {
  position: absolute; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.hero-target .r1 { width: 64px; height: 64px; background: #7c3aed; }
.hero-target .r2 { width: 44px; height: 44px; background: #fff; }
.hero-target .r3 { width: 24px; height: 24px; background: #a855f7; }
.hero-target .bull { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 9px; height: 9px; border-radius: 50%; background: #fff; }
.hero-target .arrow { position: absolute; top: 42%; left: 38%; color: #ec4899; font-size: 1.1rem; transform: rotate(40deg); }

/* Growth bars + arrow */
.hero-bars { position: absolute; bottom: -16px; right: -34px; width: 90px; height: 80px; display: flex; align-items: flex-end; gap: 6px; z-index: 7; }
.hero-bars .bar { width: 15px; border-radius: 4px 4px 0 0; background: var(--grad-primary); box-shadow: 0 8px 16px rgba(124,40,180,0.3); }
.hero-bars .b1 { height: 30%; } .hero-bars .b2 { height: 50%; } .hero-bars .b3 { height: 72%; } .hero-bars .b4 { height: 100%; }
.hero-bars .bars-arrow { position: absolute; top: -6px; right: 2px; color: #ec4899; font-size: 1.4rem; filter: drop-shadow(0 4px 8px rgba(236,72,153,0.4)); }

/* Dot grids */
.hero-dots {
  position: absolute; width: 56px; height: 56px; z-index: 1;
  background-image: radial-gradient(rgba(168,85,247,0.55) 2px, transparent 2px);
  background-size: 12px 12px;
}
.hero-dots.dots-left { top: 38%; left: -54px; }
.hero-dots.dots-right { top: 60%; right: -40px; width: 44px; height: 44px; }

/* Floating sphere */
.hero-sphere {
  position: absolute; bottom: -34px; left: 44%; width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #c084fc, #7c3aed);
  box-shadow: 0 10px 20px rgba(124,40,180,0.4); z-index: 7;
}

/* Laptop trackpad */
.hero-trackpad {
  position: absolute; top: 3px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 6px; border-radius: 0 0 6px 6px;
  background: linear-gradient(180deg,#8a8ea3,#6f7388);
}

/* Page banner (inner pages) */
.page-banner {
  background: var(--grad-hero);
  padding: 170px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black, transparent 75%);
}
.page-banner h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; color: var(--white); position: relative; z-index: 2; }
.page-banner p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 16px auto 0; position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 10px; justify-content: center; align-items: center; margin-top: 22px; position: relative; z-index: 2; color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.breadcrumb a { color: var(--cyan-400); }

/* ===================================================================
   SERVICES
   =================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 70px; height: 70px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-size: 1.9rem;
  color: var(--white);
  background: var(--grad-primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-glow);
}
.service-card h3 { font-size: 1.35rem; font-weight: 800; color: var(--navy-900); margin-bottom: 14px; }
.service-card p { color: var(--gray-500); margin-bottom: 20px; font-size: 0.97rem; }
.service-list { margin-bottom: 22px; }
.service-list li { display: flex; gap: 10px; align-items: center; color: var(--gray-700); font-size: 0.92rem; margin-bottom: 10px; }
.service-list li i { color: var(--blue-500); font-size: 0.95rem; }
.service-link { font-weight: 700; color: var(--blue-500); display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); }
.service-link:hover { gap: 14px; }

/* Detailed service block (services page) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 90px;
}
.service-detail:nth-child(even) .service-detail-visual { order: -1; }
.service-detail-visual {
  background: var(--grad-dark);
  border-radius: var(--radius-lg);
  padding: 50px;
  min-height: 380px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.service-detail-visual::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  background: var(--grad-primary);
  filter: blur(90px);
  opacity: 0.45;
  border-radius: 50%;
  z-index: 0;
}
.service-detail-visual .big-icon { font-size: 7rem; color: var(--white); opacity: 0.9; position: relative; z-index: 2; }

/* ===== Premium device mockups ===== */
.mock { position: relative; z-index: 2; width: 100%; max-width: 360px; }

/* Phone mockup */
.mock-phone {
  width: 200px;
  height: 400px;
  margin: 0 auto;
  background: #0c0a1f;
  border: 8px solid #2a2350;
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  padding: 14px 12px;
  position: relative;
}
.mock-phone::before {
  content: "";
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 6px;
  background: #2a2350;
  border-radius: 6px;
}
.mock-phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1a0f3d, #271858);
  border-radius: 22px;
  padding: 22px 14px 14px;
  overflow: hidden;
}
.mp-bar { height: 8px; border-radius: 6px; background: rgba(255,255,255,0.15); margin-bottom: 14px; }
.mp-hero { height: 70px; border-radius: 14px; background: var(--grad-primary); margin-bottom: 14px; }
.mp-row { display: flex; gap: 10px; margin-bottom: 12px; }
.mp-tile { flex: 1; height: 46px; border-radius: 12px; background: rgba(255,255,255,0.1); }
.mp-tile.accent { background: rgba(236,72,153,0.5); }
.mp-line { height: 8px; border-radius: 6px; background: rgba(255,255,255,0.12); margin-bottom: 10px; }
.mp-line.short { width: 60%; }

/* Browser / website mockup */
.mock-browser {
  width: 100%;
  background: #16122e;
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: #221b45; }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; }
.mock-bar i:nth-child(1){ background:#ff5f57;} .mock-bar i:nth-child(2){ background:#febc2e;} .mock-bar i:nth-child(3){ background:#28c840;}
.mock-url { flex:1; height: 16px; margin-left: 10px; border-radius: 50px; background: rgba(255,255,255,0.1); }
.mock-body { padding: 20px; }
.mb-hero { height: 90px; border-radius: 12px; background: var(--grad-primary); margin-bottom: 16px; }
.mb-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.mb-card { height: 60px; border-radius: 10px; background: rgba(255,255,255,0.1); }
.mb-card:nth-child(2){ background: rgba(168,85,247,0.4); }

/* Dashboard mockup (marketing/SEO) */
.mock-dash {
  width: 100%;
  background: #16122e;
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.08);
}
.md-top { display:flex; justify-content: space-between; align-items:center; margin-bottom: 18px; }
.md-title { width: 90px; height: 12px; border-radius: 6px; background: rgba(255,255,255,0.2); }
.md-badge { padding: 5px 12px; border-radius: 50px; background: var(--grad-primary); color:#fff; font-size: 0.7rem; font-weight: 700; }
.md-stats { display:grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 18px; }
.md-stat { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 14px 12px; }
.md-stat b { display:block; color: var(--pink-400); font-size: 1.3rem; font-weight: 800; }
.md-stat span { font-size: 0.7rem; color: rgba(255,255,255,0.55); }
.md-chart { height: 110px; display:flex; align-items:flex-end; gap: 10px; padding: 14px; background: rgba(255,255,255,0.04); border-radius: 12px; }
.md-bar { flex:1; border-radius: 6px 6px 0 0; background: var(--grad-primary); }
.md-bar.b1{height:40%;} .md-bar.b2{height:65%;} .md-bar.b3{height:50%;} .md-bar.b4{height:85%;} .md-bar.b5{height:70%;} .md-bar.b6{height:100%;}

.float-badge {
  position: absolute;
  z-index: 3;
  background: #fff;
  color: var(--navy-900);
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 5s ease-in-out infinite;
}
.float-badge i { font-size: 1.05rem; }
.float-badge.fb-tl { top: 18px; left: 8px; }
.float-badge.fb-br { bottom: 18px; right: 8px; animation-delay: 1.5s; }
.float-badge .up { color: #16a34a; }
.float-badge .star { color: #f59e0b; }
.service-detail h2 { font-size: 2rem; font-weight: 800; color: var(--navy-900); margin-bottom: 18px; }
.service-detail .lead { color: var(--gray-500); margin-bottom: 24px; }
.detail-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.detail-cols h4 { font-size: 1rem; color: var(--navy-900); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.detail-cols h4 i { color: var(--blue-500); }
.detail-cols li { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 8px; padding-left: 18px; position: relative; }
.detail-cols li::before { content: "▹"; position: absolute; left: 0; color: var(--cyan-400); }
.tech-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.tech-tag {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--gray-200);
}

/* ===================================================================
   STATS / COUNTERS
   =================================================================== */
.stats {
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(168,85,247,0.28), transparent 60%);
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; z-index: 2; max-width: 840px; margin: 0 auto; }
.stat-item { text-align: center; padding: 20px; }
.stat-item .count { font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; color: var(--white); line-height: 1; }
.stat-item .count .plus { color: var(--cyan-400); }
.stat-item .label { color: rgba(255,255,255,0.7); margin-top: 12px; font-weight: 600; }
.stat-item .stat-icon { font-size: 2rem; color: var(--cyan-400); margin-bottom: 14px; }

/* ===================================================================
   WHY CHOOSE US / FEATURES
   =================================================================== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 34px 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-card:hover { background: var(--white); transform: translateY(-8px); box-shadow: var(--shadow); }
.feature-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(168, 85, 247, 0.12);
  color: var(--blue-500);
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy-900); margin-bottom: 12px; }
.feature-card p { color: var(--gray-500); font-size: 0.94rem; }

/* ===================================================================
   PROCESS
   =================================================================== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-step {
  text-align: center;
  position: relative;
  padding: 20px;
}
.process-num {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--white);
  border: 2px dashed var(--blue-400);
  display: grid; place-items: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-500);
  position: relative;
  z-index: 2;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px; left: 60%;
  width: 80%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-400) 0 8px, transparent 8px 16px);
}
.process-step h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy-900); margin-bottom: 12px; }
.process-step p { color: var(--gray-500); font-size: 0.92rem; }

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials { background: var(--gray-50); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.testi-quote { font-size: 3rem; color: var(--blue-400); opacity: 0.2; line-height: 1; font-family: Georgia, serif; }
.testi-stars { color: #fbbf24; margin-bottom: 14px; }
.testi-card p { color: var(--gray-600); font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.testi-author strong { display: block; color: var(--navy-900); font-size: 0.98rem; }
.testi-author span { color: var(--gray-500); font-size: 0.85rem; }

/* ===================================================================
   ABOUT
   =================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  background: var(--grad-dark);
  display: grid;
  place-items: center;
}
.about-visual > i { font-size: 9rem; color: rgba(255,255,255,0.9); }
.about-visual::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  background: var(--grad-primary);
  filter: blur(90px);
  opacity: 0.5;
  border-radius: 50%;
}
.about-content h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--navy-900); margin-bottom: 20px; line-height: 1.2; }
.about-content > p { color: var(--gray-500); margin-bottom: 20px; }
.about-points { margin: 28px 0; }
.about-points li { display: flex; gap: 14px; margin-bottom: 18px; }
.about-points .ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.12);
  color: var(--blue-500);
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.about-points strong { display: block; color: var(--navy-900); }
.about-points span { color: var(--gray-500); font-size: 0.92rem; }

/* Mission Vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 38px;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.mv-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.mv-card .ico {
  width: 70px; height: 70px;
  border-radius: 18px;
  background: var(--grad-primary);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 1.9rem;
  margin-bottom: 24px;
  box-shadow: var(--shadow-glow);
}
.mv-card h3 { font-size: 1.5rem; font-weight: 800; color: var(--navy-900); margin-bottom: 14px; }
.mv-card p { color: var(--gray-500); }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value-card {
  text-align: center;
  padding: 34px 24px;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); background: var(--white); }
.value-card .ico {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 1.5rem;
}
.value-card h3 { font-size: 1.1rem; color: var(--navy-900); margin-bottom: 10px; }
.value-card p { color: var(--gray-500); font-size: 0.9rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.team-photo {
  height: 240px;
  background: var(--grad-dark);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 4rem;
  font-weight: 800;
  position: relative;
}
.team-info { padding: 24px; }
.team-info h3 { font-size: 1.15rem; color: var(--navy-900); margin-bottom: 4px; }
.team-info .role { color: var(--blue-500); font-weight: 600; font-size: 0.9rem; margin-bottom: 14px; }
.team-social { display: flex; justify-content: center; gap: 12px; }
.team-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  display: grid; place-items: center;
  transition: var(--transition);
}
.team-social a:hover { background: var(--grad-primary); color: var(--white); }

/* ===================================================================
   PORTFOLIO
   =================================================================== */
.portfolio-filter { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--blue-400); color: var(--blue-500); }
.filter-btn.active { background: var(--grad-primary); color: var(--white); border-color: transparent; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 28px; }
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.portfolio-img {
  height: 220px;
  background: var(--grad-dark);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.portfolio-img i { font-size: 3.5rem; color: rgba(255,255,255,0.9); z-index: 2; }
.portfolio-img::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  background: var(--grad-primary);
  filter: blur(70px);
  opacity: 0.6;
  border-radius: 50%;
}
.portfolio-tag-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.9);
  color: var(--navy-900);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  z-index: 3;
}
.portfolio-info { padding: 26px; }
.portfolio-info .cat { color: var(--blue-500); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; }
.portfolio-info h3 { font-size: 1.2rem; color: var(--navy-900); margin: 8px 0 12px; }
.portfolio-info p { color: var(--gray-500); font-size: 0.92rem; margin-bottom: 16px; }
.portfolio-card.hide { display: none; }
a.portfolio-card { display: block; text-decoration: none; }
a.portfolio-card.hide { display: none; }

/* Case studies */
.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.case-card {
  background: var(--grad-dark);
  border-radius: var(--radius);
  padding: 38px 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.case-card .case-num { font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.15); }
.case-card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.case-card p { color: rgba(255,255,255,0.7); font-size: 0.94rem; margin-bottom: 20px; }
.case-metrics { display: flex; gap: 28px; }
.case-metric strong { display: block; font-size: 1.6rem; color: var(--cyan-400); }
.case-metric span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info-card {
  background: var(--grad-dark);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-card::after {
  content: "";
  position: absolute;
  width: 250px; height: 250px;
  bottom: -80px; right: -80px;
  background: var(--grad-primary);
  filter: blur(90px);
  opacity: 0.5;
  border-radius: 50%;
}
.contact-info-card h3 { font-size: 1.6rem; margin-bottom: 16px; position: relative; z-index: 2; }
.contact-info-card > p { color: rgba(255,255,255,0.7); margin-bottom: 32px; position: relative; z-index: 2; }
.contact-info-list { position: relative; z-index: 2; }
.contact-info-item { display: flex; gap: 16px; align-items: center; margin-bottom: 26px; }
.contact-info-item .ico {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--glass-border);
  color: var(--cyan-400);
  display: grid; place-items: center;
  font-size: 1.3rem;
}
.contact-info-item strong { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.contact-info-item span { font-size: 1.02rem; }
.contact-social { display: flex; gap: 12px; margin-top: 30px; position: relative; z-index: 2; }
.contact-social a {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--glass-border);
  color: var(--white);
  display: grid; place-items: center;
  transition: var(--transition);
}
.contact-social a:hover { background: var(--grad-primary); transform: translateY(-4px); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 600; color: var(--navy-900); margin-bottom: 8px; font-size: 0.92rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(168,85,247,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: var(--gray-400); margin-top: 14px; text-align: center; }

/* Searchable country-code picker */
.phone-row { align-items: stretch; }
.cc-picker { position: relative; flex: 0 0 98px; }
.cc-toggle {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 14px 10px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--gray-800);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.cc-toggle:hover { border-color: var(--blue-400); }
.cc-toggle[aria-expanded="true"] { border-color: var(--blue-400); background: var(--white); box-shadow: 0 0 0 4px rgba(168,85,247,0.15); }
.cc-caret { font-size: 0.75rem; color: var(--gray-400); }
.cc-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 60;
  width: 320px;
  max-width: 80vw;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 45px rgba(15,23,42,0.18);
  overflow: hidden;
}
.cc-search-wrap { position: relative; padding: 12px; border-bottom: 1px solid var(--gray-100); }
.cc-search-wrap i { position: absolute; left: 26px; top: 50%; transform: translateY(-50%); color: var(--gray-400); font-size: 0.85rem; pointer-events: none; z-index: 2; }
.cc-search-wrap .cc-search {
  width: 100%;
  padding: 11px 14px 11px 44px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--gray-800);
}
.cc-search-wrap .cc-search:focus { outline: none; border-color: var(--blue-400); background: var(--white); box-shadow: 0 0 0 3px rgba(59,130,246,0.15); }
.cc-list { list-style: none; margin: 0; padding: 6px; max-height: 260px; overflow-y: auto; }
.cc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.92rem;
}
.cc-item:hover, .cc-item.active { background: var(--gray-50); }
.cc-item.selected { background: rgba(59,130,246,0.08); }
.cc-item.selected .cc-name { color: var(--blue-500); font-weight: 600; }
.cc-iso { flex: 0 0 26px; font-size: 0.72rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; }
.cc-name { flex: 1; color: var(--gray-800); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cc-dial { color: var(--gray-500); font-weight: 500; }
.form-success {
  display: none;
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.3);
  color: #16a34a;
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}
.form-success.show { display: block; }

.map-wrap {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ===================================================================
   FAQ
   =================================================================== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--blue-400); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  background: transparent;
  text-align: left;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
}
.faq-q i { color: var(--blue-500); transition: var(--transition); flex-shrink: 0; }
.faq-item.active .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 26px 24px; color: var(--gray-500); }

/* ===================================================================
   CTA SECTION
   =================================================================== */
.cta-section {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.cta-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--white); margin-bottom: 16px; position: relative; z-index: 2; }
.cta-section p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 32px; position: relative; z-index: 2; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ===================================================================
   NEWSLETTER
   =================================================================== */
.newsletter {
  background: var(--navy-900);
  padding: 60px 0;
}
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text h3 { font-size: 1.6rem; color: var(--white); margin-bottom: 8px; }
.newsletter-text p { color: rgba(255,255,255,0.65); }
.newsletter-form { display: flex; gap: 12px; flex: 1; min-width: 300px; max-width: 480px; }
.newsletter-form input {
  flex: 1;
  padding: 15px 22px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--cyan-400); }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 0.94rem; margin-bottom: 22px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  color: var(--white);
  display: grid; place-items: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--grad-primary); transform: translateY(-4px); }
.footer-col h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 22px; font-weight: 700; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.92rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--cyan-400); padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.92rem; }
.footer-contact li i { color: var(--cyan-400); margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
}
.footer-bottom a { color: var(--cyan-400); }

/* ===================================================================
   FLOATING ELEMENTS
   =================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  z-index: 900;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0% { box-shadow: 0 8px 24px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 8px 24px rgba(37,211,102,0.5), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0); }
}
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  background: var(--grad-primary);
  border-radius: 14px;
  display: grid; place-items: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ===================================================================
   SCROLL ANIMATIONS
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-scene { padding: 40px 20px; }
  .about-grid, .contact-grid, .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail:nth-child(even) .service-detail-visual { order: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .mv-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    gap: 6px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; }
  .nav-cta { margin: 16px 0 0; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .menu-toggle { display: flex; z-index: 1001; }
  .detail-cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { max-width: 100%; }
  .cta-section { padding: 50px 26px; }
}
@media (max-width: 560px) {
  .stats-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .container { padding: 0 18px; }
  .contact-form, .contact-info-card { padding: 30px 24px; }

  /* Hero scene fits small screens */
  .hero-scene { transform: scale(0.82); transform-origin: top center; }
  .hero-fc.fc-speed { left: 0; }
  .hero-fc.fc-growth { right: 0; }
  .hero-fc.fc-secure { right: 0; }
  .hero-phone { left: -8px; }
}

/* ===================================================================
   PREMIUM POLISH — Midnight Indigo refinements
   =================================================================== */

/* Body slightly off-white for softer premium feel */
body { background: #fbfcff; color: var(--gray-700); }

/* Section tag — glassy pill with subtle border */
.section-tag {
  border: 1px solid rgba(168, 85, 247, 0.22);
  background: rgba(168, 85, 247, 0.08);
}

/* Primary button — sheen sweep on hover */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 140%; }

/* Hero headline accent — animated gradient */
.gradient-text {
  background-size: 200% auto;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* Service cards — premium hover with glow ring */
.service-card { box-shadow: 0 1px 3px rgba(15,23,42,0.04); }
.service-card:hover {
  box-shadow: 0 24px 50px rgba(168, 85, 247, 0.16);
  border-color: rgba(168,85,247,0.3);
}
.service-icon { box-shadow: 0 10px 28px rgba(168, 85, 247, 0.38); }

/* Feature cards — crisp borders */
.feature-card { box-shadow: 0 1px 3px rgba(15,23,42,0.03); }
.feature-card:hover { box-shadow: 0 22px 44px rgba(168, 85, 247, 0.14); border-color: rgba(168,85,247,0.25); }

/* Stats — add top glow line */
.stats { border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.stat-item .stat-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  border-radius: 16px; display: grid; place-items: center;
  background: rgba(236,72,153,0.14);
  border: 1px solid rgba(236,72,153,0.25);
}

/* CTA section — richer gradient + glow */
.cta-section {
  background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #3b82f6 110%);
  box-shadow: 0 30px 80px rgba(168, 85, 247, 0.4);
}

/* Testimonials cards — premium lift */
.testi-card:hover { box-shadow: 0 24px 50px rgba(168, 85, 247, 0.15); border-color: rgba(168,85,247,0.25); }
.testi-avatar { box-shadow: 0 8px 20px rgba(168, 85, 247, 0.38); }

/* Process numbers — gradient fill on hover */
.process-step:hover .process-num {
  background: var(--grad-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.process-num { transition: var(--transition); }

/* Portfolio cards polish */
.portfolio-card:hover { box-shadow: 0 24px 50px rgba(168, 85, 247, 0.16); border-color: rgba(168,85,247,0.25); }

/* Nav links — animated underline accent */
.nav-links a { position: relative; }
.nav-links a.active { background: rgba(168,85,247,0.15); }

/* Footer — subtle top gradient line */
.footer { border-top: 3px solid transparent; border-image: var(--grad-primary) 1; }

/* Smooth fade-in for whole page */
@media (prefers-reduced-motion: no-preference) {
  .hero-text > * { animation: heroIn 0.7s ease both; }
  .hero-text > *:nth-child(2){ animation-delay: 0.1s; }
  .hero-text > *:nth-child(3){ animation-delay: 0.2s; }
  .hero-text > *:nth-child(4){ animation-delay: 0.3s; }
  .hero-text > *:nth-child(5){ animation-delay: 0.4s; }
}
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
