/* ============================================
   THE ONYX STUDIO — Premium CSS v3
   Theme: Dark Electric Blue — High Contrast
   Font: Playfair Display + Plus Jakarta Sans
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* ── BACKGROUNDS — Dark Electric Blue ── */
  --bg-primary: #060B14;   /* deepest dark — almost black but blue tinted */
  --bg-secondary: #0A1020;   /* slightly lighter dark blue */
  --bg-card: #0D1628;   /* card bg — visible blue depth */
  --bg-card-hover: #112035;   /* card hover */
  --bg-elevated:   #0F1E35;   /* elevated elements */

  /* ── ACCENT — Electric Blue ── */
  --accent: #00BFFF;   /* deep sky / electric blue */
  --accent-bright: #38D4FF;   /* brighter electric blue */
  --accent-mid:    #0090CC;   /* medium blue */
  --accent-dark:   #0066AA;   /* deep blue */
  --accent-glow:   rgba(0,191,255,0.2);
  --accent-subtle: rgba(0,191,255,0.08);
  --accent-border: rgba(0,191,255,0.25);

  /* ── GOLD — High contrast highlight ── */
  --gold:          #00BFFF;  /* keeping var for compat — using accent */
  --gold-glow:     rgba(0,191,255,0.15);

  /* ── TEXT — High Contrast ── */
  --text-primary: #FFFFFF;   /* pure white — max contrast */
  --text-secondary: #A8C8E8;   /* light blue-grey */
  --text-muted:    #3D5A7A;   /* muted blue */

  /* ── BORDERS ── */
  --border:        rgba(0,191,255,0.3);
  --border-subtle: rgba(0,191,255,0.1);
  --border-white:  rgba(255,255,255,0.07);

  /* ── FONTS ── */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* ── MISC ── */
  --radius:    14px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow-card:   0 4px 32px rgba(0,0,0,0.6);
  --shadow-accent: 0 8px 40px rgba(0,191,255,0.3);
  --glow-sm:       0 0 12px rgba(0,191,255,0.4);
  --glow-md:       0 0 24px rgba(0,191,255,0.5);
  --glow-lg:       0 0 48px rgba(0,191,255,0.35);
}

/* ══════════════════════════════════
   RESET
══════════════════════════════════ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px; font-weight: 400;
  line-height: 1.6; overflow-x: hidden;
  animation: pageIn 0.5s ease forwards;
}
@keyframes pageIn { from{opacity:0} to{opacity:1} }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; box-shadow: var(--glow-sm); }
::selection { background: var(--accent); color: #000; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* ══════════════════════════════════
   CONTAINERS
══════════════════════════════════ */
.container      { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* ══════════════════════════════════
   SCROLL PROGRESS
══════════════════════════════════ */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 9999;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  width: 0; pointer-events: none;
  box-shadow: 0 0 10px rgba(0,191,255,0.8), 0 0 20px rgba(0,191,255,0.4);
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(6,11,20,0.8);
  backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(6,11,20,0.97);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5), 0 1px 0 var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 300; color: var(--accent); line-height: 1;
  text-shadow: var(--glow-sm);
}
.nav-logo-mark span { font-weight: 700; color: #fff; }
.nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-name {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: #fff; letter-spacing: 0.5px;
}
.nav-logo-tag { font-size: 9px; color: var(--accent); letter-spacing: 3px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  position: relative; letter-spacing: 0.3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 100%;
  height: 1px; background: var(--accent);
  transition: var(--transition); box-shadow: var(--glow-sm);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { right: 0; }
.nav-links a.active { color: var(--accent); text-shadow: var(--glow-sm); }
.nav-cta {
  background: var(--accent) !important; color: #000 !important;
  padding: 9px 22px !important; border-radius: 40px !important;
  font-weight: 700 !important; letter-spacing: 0.3px !important;
  box-shadow: var(--shadow-accent) !important;
}
.nav-cta:hover {
  background: var(--accent-bright) !important;
  box-shadow: var(--glow-lg) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 24px; height: 1.5px; background: #fff; transition: var(--transition); display: block; }

@media(max-width:768px){
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; inset: 72px 0 0 0;
    background: rgba(6,11,20,0.98); backdrop-filter: blur(28px);
    padding: 40px 32px; gap: 24px; z-index: 999; align-items: flex-start;
  }
  .nav-links.mobile-open a { font-size: 22px; }
  .nav-hamburger.open span:nth-child(1){ transform: rotate(45deg) translate(5px,5px); }
  .nav-hamburger.open span:nth-child(2){ opacity: 0; }
  .nav-hamburger.open span:nth-child(3){ transform: rotate(-45deg) translate(5px,-5px); }
}

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #000;
  padding: 14px 32px; border-radius: 40px;
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  transition: var(--transition); font-family: var(--font-body);
  box-shadow: var(--shadow-accent); letter-spacing: 0.3px;
}
.btn-primary:hover {
  background: var(--accent-bright); transform: translateY(-2px);
  box-shadow: var(--glow-lg), 0 8px 32px rgba(0,0,0,0.4);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--accent);
  padding: 14px 32px; border-radius: 40px;
  font-size: 14px; font-weight: 600;
  border: 1px solid var(--accent-border); cursor: pointer;
  transition: var(--transition); font-family: var(--font-body);
}
.btn-secondary:hover {
  background: var(--accent-subtle); color: var(--accent-bright);
  border-color: var(--accent-bright);
  transform: translateY(-2px); box-shadow: var(--glow-md);
}
.btn-outline {
  width: 100%; padding: 13px; border: 1px solid var(--border);
  background: transparent; color: var(--text-primary);
  border-radius: 40px; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: var(--transition); font-family: var(--font-body);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); box-shadow: var(--glow-sm); }
.btn-full {
  width: 100%; padding: 13px; background: var(--accent); color: #000;
  border: none; border-radius: 40px; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: var(--transition); font-family: var(--font-body);
  box-shadow: var(--shadow-accent);
}
.btn-full:hover { background: var(--accent-bright); box-shadow: var(--glow-lg); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 70% 45%, rgba(0,191,255,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 5% 80%, rgba(0,144,204,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 25% 30% at 90% 10%, rgba(0,191,255,0.03) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,191,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,191,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-subtle); border: 1px solid var(--border);
  padding: 6px 16px; border-radius: 40px; margin-bottom: 28px;
  box-shadow: var(--glow-sm);
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; box-shadow: var(--glow-sm); }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.5)} }
.hero-badge span { font-size: 12px; color: var(--accent); letter-spacing: 2px; font-weight: 600; }

.hero-title {
  font-family: var(--font-display) !important;
  font-size: clamp(54px, 7.5vw, 96px) !important;
  font-weight: 700 !important; line-height: 1.02 !important;
  letter-spacing: -1.5px !important; margin-bottom: 24px;
  color: #fff;
}
.hero-title em {
  font-style: italic !important; font-weight: 400 !important;
  color: var(--accent) !important; text-shadow: var(--glow-md);
}
.hero-title strong {
  font-weight: 900 !important; display: block !important;
  background: linear-gradient(135deg, #FFFFFF 0%, #A0E4FF 50%, #00BFFF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0,191,255,0.3));
}
.hero-sub {
  font-size: 17px !important; line-height: 1.8 !important;
  color: var(--text-secondary) !important; max-width: 540px; margin-bottom: 12px;
}
.hero-tagline {
  font-family: var(--font-display) !important; font-style: italic !important;
  font-size: 18px !important; color: var(--accent) !important;
  margin-bottom: 44px; text-shadow: var(--glow-sm);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-right-card {
  background: var(--bg-card) !important; border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important; padding: 28px !important;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(0,191,255,0.1) !important;
}
.hero-grid-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center; }
.hero-inline-stats { display: flex; gap: 0; margin-top: 48px; flex-wrap: wrap; }
.hero-inline-stats > div { padding: 0 28px; border-right: 1px solid var(--border-subtle); }
.hero-inline-stats > div:first-child { padding-left: 0; }
.hero-inline-stats > div:last-child { border-right: none; }
@media(max-width:1024px){ .hero-grid-layout{ grid-template-columns:1fr; } .hero-right-card{ display:none !important; } }

/* ══════════════════════════════════
   SECTIONS
══════════════════════════════════ */
section { padding: 100px 0; }
.section-label {
  font-size: 11px; font-weight: 700; color: var(--accent);
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
  text-shadow: var(--glow-sm);
}
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--accent); flex-shrink: 0; box-shadow: var(--glow-sm); }
.section-label::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--accent-border), transparent); max-width: 80px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px,5vw,58px); font-weight: 700;
  line-height: 1.08; margin-bottom: 16px; letter-spacing: -0.5px;
  color: #fff;
}
.section-title strong { font-weight: 900; }
.section-title em { font-style: italic; font-weight: 400; color: var(--accent); text-shadow: var(--glow-sm); }
.section-sub { font-size: 16px; color: var(--text-secondary); max-width: 560px; line-height: 1.75; }
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-label::before,
.section-header.centered .section-label::after { display: none; }

/* BG VARIANTS */
.services-bg { background: var(--bg-secondary); }
.pricing-bg  { background: var(--bg-secondary); }
.process-bg  { background: var(--bg-secondary); }

/* ══════════════════════════════════
   SERVICE CARDS — Glow on hover
══════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 40px 36px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
  box-shadow: 0 0 8px rgba(0,191,255,0.6);
}
.service-card::after {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,191,255,0.06), transparent);
  transition: opacity 0.4s ease; pointer-events: none;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), var(--glow-md), inset 0 0 0 1px rgba(0,191,255,0.1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; background: var(--accent-subtle);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 28px;
  transition: var(--transition);
}
.service-card:hover .service-icon { border-color: var(--accent); box-shadow: var(--glow-sm); }
.service-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.service-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 24px; }
.service-features { list-style: none; }
.service-features li {
  font-size: 13px; color: var(--text-secondary); padding: 7px 0;
  border-bottom: 1px solid var(--border-subtle); display: flex; align-items: center; gap: 8px;
}
.service-features li:last-child { border: none; }
.service-features li::before { content: '✦'; color: var(--accent); font-size: 8px; flex-shrink: 0; }

/* ══════════════════════════════════
   PORTFOLIO — Glow on hover
══════════════════════════════════ */
.portfolio-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  background: transparent; border: 1px solid var(--border-subtle);
  color: var(--text-secondary); padding: 8px 20px; border-radius: 40px;
  font-size: 13px; cursor: pointer; transition: var(--transition); font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent); border-color: var(--accent);
  color: #000; font-weight: 700; box-shadow: var(--shadow-accent);
}
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.portfolio-item {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition); cursor: pointer;
}
.portfolio-item:hover {
  border-color: var(--accent); transform: translateY(-5px);
  box-shadow: var(--shadow-card), var(--glow-md);
}
.portfolio-thumb {
  aspect-ratio: 16/10; background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.portfolio-thumb-icon { font-size: 40px; opacity: 0.35; transition: var(--transition); }
.portfolio-item:hover .portfolio-thumb-icon { opacity: 0.6; transform: scale(1.1); }
.portfolio-thumb-overlay {
  position: absolute; inset: 0; background: rgba(0,191,255,0.12);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.portfolio-item:hover .portfolio-thumb-overlay { opacity: 1; }
.portfolio-info { padding: 20px 24px; }
.portfolio-cat { font-size: 11px; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; font-weight: 700; }
.portfolio-name { font-family: var(--font-display); font-size: 19px; font-weight: 600; line-height: 1.3; color: #fff; }

/* ══════════════════════════════════
   PRICING — Featured glow
══════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 40px 36px; position: relative;
  transition: var(--transition);
}
.pricing-card:hover { border-color: var(--border); box-shadow: var(--shadow-card), var(--glow-sm); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(0,191,255,0.08) 0%, var(--bg-card) 100%);
  box-shadow: var(--shadow-accent), var(--glow-md);
}
.pricing-card.featured:hover { box-shadow: var(--shadow-accent), var(--glow-lg); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000;
  padding: 4px 18px; border-radius: 20px; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; white-space: nowrap; box-shadow: var(--shadow-accent);
}
.pricing-name { font-size: 11px; color: var(--accent); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.pricing-amount {
  font-family: var(--font-display); font-size: 58px; font-weight: 900;
  line-height: 1; margin-bottom: 4px; color: #fff;
  text-shadow: 0 0 30px rgba(0,191,255,0.3);
}
.pricing-amount span { font-size: 18px; font-weight: 400; color: var(--text-secondary); text-shadow: none; }
.pricing-period { font-size: 13px; color: var(--text-secondary); margin-bottom: 32px; }
.pricing-features { list-style: none; margin-bottom: 36px; }
.pricing-features li {
  font-size: 14px; color: var(--text-secondary); padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle); display: flex; align-items: center; gap: 10px;
}
.pricing-features li:last-child { border: none; }
.pricing-features li .check { color: var(--accent); font-weight: 700; text-shadow: var(--glow-sm); }
.pricing-features li .cross { color: var(--text-muted); }

/* ══════════════════════════════════
   TESTIMONIALS — Glow on hover
══════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 36px; transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-card), var(--glow-sm);
  transform: translateY(-4px);
}
.testimonial-stars { color: #FFC200; font-size: 15px; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-text {
  font-family: var(--font-display); font-size: 17px; font-style: italic;
  color: #fff; line-height: 1.65; margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-subtle); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--accent); flex-shrink: 0; transition: var(--transition);
}
.testimonial-card:hover .testimonial-avatar { border-color: var(--accent); box-shadow: var(--glow-sm); }
.testimonial-name { font-size: 14px; font-weight: 600; color: #fff; }
.testimonial-role { font-size: 12px; color: var(--text-secondary); }

/* ══════════════════════════════════
   PROCESS — Glow on step hover
══════════════════════════════════ */
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 31px; left: 12.5%; right: 12.5%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 0; box-shadow: var(--glow-sm);
}
.process-item { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.process-num {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--bg-primary); border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--accent);
  box-shadow: var(--glow-sm); transition: var(--transition);
}
.process-item:hover .process-num {
  background: var(--accent); color: #000; font-weight: 900;
  box-shadow: var(--glow-lg); transform: scale(1.1);
}
.process-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.process-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ══════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════ */
.page-hero {
  padding: 140px 0 80px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(0,191,255,0.06) 0%, transparent 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,191,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,191,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--accent); }

/* ══════════════════════════════════
   CTA SECTION
══════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, rgba(0,191,255,0.1), var(--bg-secondary), rgba(0,191,255,0.06));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  text-align: center; padding: 100px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 75% at 50% 50%, rgba(0,191,255,0.08), transparent);
}
.cta-title {
  font-family: var(--font-display); font-size: clamp(38px,5vw,62px);
  font-weight: 700; margin-bottom: 16px; position: relative; letter-spacing: -0.5px; color: #fff;
}
.cta-title strong { font-weight: 900; color: var(--accent); text-shadow: var(--glow-md); }
.cta-sub { font-size: 17px; color: var(--text-secondary); margin-bottom: 48px; position: relative; }

/* ══════════════════════════════════
   ABOUT PAGE
══════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: center; }
.about-photo {
  aspect-ratio: 3/4; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: var(--accent); opacity: 0.3; position: relative; overflow: hidden;
}
.about-photo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--accent-subtle), transparent); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: var(--transition);
}
.team-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-card), var(--glow-sm); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent-subtle); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--accent);
  transition: var(--transition);
}
.team-card:hover .team-avatar { border-color: var(--accent); box-shadow: var(--glow-md); }
.team-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 4px; color: #fff; }
.team-role { font-size: 11px; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.value-item {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 28px; transition: var(--transition);
}
.value-item:hover { border-color: var(--accent); box-shadow: var(--glow-sm); }
.value-icon { font-size: 28px; margin-bottom: 12px; }
.value-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.value-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* TIMELINE */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 1px; background: var(--border); box-shadow: var(--glow-sm); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: ''; position: absolute; left: -28px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); box-shadow: var(--glow-md);
}
.timeline-year { font-size: 11px; color: var(--accent); letter-spacing: 2px; margin-bottom: 4px; font-weight: 700; text-shadow: var(--glow-sm); }
.timeline-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.timeline-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 0; border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.contact-info-item:hover { padding-left: 4px; }
.contact-info-item:last-child { border: none; }
.contact-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--accent-subtle); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
  transition: var(--transition);
}
.contact-info-item:hover .contact-icon { border-color: var(--accent); box-shadow: var(--glow-sm); }
.contact-label { font-size: 10px; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; font-weight: 700; }
.contact-val { font-size: 15px; color: #fff; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: 48px 40px; }
.form-group { margin-bottom: 24px; }
.form-label { font-size: 11px; color: var(--text-secondary); letter-spacing: 1px; display: block; margin-bottom: 8px; font-weight: 600; text-transform: uppercase; }
.form-input {
  width: 100%; background: var(--bg-secondary); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); padding: 13px 18px;
  color: #fff; font-size: 14px; font-family: var(--font-body);
  transition: var(--transition); outline: none;
}
.form-input:focus { border-color: var(--accent); background: var(--bg-primary); box-shadow: var(--glow-sm); }
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ══════════════════════════════════
   BLOG
══════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.blog-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow-card), var(--glow-sm); }
.blog-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card)); display: flex; align-items: center; justify-content: center; font-size: 36px; opacity: 0.45; }
.blog-content { padding: 28px; }
.blog-cat { font-size: 11px; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; font-weight: 700; }
.blog-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; color: #fff; }
.blog-title a:hover { color: var(--accent); text-shadow: var(--glow-sm); }
.blog-excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; }
.blog-date { font-size: 12px; color: var(--text-muted); }
.blog-read { font-size: 12px; color: var(--accent); font-weight: 600; }
.blog-featured {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 0;
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 48px; transition: var(--transition);
}
.blog-featured:hover { border-color: var(--accent); box-shadow: var(--shadow-card), var(--glow-sm); }
.blog-featured-thumb { background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary)); display: flex; align-items: center; justify-content: center; font-size: 80px; }
.blog-featured-content { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.blog-categories { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.cat-btn {
  background: transparent; border: 1px solid var(--border-subtle);
  color: var(--text-secondary); padding: 7px 18px; border-radius: 40px;
  font-size: 12px; cursor: pointer; transition: var(--transition); font-family: var(--font-body); font-weight: 500;
}
.cat-btn:hover, .cat-btn.active { background: var(--accent); border-color: var(--accent); color: #000; font-weight: 700; box-shadow: var(--shadow-accent); }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-subtle); padding: 24px 0; transition: var(--transition); }
.faq-item:hover { border-bottom-color: var(--border); }
.faq-question {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: #fff;
}
.faq-question:hover { color: var(--accent); }
.faq-icon { color: var(--accent); font-size: 22px; flex-shrink: 0; text-shadow: var(--glow-sm); }
.faq-answer {
  font-size: 14px; color: var(--text-secondary); line-height: 1.75;
  max-height: 0; overflow: hidden; display: block;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 200px; padding-top: 12px; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-logo { margin-bottom: 20px; }
.footer-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.75; max-width: 300px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; transition: var(--transition);
  font-family: var(--font-display);
}
.footer-social:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: var(--glow-sm); }
.footer-heading { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; font-weight: 700; text-shadow: var(--glow-sm); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: var(--text-secondary); }
.footer-links a:hover { color: var(--accent); text-shadow: var(--glow-sm); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle); padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--text-secondary); }

/* ══════════════════════════════════
   UTILITY / COMPONENTS
══════════════════════════════════ */
.tag-badge {
  display: inline-block; background: var(--accent-subtle); border: 1px solid var(--accent-border);
  color: var(--accent); font-size: 11px; padding: 3px 10px; border-radius: 20px; font-weight: 700;
}
.num-highlight { font-family: var(--font-display); font-size: 1.1em; font-weight: 700; color: var(--accent); text-shadow: var(--glow-sm); }
.glow-box { transition: box-shadow 0.3s, border-color 0.3s; }
.glow-box:hover { box-shadow: 0 0 0 1px var(--accent), var(--glow-md); border-color: var(--accent) !important; }
.tilt-card { transition: transform 0.15s ease, box-shadow 0.3s; }
.hover-line { position: relative; display: inline-block; }
.hover-line::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.4s; box-shadow: var(--glow-sm); }
.hover-line:hover::after { width: 100%; }
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); animation: glowLine 3s ease-in-out infinite; }
@keyframes glowLine { 0%,100%{opacity:0.2;box-shadow:none} 50%{opacity:1;box-shadow:var(--glow-sm)} }

/* RESULT CARDS */
.result-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 10px; transition: var(--transition);
}
.result-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-card), var(--glow-sm); }
.result-num {
  font-family: var(--font-display); font-size: clamp(44px,5vw,58px); font-weight: 900; line-height: 1;
  color: var(--accent); text-shadow: var(--glow-md);
}
.result-label { font-size: 14px; color: #fff; font-weight: 600; }
.result-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

/* WHY GRID */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; border: 1px solid var(--border-subtle); border-radius: var(--radius); overflow: hidden; }
.why-item { padding: 36px 32px; background: var(--bg-card); border-right: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); transition: all 0.3s; }
.why-item:hover { background: var(--bg-card-hover); border-color: var(--border) !important; box-shadow: inset 0 0 30px rgba(0,191,255,0.04); }
.why-item:nth-child(3n){ border-right: none; }
.why-item:nth-last-child(-n+3){ border-bottom: none; }
.why-num { font-family: var(--font-display); font-size: 52px; font-weight: 900; line-height: 1; margin-bottom: 12px; color: var(--accent); opacity: 0.25; transition: opacity 0.3s; }
.why-item:hover .why-num { opacity: 0.5; text-shadow: var(--glow-sm); }
.why-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.why-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* FEATURED PROJECT */
.featured-project {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
  padding: 56px; background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius); margin-bottom: 24px; transition: var(--transition);
}
.featured-project:hover { border-color: var(--accent); box-shadow: var(--shadow-card), var(--glow-sm); }
.featured-project .proj-thumb {
  aspect-ratio: 16/10; background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-size: 72px; position: relative; overflow: hidden;
}
.featured-project .proj-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,191,255,0.08), transparent); }

/* CLIENTS */
.clients-logo { display: flex; align-items: center; justify-content: center; height: 48px; padding: 0 24px; font-family: var(--font-display); font-size: 16px; color: var(--text-muted); font-weight: 600; transition: var(--transition); }
.clients-logo:hover { color: var(--accent); text-shadow: var(--glow-sm); }

/* MARQUEE */
.marquee-wrap { overflow: hidden; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); padding: 14px 0; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 22s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.marquee-item { font-family: var(--font-display); font-size: 17px; color: var(--text-muted); white-space: nowrap; display: flex; align-items: center; gap: 16px; font-style: italic; }
.marquee-item span { color: var(--accent); font-style: normal; text-shadow: var(--glow-sm); }

/* TOOLS ROW */
.tools-row { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; justify-content: center; }
.tool-item { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; transition: var(--transition); }
.tool-item:hover { color: var(--accent); text-shadow: var(--glow-sm); }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4); transition: var(--transition);
  animation: floatBtn 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.6); }
@keyframes floatBtn { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media(max-width:1024px){
  .services-grid,.pricing-grid,.testimonials-grid{ grid-template-columns: repeat(2,1fr); }
  .portfolio-grid{ grid-template-columns: repeat(2,1fr); }
  .about-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .process-grid{ grid-template-columns: repeat(2,1fr); gap: 40px; }
  .process-grid::before{ display: none; }
  .featured-project{ grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .why-grid{ grid-template-columns: 1fr 1fr; }
  .blog-featured{ grid-template-columns: 1fr; }
  .blog-featured-content{ padding: 28px; }
}
@media(max-width:768px){
  section{ padding: 64px 0; }
  .hero{ padding: 100px 0 64px; }
  .services-grid,.pricing-grid,.testimonials-grid,.portfolio-grid,.blog-grid,.team-grid{ grid-template-columns: 1fr; }
  .process-grid,.values-grid,.why-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .hero-inline-stats{ gap: 16px; }
  .hero-inline-stats > div{ border-right: none; padding: 0; }
}

/* ══════════════════════════════════
   MOBILE RESPONSIVE — Complete Fix
   Tested for 320px to 768px screens
══════════════════════════════════ */

/* ── Small screens base fixes ── */
@media(max-width:768px) {
  /* Global */
  .container, .container-wide { padding: 0 18px; }
  section { padding: 56px 0; }
  h1, .section-title { letter-spacing: -0.5px; }

  /* Navbar */
  .navbar { padding: 0 18px; height: 64px; }
  .nav-logo-name { font-size: 13px; }
  .nav-logo-tag { display: none; }
  .nav-logo-mark { font-size: 17px; }

  /* Hero */
  .hero { padding: 90px 0 60px; min-height: auto; }
  .hero-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .hero-right-card { display: none !important; }
  .hero-title { font-size: clamp(38px, 9vw, 56px) !important; letter-spacing: -1px !important; }
  .hero-sub { font-size: 15px !important; max-width: 100%; }
  .hero-tagline { font-size: 15px !important; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; padding: 13px 24px; }
  .hero-inline-stats {
    gap: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    margin-top: 32px !important;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .hero-inline-stats > div {
    padding: 16px 12px !important;
    border-right: 1px solid var(--border-subtle) !important;
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
  }
  .hero-inline-stats > div:nth-child(2) { border-right: none !important; }
  .hero-inline-stats > div:nth-child(3),
  .hero-inline-stats > div:nth-child(4) { border-bottom: none !important; }
  .hero-inline-stats > div:nth-child(4) { border-right: none !important; }

  /* Hero badge */
  .hero-badge { font-size: 10px; padding: 5px 12px; }
  .hero-badge span { letter-spacing: 1px; font-size: 10px; }

  /* Section headers */
  .section-title { font-size: clamp(28px, 7vw, 40px) !important; }
  .section-sub { font-size: 14px; }
  .section-label { font-size: 10px; letter-spacing: 3px; }
  .section-header { margin-bottom: 40px; }

  /* Marquee */
  .marquee-item { font-size: 14px; }

  /* Services grid */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 24px; }
  .service-title { font-size: 22px; }

  /* WOW section */
  .wow-headline { font-size: clamp(28px, 6vw, 40px); }
  .wow-stats-row { gap: 20px; }
  .wow-stat-circle { width: 90px; height: 90px; }
  .wow-stat-num { font-size: 20px !important; }
  .wow-stat-label { font-size: 11px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; gap: 14px; }
  .portfolio-filters { gap: 8px; }
  .filter-btn { padding: 6px 14px; font-size: 12px; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .why-item { padding: 24px 20px; }
  .why-item:nth-child(3n) { border-right: none; }
  .why-num { font-size: 40px; }
  .why-title { font-size: 18px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid::before { display: none; }
  .process-num { width: 52px; height: 52px; font-size: 18px; }
  .process-title { font-size: 18px; }

  /* Result cards */
  .result-card { padding: 24px; }
  .result-num { font-size: 42px !important; }

  /* Featured projects */
  .featured-project {
    grid-template-columns: 1fr !important;
    padding: 24px !important;
    gap: 24px !important;
  }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 24px; }
  .testimonial-text { font-size: 15px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-card { padding: 28px 24px; }
  .pricing-card.featured { margin-top: 16px; }
  .pricing-amount { font-size: 48px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-content { padding: 24px; }
  .blog-categories { gap: 8px; }
  .cat-btn { padding: 6px 14px; font-size: 11px; }

  /* Team page */
  .team-grid-10 { grid-template-columns: 1fr; gap: 16px; }
  .team-last-row { grid-template-columns: 1fr; max-width: 100%; }
  .member-card { padding: 28px 20px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { aspect-ratio: 2/1; font-size: 60px; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .team-card { padding: 20px 16px; }
  .team-avatar { width: 56px; height: 56px; font-size: 22px; }
  .team-name { font-size: 17px; }
  .values-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* CTA */
  .cta-title { font-size: clamp(28px, 7vw, 44px); }
  .cta-sub { font-size: 15px; }
  .cta-section > div > div { flex-direction: column; align-items: center; }
  .cta-section .btn-primary,
  .cta-section .btn-secondary { width: 100%; max-width: 280px; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-desc { max-width: 100%; }
  footer { padding: 52px 0 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Pricing addons grid */
  .pricing-addons-grid { grid-template-columns: 1fr 1fr !important; }

  /* Hire section */
  .hire-grid { grid-template-columns: 1fr !important; gap: 32px !important; }

  /* Tools grid */
  .tools-grid { grid-template-columns: repeat(2,1fr) !important; }

  /* Buttons global */
  .btn-primary, .btn-secondary { padding: 12px 22px; font-size: 13px; }

  /* Page hero */
  .page-hero { padding: 110px 0 56px; }
  .page-hero-content .section-title { font-size: clamp(30px, 7vw, 44px) !important; }

  /* WhatsApp float */
  .whatsapp-float { width: 48px; height: 48px; font-size: 20px; bottom: 20px; right: 16px; }
}

/* ── Very small phones (320px) ── */
@media(max-width:400px) {
  .hero-title { font-size: 34px !important; }
  .section-title { font-size: 26px !important; }
  .wow-stats-row { gap: 12px; }
  .wow-stat-circle { width: 76px; height: 76px; }
  .wow-stat-num { font-size: 17px !important; }
  .team-grid { grid-template-columns: 1fr; }
  .nav-logo-name { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-inline-stats { grid-template-columns: 1fr 1fr !important; }
}

/* ── Tablet (769px - 1024px) ── */
@media(min-width:769px) and (max-width:1024px) {
  .container { padding: 0 24px; }
  .navbar { padding: 0 28px; }
  .hero-title { font-size: clamp(44px, 6vw, 68px) !important; }
  .hero-grid-layout { grid-template-columns: 1fr !important; }
  .hero-right-card { display: none !important; }
  .hero-inline-stats { gap: 0 !important; }
  .services-grid { grid-template-columns: repeat(2,1fr); gap: 18px; }
  .services-grid .service-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); gap: 18px; }
  .pricing-grid .pricing-card.featured { grid-column: span 2; max-width: 460px; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid-10 { grid-template-columns: repeat(2,1fr); }
  .team-last-row { grid-template-columns: repeat(2,1fr); max-width: 100%; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .featured-project { grid-template-columns: 1fr !important; padding: 36px !important; }
  .wow-stats-row { gap: 28px; }
  .result-card { padding: 24px; }
}

/* ── Fix overflow issues ── */
@media(max-width:1200px) {
  .hero-grid-layout {
    grid-template-columns: 1fr 320px;
  }
}

