@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Sora:wght@300;400;500;600;700;800&family=Poiret+One&display=swap");

/* ══════════════════════════════════════════
   AIMLAKE PRODUCTION — Design System
   Matched to aimlake.com branding
   ══════════════════════════════════════════ */

:root {
  --bg: #050608;
  --panel: #0b0f14;
  --panel-soft: #0d131d;
  --line: #1c2739;
  --text: #e8edf7;
  --soft: #9ba8bf;
  --blue: #0f86ff;
  --blue-bright: #1490ff;
  --blue-glow: rgba(15, 134, 255, 0.25);
  --purple-glow: rgba(137, 79, 255, 0.3);
  --font-body: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-nav: "Poiret One", "Sora", sans-serif;
  --radius: 24px;
  --radius-lg: 30px;
  --anim-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --max-w: 1760px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(20, 144, 255, 0.2);
}

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 16% -8%, rgba(22, 94, 255, 0.19), transparent 40%),
    radial-gradient(circle at 84% 8%, rgba(15, 123, 255, 0.13), transparent 30%),
    var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.6;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  z-index: 0;
  background:
    repeating-linear-gradient(to right, transparent 0, transparent 62px, rgba(255,255,255,0.02) 63px, transparent 64px),
    repeating-linear-gradient(to bottom, transparent 0, transparent 62px, rgba(255,255,255,0.018) 63px, transparent 64px);
}

a { color: var(--blue); text-decoration: none; transition: color 180ms ease; }
a:hover { color: #20a2ff; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }

.container {
  width: min(var(--max-w), calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 1rem;
}


/* ══════════════════════════════════════════
   MEGA HEADER / NAVIGATION
   ══════════════════════════════════════════ */

.mega-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(var(--max-w), calc(100% - 2rem));
  margin: 0;
  padding: 0.6rem 0 0.5rem;
}

.mega-header,
.mega-header .nav-link,
.mega-header .nav-btn,
.mega-header .mobile-link {
  font-family: var(--font-nav);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-shell {
  border: 1px solid rgba(30, 40, 58, 0.85);
  border-radius: var(--radius-lg);
  min-height: 80px;
  padding: 0.55rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background:
    radial-gradient(circle at 50% 92%, rgba(18, 109, 222, 0.24), transparent 36%),
    repeating-linear-gradient(to right, transparent 0, transparent 60px, rgba(255,255,255,0.017) 61px, transparent 62px),
    linear-gradient(165deg, rgba(17, 20, 26, 0.96), rgba(4, 6, 9, 0.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 20px 44px rgba(0,0,0,0.48);
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-shell::before,
.nav-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.nav-shell::before {
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(22,125,255,0.45), rgba(26,142,255,0.9), rgba(22,125,255,0.45));
}

.nav-shell::after {
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, rgba(137,79,255,0.2), rgba(175,102,255,0.6), rgba(137,79,255,0.2));
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  height: 48px;
  animation: logoFloat 4.4s ease-in-out infinite;
  filter: drop-shadow(0 0 14px rgba(7,123,255,0.2));
}

.brand-text {
  font-family: var(--font-nav);
  font-size: 1.4rem;
  font-weight: 700;
  color: #f0f5ff;
  margin-left: 0.6rem;
  letter-spacing: 0.04em;
}

.brand-text span {
  color: var(--blue-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.1rem;
  color: #d5deeb;
  text-decoration: none;
  font-size: 1.05rem;
  border-radius: 14px;
  transition: all 220ms ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(15, 134, 255, 0.12);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.55rem 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 140, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(34,45,64,0.7), 0 0 18px rgba(7,125,255,0.35);
  color: #f0f7ff;
  text-decoration: none;
  background: rgba(10, 13, 19, 0.9);
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 280ms ease;
}

.nav-cta:hover {
  border-color: rgba(20, 160, 255, 0.95);
  box-shadow: inset 0 0 0 1px rgba(34,45,64,0.7), 0 0 28px rgba(7,125,255,0.5);
  color: #fff;
}

.nav-cta .arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 1.1rem;
  background: linear-gradient(180deg, #13a2ff, #0b74f7);
  box-shadow: 0 10px 20px rgba(5,101,232,0.36);
}

.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 134, 255, 0.3);
  background: rgba(10, 13, 19, 0.7);
  color: #ccd6ea;
  font-size: 0.92rem;
  font-family: var(--font-nav);
  font-weight: 700;
  text-decoration: none;
  transition: all 220ms ease;
}

.call-pill:hover {
  border-color: var(--blue);
  color: #fff;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #d5deeb;
  border-radius: 2px;
  transition: all 300ms ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max-w), calc(100% - 2rem));
  z-index: 99;
  opacity: 0;
  pointer-events: none;
}

.mobile-menu.open {
  display: grid;
  opacity: 1;
  pointer-events: auto;
  animation: menuIn 320ms var(--anim-ease) forwards;
}

.mobile-menu-inner {
  border: 1px solid rgba(30, 40, 58, 0.85);
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, rgba(17, 20, 26, 0.98), rgba(4, 6, 9, 0.99));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-link {
  display: block;
  padding: 0.9rem 1rem;
  color: #d5deeb;
  text-decoration: none;
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 14px;
  transition: all 220ms ease;
}

.mobile-link:hover, .mobile-link.active {
  color: #fff;
  background: rgba(15, 134, 255, 0.12);
}


/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */

.hero {
  margin-top: 90px;
  padding: 0 0 2rem;
}

/* ── Homepage Hero (hero-section) ── */
.hero-section {
  position: relative;
  margin-top: 90px;
  min-height: min(55vw, 480px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #070a0e;
  width: min(var(--max-w), calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-pattern svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.1rem;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2rem);
  min-height: min(55vw, 480px);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ── Homepage Section Shell ── */
.section-shell {
  width: min(var(--max-w), calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 1rem;
}

.services-section,
.stats-section,
.process-section,
.areas-section,
.cta-section-home {
  padding: 3.5rem 0;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--soft);
  line-height: 1.7;
}

/* ── Homepage Service Cards ── */
.service-card-title {
  font-size: 1.5rem;
  color: #f0f5ff;
  margin-bottom: 0.4rem;
}

.service-card-desc {
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0.8rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-list li {
  color: #ccd6e8;
  font-size: 0.95rem;
  padding-left: 1.2rem;
  position: relative;
}

.service-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.hero-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: min(60vw, 520px);
  position: relative;
  overflow: hidden;
  background: #070a0e;
}

.hero-board::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3,6,10,0.16), rgba(2,4,8,0.84)),
    radial-gradient(circle at 50% 22%, rgba(13,117,255,0.24), transparent 44%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(100%) contrast(1.18) brightness(0.42);
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: min(60vw, 520px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 134, 255, 0.35);
  background: rgba(15, 134, 255, 0.08);
  color: var(--blue-bright);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.05;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--blue-bright);
  background: rgba(9, 13, 21, 0.72);
  padding: 0.7rem 1.5rem;
  border-radius: 12px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #ccd6e8;
  max-width: 1000px;
  font-weight: 400;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 140, 255, 0.72);
  box-shadow: 0 0 18px rgba(7,125,255,0.35);
  color: #f0f7ff;
  text-decoration: none;
  background: linear-gradient(180deg, #13a2ff, #0b74f7);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  transition: all 280ms ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(7,125,255,0.5);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 140, 255, 0.5);
  color: #d5deeb;
  text-decoration: none;
  background: rgba(10, 13, 19, 0.8);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 280ms ease;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: #fff;
  background: rgba(15, 134, 255, 0.1);
  transform: translateY(-2px);
}


/* ══════════════════════════════════════════
   PANELS / SECTIONS
   ══════════════════════════════════════════ */

.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 134, 255, 0.3);
  background: rgba(15, 134, 255, 0.06);
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #f0f5ff;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--soft);
  line-height: 1.7;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(165deg, rgba(14,17,24,0.93), rgba(8,11,16,0.93)),
    var(--panel-soft);
  position: relative;
  overflow: hidden;
  transition: transform 320ms var(--anim-ease), box-shadow 320ms var(--anim-ease), border-color 260ms ease;
}

.panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.panel::before {
  content: "";
  position: absolute;
  inset: -120% 20% auto -60%;
  height: 180%;
  background: linear-gradient(120deg, transparent, rgba(63,140,255,0.16), transparent);
  transform: rotate(12deg);
  opacity: 0;
  pointer-events: none;
}

.panel:hover::before {
  animation: surfaceSheen 1s ease-out;
}


/* ══════════════════════════════════════════
   SERVICE CARDS (Home page)
   ══════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  border: 1px solid rgba(15, 135, 255, 0.5);
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(9,13,20,0.98), rgba(8,10,14,0.98));
  box-shadow: inset 0 0 16px rgba(16,126,240,0.18), 0 8px 16px rgba(0,0,0,0.32);
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #f0f5ff;
}

.service-card p {
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.65;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 1rem;
  margin-top: auto;
}


/* ══════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  transition: transform 220ms ease;
}

.stat-item:hover {
  transform: scale(1.08);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--blue-bright);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  color: var(--soft);
  font-size: 1rem;
  font-weight: 500;
}


/* ══════════════════════════════════════════
   PORTFOLIO GRID (Photography / Videography)
   ══════════════════════════════════════════ */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.2rem;
}

.portfolio-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 380ms var(--anim-ease);
  background: var(--panel);
}

.portfolio-item:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(15, 134, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(15,134,255,0.15);
}

.portfolio-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--anim-ease), filter 400ms ease;
  filter: brightness(0.85);
}

.portfolio-item:hover .portfolio-thumb img {
  transform: scale(1.06);
  filter: brightness(1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,6,8,0.92));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 380ms ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h4 {
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--font-display);
  margin-bottom: 0.3rem;
}

.portfolio-overlay p {
  color: #ccd6e8;
  font-size: 0.9rem;
}

.portfolio-info {
  padding: 1.2rem 1.5rem;
}

.portfolio-info h4 {
  color: #f0f5ff;
  font-size: 1.15rem;
  font-family: var(--font-display);
  margin-bottom: 0.3rem;
}

.portfolio-info p {
  color: var(--soft);
  font-size: 0.92rem;
}

.portfolio-info .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.portfolio-info .tag {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 134, 255, 0.25);
  background: rgba(15, 134, 255, 0.06);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Featured (larger) portfolio items */
.portfolio-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.portfolio-item.featured .portfolio-thumb {
  aspect-ratio: auto;
  height: 100%;
  min-height: 400px;
}

/* Portfolio filter tabs */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--soft);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 220ms ease;
}

.filter-tab:hover, .filter-tab.active {
  border-color: var(--blue);
  color: #fff;
  background: rgba(15, 134, 255, 0.1);
}

.filter-tab.active {
  background: rgba(15, 134, 255, 0.18);
}


/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #ccd6e8;
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid var(--blue);
  background: var(--panel);
  display: grid;
  place-items: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  color: #f0f5ff;
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-role {
  color: var(--soft);
  font-size: 0.88rem;
}


/* ══════════════════════════════════════════
   AREAS WE SERVE (auto-scrolling marquee)
   ══════════════════════════════════════════ */

.areas-marquee-wrap {
  overflow: hidden;
  margin-top: 1.5rem;
  padding: 0.5rem 0;
}

.areas-marquee-track {
  display: flex;
  width: max-content;
  animation: areas-marquee 45s linear infinite;
}

.areas-marquee-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  padding-right: 0.75rem;
}

.areas-marquee-wrap:hover .areas-marquee-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .areas-marquee-track {
    animation: none;
  }
}

@keyframes areas-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.area-chip {
  padding: 0.6rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(14, 17, 24, 0.8);
  color: #d5deeb;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  transition: all 220ms ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.area-chip:hover {
  border-color: var(--blue);
  color: #fff;
  background: rgba(15, 134, 255, 0.08);
  transform: scale(1.08);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.8rem;
}

.areas-group {
  margin-bottom: 2rem;
}

.areas-group h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--blue-bright);
  margin-bottom: 1rem;
}


/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info-panel {
  padding: 2.5rem;
}

.contact-info-panel h2 {
  font-size: 2rem;
  color: #f0f5ff;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(15, 134, 255, 0.4);
  background: linear-gradient(180deg, rgba(9,13,20,0.98), rgba(8,10,14,0.98));
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-family: var(--font-body);
  color: #f0f5ff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-detail p, .contact-detail a {
  color: var(--soft);
  font-size: 0.95rem;
}

.contact-form-panel {
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  color: #d5deeb;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(8, 11, 16, 0.8);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15, 134, 255, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(180deg, #13a2ff, #0b74f7);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 280ms ease;
  box-shadow: 0 10px 30px rgba(5,101,232,0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(5,101,232,0.45);
}


/* ══════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  overflow: hidden;
  transition: all 380ms var(--anim-ease);
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 134, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.blog-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--anim-ease);
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 134, 255, 0.85);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-body {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--soft);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.blog-body h3 {
  font-size: 1.25rem;
  color: #f0f5ff;
  margin-bottom: 0.6rem;
  line-height: 1.35;
  font-family: var(--font-display);
}

.blog-body p {
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.95rem;
}

/* Blog post (full) */
.blog-post-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.blog-post-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #f0f5ff;
  margin-bottom: 1rem;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--soft);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.blog-post-content h2 {
  font-size: 1.8rem;
  color: #f0f5ff;
  margin: 2.5rem 0 1rem;
}

.blog-post-content h3 {
  font-size: 1.4rem;
  color: #dbe4f5;
  margin: 2rem 0 0.8rem;
}

.blog-post-content p {
  color: #ccd6e8;
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.blog-post-content ul, .blog-post-content ol {
  color: #ccd6e8;
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
}

.blog-post-content img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin: 2rem 0;
}

.blog-post-content blockquote {
  border-left: 3px solid var(--blue);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(15, 134, 255, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #d5deeb;
  font-style: italic;
}


/* ══════════════════════════════════════════
   PAGE HERO (Internal pages)
   ══════════════════════════════════════════ */

.page-hero {
  margin-top: 90px;
  padding: 2.5rem 0 2rem;
  text-align: center;
}

.page-hero .section-badge {
  margin-bottom: 1.2rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #f0f5ff;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--soft);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ══════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════ */

.cta-section {
  padding: 4rem 0;
}

.cta-panel {
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(15, 134, 255, 0.4);
  background:
    radial-gradient(circle at 50% 80%, rgba(15, 134, 255, 0.15), transparent 50%),
    linear-gradient(165deg, rgba(14,17,24,0.95), rgba(8,11,16,0.95));
}

.cta-panel h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #f0f5ff;
  margin-bottom: 1rem;
}

.cta-panel p {
  color: var(--soft);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-panel .hero-cta-row {
  justify-content: center;
}


/* ══════════════════════════════════════════
   PROCESS / HOW WE WORK
   ══════════════════════════════════════════ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  counter-reset: process;
}

.process-step {
  padding: 2rem;
  text-align: center;
  counter-increment: process;
}

.process-number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(15, 134, 255, 0.5);
  display: inline-grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-bright);
  background: linear-gradient(180deg, rgba(9,13,20,0.98), rgba(8,10,14,0.98));
  box-shadow: inset 0 0 16px rgba(16,126,240,0.18), 0 8px 16px rgba(0,0,0,0.32);
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.25rem;
  color: #f0f5ff;
  margin-bottom: 0.6rem;
}

.process-step p {
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */

.site-footer {
  width: 100%;
  margin: 1.2rem 0 1.4rem;
  padding: 0 max(1rem, env(safe-area-inset-right)) 0 max(1rem, env(safe-area-inset-left));
  padding-bottom: max(0, env(safe-area-inset-bottom));
}

.site-footer,
.site-footer h3,
.site-footer a,
.site-footer p {
  font-family: var(--font-nav);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-shell {
  border: 1px solid rgba(18, 103, 211, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 92%, rgba(18,109,222,0.24), transparent 36%),
    repeating-linear-gradient(to right, transparent 0, transparent 60px, rgba(255,255,255,0.017) 61px, transparent 62px),
    linear-gradient(165deg, rgba(17,20,26,0.96), rgba(4,6,9,0.98));
  box-shadow: 0 30px 54px rgba(0,0,0,0.46);
  padding: clamp(1.2rem, 3vw, 2.5rem);
  position: relative;
}

.footer-shell::before,
.footer-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.footer-shell::before {
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(22,125,255,0.45), rgba(26,142,255,0.9), rgba(22,125,255,0.45));
}

.footer-shell::after {
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, rgba(137,79,255,0.2), rgba(175,102,255,0.6), rgba(137,79,255,0.2));
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.6rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand img {
  width: 180px;
  height: auto;
}

.footer-tagline {
  color: #f0f5ff;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 48ch;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.4vw, 2.6rem);
}

.footer-col h3 {
  margin: 0 0 0.6rem;
  color: #0e96ff;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0;
  padding: 0.15rem 0;
  color: #d5deeb;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 180ms ease;
}

.footer-col a:hover { color: #20a2ff; }

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  border: 1px solid rgba(180,80,255,0.24);
  background: linear-gradient(145deg, rgba(14,18,24,0.94), rgba(11,14,19,0.96));
  box-shadow: inset 0 0 0 1px rgba(17,128,255,0.14), 0 8px 20px rgba(7,15,34,0.46);
  padding: 0;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #9ca9bf;
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}


/* ══════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════ */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(3, 5, 8, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(14, 17, 24, 0.9);
  color: #d5deeb;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 220ms ease;
}

.lightbox-close:hover {
  border-color: var(--blue);
  color: #fff;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  overflow: hidden;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}


/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  filter: blur(8px);
  will-change: transform, opacity, filter;
}

.reveal.in-view {
  animation: zoomFadeIn 760ms var(--anim-ease) forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes zoomFadeIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes slideFadeOut {
  from { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  to { opacity: 0; transform: translateY(-18px) scale(0.985); filter: blur(6px); }
}

@keyframes menuIn {
  from { opacity: 0; transform: translateY(-10px) scale(0.985); filter: blur(2px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes surfaceSheen {
  from { opacity: 0; transform: translateX(-45%) rotate(12deg); }
  20% { opacity: 1; }
  to { opacity: 0; transform: translateX(75%) rotate(12deg); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(15, 134, 255, 0.2); }
  50% { box-shadow: 0 0 40px rgba(15, 134, 255, 0.4); }
}

@keyframes counter-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stagger > * { --delay: calc(var(--i, 0) * 80ms); }


/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .call-pill { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .portfolio-item.featured {
    grid-column: span 1;
    grid-row: span 1;
  }

  .portfolio-item.featured .portfolio-thumb {
    min-height: auto;
    aspect-ratio: 4/3;
  }
}

@media (max-width: 768px) {
  .hero, .hero-section { margin-top: 80px; }
  .page-hero { margin-top: 80px; }

  .hero-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }

  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 1.2rem; }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
}

@media (max-width: 480px) {
  .mega-header { padding: 0.8rem 0 0.5rem; }
  .nav-shell { min-height: 64px; padding: 0.4rem 1rem; border-radius: 20px; }
  .brand-mark { height: 36px; }
  .brand-text { font-size: 1.1rem; }

  .hero-inner { padding: 1.2rem; }
  .section { padding: 2.5rem 0; }

  .process-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }

  .footer-shell { border-radius: 16px; padding: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
}
