/* =============================================
   AGRISTRUCT TECHNOLOGIES LTD — styles.css
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
  --primary:     #292C51;
  --secondary:   #3F51B5;
  --bg:          #F9F9FB;
  --text:        #000000;
  --accent:      #E5B24A;
  --white:       #ffffff;
  --muted:       #6B7280;
  --border:      #E2E4EC;
  --card-bg:     #ffffff;
  --shadow-sm:   0 2px 8px rgba(41,44,81,0.07);
  --shadow-md:   0 6px 24px rgba(41,44,81,0.12);
  --shadow-lg:   0 16px 48px rgba(41,44,81,0.18);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --container:   1200px;
  --section-gap: 100px;
  --nav-h:       72px;
  --transition:  all 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  color: var(--primary);
}

/* ===== SECTION UTILITIES ===== */
.section { padding: var(--section-gap) 0; position: relative; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-accent {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  font-weight: 700;
}
.btn-accent:hover {
  background: #d4a23f;
  border-color: #d4a23f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn.full-width { width: 100%; justify-content: center; }

/* ===== HEADER / NAVBAR ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(41, 44, 81, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

/* Keep footer pinned to viewport bottom while data-driven sections load. */
.site-footer {
  margin-top: auto;
}
.site-header.scrolled {
  box-shadow: var(--shadow-lg);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--white);
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 3px;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.nav-cta {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  padding: 8px 18px;
}
.nav-links a.nav-cta:hover { background: #d4a23f; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  background: var(--primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(63,81,181,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(229,178,74,0.12) 0%, transparent 55%);
  pointer-events: none;
  animation: hero-overlay-drift 12s ease-in-out infinite alternate;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  animation: hero-grid-pan 18s linear infinite;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,178,74,0.15);
  border: 1px solid rgba(229,178,74,0.35);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  max-width: 720px;
  margin-bottom: 24px;
  line-height: 1.1;
  animation: hero-headline-glow 4.6s ease-in-out infinite;
}
.hero-subheadline {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-actions .btn {
  animation: cta-breathe 3.4s ease-in-out infinite;
}
.hero-actions .btn:nth-child(2) {
  animation-delay: 0.9s;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: stat-float 5.2s ease-in-out infinite;
}
.stat-item:nth-child(2) { animation-delay: 0.8s; }
.stat-item:nth-child(3) { animation-delay: 1.6s; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-bob 1.5s infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ===== ABOUT ===== */
.about-section { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 420px;
  background: linear-gradient(135deg, var(--primary) 0%, #1a1d3a 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.about-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%; height: 100%;
}
.aig-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.aig-cell:hover { background: rgba(229,178,74,0.1); }
.aig-cell svg { width: 48px; height: 48px; color: rgba(255,255,255,0.4); }
.about-accent-box {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--accent);
  color: var(--primary);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-lg);
}
.about-accent-box span { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }
.about-accent-box strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; }
.about-text .section-label { margin-top: 0; }
.about-description { margin-bottom: 28px; }
.about-description p { color: var(--muted); line-height: 1.8; font-size: 1.02rem; }
.about-pillars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.pillar { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; font-weight: 500; }
.pillar-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ===== VISION & MISSION ===== */
.vm-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.vm-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(63,81,181,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(229,178,74,0.08) 0%, transparent 55%);
  pointer-events: none;
  animation: vm-bg-flow 16s ease-in-out infinite alternate;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.vm-card {
  background: linear-gradient(165deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 60%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.vm-card::before {
  content: '';
  position: absolute;
  inset: -120% -40%;
  background: conic-gradient(from 0deg, rgba(229,178,74,0) 0deg, rgba(229,178,74,0.28) 90deg, rgba(63,81,181,0.18) 160deg, rgba(229,178,74,0) 240deg, rgba(229,178,74,0) 360deg);
  animation: vm-sweep 7s linear infinite;
  z-index: -2;
}
.vm-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  background: linear-gradient(155deg, rgba(30,34,69,0.9), rgba(26,29,56,0.82));
  z-index: -1;
}
.vm-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}
.vm-grid .vm-card:nth-child(2)::before {
  animation-delay: -3.5s;
}
.vm-icon {
  width: 56px; height: 56px;
  background: rgba(229,178,74,0.15);
  border: 1px solid rgba(229,178,74,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.vm-icon svg { width: 26px; height: 26px; color: var(--accent); }
.vm-title {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.vm-text {
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  font-size: 1rem;
}

@keyframes vm-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes vm-bg-flow {
  0% { transform: translate3d(-1.5%, -1%, 0) scale(1); opacity: 0.9; }
  50% { transform: translate3d(1.2%, 1.8%, 0) scale(1.04); opacity: 1; }
  100% { transform: translate3d(-0.8%, 1%, 0) scale(1.02); opacity: 0.92; }
}

@keyframes hero-overlay-drift {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  50% { transform: translate3d(2%, 1.2%, 0) scale(1.03); }
  100% { transform: translate3d(-1%, 2%, 0) scale(1.01); }
}

@keyframes hero-grid-pan {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(50px, 50px, 0); }
}

@keyframes hero-headline-glow {
  0%, 100% { text-shadow: 0 0 0 rgba(229,178,74,0); }
  50% { text-shadow: 0 0 26px rgba(229,178,74,0.22); }
}

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

@keyframes stat-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes card-sheen {
  from { left: -40%; }
  to { left: 125%; }
}

/* ===== SERVICES ===== */
.services-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(63,81,181,0.14) 0%, rgba(63,81,181,0) 46%),
    radial-gradient(circle at 82% 76%, rgba(229,178,74,0.12) 0%, rgba(229,178,74,0) 44%),
    linear-gradient(180deg, #f6f8ff 0%, #edf2ff 50%, #f9f9fb 100%);
  overflow: hidden;
}
.services-section::before,
.services-section::after {
  content: '';
  position: absolute;
  inset: -18% -12%;
  pointer-events: none;
  z-index: 0;
}
.services-section::before {
  background:
    radial-gradient(circle at 20% 30%, rgba(63,81,181,0.2) 0%, rgba(63,81,181,0) 40%),
    radial-gradient(circle at 74% 24%, rgba(229,178,74,0.2) 0%, rgba(229,178,74,0) 34%),
    radial-gradient(circle at 58% 78%, rgba(41,44,81,0.14) 0%, rgba(41,44,81,0) 46%);
  filter: blur(30px);
  opacity: 0.58;
  transform: scale(1.02);
  animation: services-aurora-shift 14s cubic-bezier(0.4,0.1,0.2,1) infinite alternate;
}
.services-section::after {
  background: conic-gradient(from 180deg at 70% 45%, rgba(63,81,181,0.12) 0deg, rgba(63,81,181,0) 65deg, rgba(229,178,74,0.15) 140deg, rgba(229,178,74,0) 220deg, rgba(63,81,181,0.1) 360deg);
  opacity: 0.52;
  transform: translate3d(0, 0, 0) rotate(0deg);
  animation: services-conic-rotate 18s linear infinite;
}
.services-section > .container {
  position: relative;
  z-index: 1;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  position: relative;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.services-grid::before {
  content: '';
  position: absolute;
  inset: -18% -8%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(112deg, rgba(255,255,255,0) 26%, rgba(255,255,255,0.44) 50%, rgba(255,255,255,0) 74%);
  transform: translateX(-72%);
  opacity: 0.34;
  animation: services-beam-scan 7s cubic-bezier(0.4,0.08,0.2,1) infinite;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(63,81,181,0.16);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transform-origin: 50% 60%;
  transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
  transition: transform 0.7s cubic-bezier(0.22,0.61,0.17,1), box-shadow 0.7s cubic-bezier(0.22,0.61,0.17,1), border-color 0.7s cubic-bezier(0.22,0.61,0.17,1), filter 0.7s cubic-bezier(0.22,0.61,0.17,1);
  box-shadow: 0 14px 34px rgba(41,44,81,0.12);
  animation: services-card-idle 12s cubic-bezier(0.45,0.05,0.2,1) infinite;
  animation-delay: calc(var(--service-i, 0) * 0.65s);
}
.service-card::after {
  content: '';
  position: absolute;
  top: -170%;
  left: -36%;
  width: 34%;
  height: 340%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.74) 54%, rgba(255,255,255,0) 100%);
  transform: rotate(14deg);
  opacity: 0.18;
  pointer-events: none;
  animation: services-sheen-loop 4.8s linear infinite;
  animation-delay: calc(var(--service-i, 0) * 0.7s);
}
.service-image {
  width: calc(100% + 64px);
  margin: -36px -32px 20px;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f4f6fb;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  transition: transform 0.6s cubic-bezier(0.2,0.65,0.2,1), filter 0.6s cubic-bezier(0.2,0.65,0.2,1);
  filter: saturate(0.95) contrast(1.02);
  animation: services-image-drift 11s cubic-bezier(0.45,0.05,0.2,1) infinite;
  animation-delay: calc(var(--service-i, 0) * 0.6s);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(136deg, rgba(63,81,181,0.12) 0%, rgba(63,81,181,0) 48%, rgba(229,178,74,0.16) 100%);
  opacity: 0.48;
  transform: translateY(20%);
  transition: opacity 0.7s cubic-bezier(0.22,0.61,0.17,1), transform 0.7s cubic-bezier(0.22,0.61,0.17,1);
}
.service-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 22px 46px rgba(41,44,81,0.22);
  transform: translate3d(0, -8px, 0) rotateX(2.8deg) rotateY(-2deg);
}
.service-card:hover::before {
  opacity: 0.75;
  transform: translateY(0%);
}
.service-card:hover::after {
  opacity: 0.55;
}
.service-card:hover .service-image img {
  transform: scale(1.12);
  filter: saturate(1.12) contrast(1.06);
}
.service-card.is-spotlight {
  border-color: rgba(229,178,74,0.74);
  box-shadow: 0 24px 54px rgba(41,44,81,0.28), 0 0 0 1px rgba(229,178,74,0.34);
  transform: translate3d(0, -10px, 0) rotateX(3.2deg) rotateY(-2.2deg);
  filter: brightness(1.03);
  animation-play-state: paused;
}
.service-card.is-trail {
  border-color: rgba(63,81,181,0.32);
  box-shadow: 0 18px 40px rgba(41,44,81,0.2);
  transform: translate3d(0, -5px, 0) rotateX(1.4deg) rotateY(-1deg);
}
.service-card.is-spotlight::before {
  opacity: 0.92;
  transform: translateY(0%);
}
.service-card.is-spotlight::after {
  opacity: 0.75;
  animation: services-sheen-loop 2.1s linear infinite;
}
.service-card.is-spotlight .service-image img {
  transform: scale(1.16);
  filter: saturate(1.16) contrast(1.06);
}

.services-section.in-view .service-card {
  animation-duration: 9.4s;
}
.services-section.in-view .service-card.is-spotlight {
  animation: services-spotlight-pop 1.2s cubic-bezier(0.2,0.75,0.2,1) 1;
}
.service-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(41,44,81,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}
.service-icon svg { width: 26px; height: 26px; }
.service-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.services-section.in-view .section-header {
  animation: services-title-surge 0.9s cubic-bezier(0.2,0.8,0.2,1) 1;
}

@keyframes services-aurora-shift {
  0% { transform: translate3d(-1.6%, -1.4%, 0) scale(1.01); opacity: 0.52; }
  50% { transform: translate3d(1.6%, 1.8%, 0) scale(1.08); opacity: 0.74; }
  100% { transform: translate3d(-1%, 1.2%, 0) scale(1.04); opacity: 0.58; }
}

@keyframes services-conic-rotate {
  from { transform: translate3d(0, 0, 0) rotate(0deg) scale(1.05); }
  to { transform: translate3d(0, 0, 0) rotate(360deg) scale(1.05); }
}

@keyframes services-beam-scan {
  0%, 20% { transform: translateX(-72%); opacity: 0; }
  34% { opacity: 0.42; }
  56% { transform: translateX(72%); opacity: 0.22; }
  100% { transform: translateX(72%); opacity: 0; }
}

@keyframes services-sheen-loop {
  0%, 18% { left: -42%; opacity: 0; }
  34% { opacity: 0.62; }
  54% { left: 122%; opacity: 0.2; }
  100% { left: 122%; opacity: 0; }
}

@keyframes services-title-surge {
  0% { transform: translateY(22px) scale(0.96); opacity: 0; }
  55% { transform: translateY(-3px) scale(1.015); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes services-card-idle {
  0%, 100% { transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg); }
  24% { transform: translate3d(0, -3px, 0) rotateX(1.2deg) rotateY(-0.9deg); }
  52% { transform: translate3d(0, -1px, 0) rotateX(-0.7deg) rotateY(0.8deg); }
  78% { transform: translate3d(0, -4px, 0) rotateX(1deg) rotateY(-0.6deg); }
}

@keyframes services-image-drift {
  0%, 100% { transform: scale(1.04); filter: saturate(0.95) contrast(1.02); }
  38% { transform: scale(1.1) translateX(1.2%); filter: saturate(1.07) contrast(1.04); }
  66% { transform: scale(1.08) translateX(-0.9%); filter: saturate(1.02) contrast(1.03); }
}

@keyframes services-spotlight-pop {
  0% { transform: translate3d(0, -2px, 0) rotateX(1deg) rotateY(-0.8deg); }
  55% { transform: translate3d(0, -12px, 0) rotateX(3.8deg) rotateY(-2.4deg); }
  100% { transform: translate3d(0, -10px, 0) rotateX(3.2deg) rotateY(-2.2deg); }
}

/* ===== PROCESS ===== */
.process-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(63,81,181,0.14) 0%, rgba(63,81,181,0) 42%),
    radial-gradient(circle at 80% 72%, rgba(229,178,74,0.14) 0%, rgba(229,178,74,0) 38%),
    linear-gradient(180deg, #edf2fc 0%, #f4f7fe 100%);
  overflow: hidden;
}
.process-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 18px 6px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  top: 106px;
  height: 2px;
  background: rgba(41,44,81,0.18);
  z-index: 0;
}
.process-grid::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 106px;
  height: 2px;
  width: min(18%, 240px);
  background: linear-gradient(90deg, rgba(63,81,181,0.1) 0%, rgba(63,81,181,0.95) 55%, rgba(229,178,74,0.95) 100%);
  box-shadow: 0 0 12px rgba(63,81,181,0.35);
  z-index: 1;
  animation: process-line-run 3.4s linear infinite;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 22px 26px;
  border: 1px solid rgba(63,81,181,0.2);
  transition: transform 0.5s cubic-bezier(0.2,0.7,0.2,1), border-color 0.5s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.5s cubic-bezier(0.2,0.7,0.2,1), background 0.5s cubic-bezier(0.2,0.7,0.2,1);
  position: relative;
  min-width: 236px;
  flex: 0 0 236px;
  z-index: 2;
  scroll-snap-align: start;
  box-shadow: 0 10px 24px rgba(41,44,81,0.1);
  transform: translateY(0);
}
.process-step:hover {
  box-shadow: 0 16px 34px rgba(41,44,81,0.16);
  border-color: var(--secondary);
  transform: translateY(-5px);
}
.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(41,44,81,0.72);
  line-height: 1;
  background: linear-gradient(160deg, rgba(41,44,81,0.08), rgba(63,81,181,0.05));
  border: 1px solid rgba(41,44,81,0.16);
  position: relative;
}
.step-number::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% + 11px);
  width: 28px;
  height: 2px;
  transform: translateY(-50%);
  background: rgba(41,44,81,0.25);
}
.step-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.84rem;
  color: rgba(41,44,81,0.68);
  line-height: 1.6;
}
.process-step:last-child .step-number::before {
  display: none;
}

.process-step.is-complete {
  border-color: rgba(63,81,181,0.42);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}
.process-step.is-complete .step-number {
  color: var(--white);
  background: linear-gradient(140deg, #31449f, #3F51B5);
  border-color: #31449f;
  box-shadow: 0 0 0 5px rgba(63,81,181,0.12);
}

.process-step.is-current {
  border-color: rgba(229,178,74,0.82);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  transform: translateY(-10px);
  box-shadow: 0 22px 48px rgba(41,44,81,0.24), 0 0 0 1px rgba(229,178,74,0.34);
}
.process-step.is-current .step-number {
  color: var(--primary);
  border-color: rgba(229,178,74,0.7);
  background: linear-gradient(140deg, rgba(229,178,74,0.92), rgba(252,231,170,0.98));
  box-shadow: 0 0 0 7px rgba(229,178,74,0.2);
  animation: process-node-pulse 1.6s ease-in-out infinite;
}
.process-step.is-current .step-number::before {
  background: linear-gradient(90deg, rgba(229,178,74,0.8), rgba(63,81,181,0.8));
}

.process-step.is-current .step-name {
  color: #1f2757;
}

.process-section.in-view .process-grid::after {
  animation-duration: 2.8s;
}

@keyframes process-line-run {
  0% { transform: translateX(0%); opacity: 0.3; }
  10% { opacity: 1; }
  100% { transform: translateX(540%); opacity: 0.2; }
}

@keyframes process-node-pulse {
  0%, 100% { box-shadow: 0 0 0 7px rgba(229,178,74,0.2); }
  50% { box-shadow: 0 0 0 12px rgba(229,178,74,0.08); }
}

/* ===== GOALS ===== */
.goals-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(63,81,181,0.28) 0%, rgba(63,81,181,0) 40%),
    radial-gradient(circle at 84% 68%, rgba(229,178,74,0.2) 0%, rgba(229,178,74,0) 40%),
    linear-gradient(170deg, #151a39 0%, #202859 45%, #18224d 100%);
  overflow: hidden;
}
.goals-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  animation: goals-grid-drift 18s linear infinite;
}
.goals-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.goals-arena {
  position: relative;
  padding: 28px 28px 30px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(140deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow: 0 24px 56px rgba(7,10,28,0.34);
  margin-bottom: 26px;
  overflow: hidden;
}
.goals-arena::before {
  content: '';
  position: absolute;
  inset: -30% -8% auto;
  height: 220px;
  background: radial-gradient(circle at 26% 20%, rgba(255,255,255,0.34), rgba(255,255,255,0));
  pointer-events: none;
}

.goals-scoreboard {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  background: rgba(8, 12, 35, 0.52);
}
.score-label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
}
.score-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffd98e;
  min-width: 54px;
  text-align: right;
}

.goals-live {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 2px 12px;
}
.goals-live-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
}
.goals-live-goal {
  font-size: 0.96rem;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
}

.goals-pitch {
  position: relative;
  min-height: 420px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(9,13,34,0.55), rgba(9,16,38,0.62));
  overflow: hidden;
  perspective: 1200px;
}

.pitch-depth {
  position: absolute;
  inset: 24px 24px 18px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(11, 32, 64, 0.66) 0%, rgba(26, 73, 44, 0.84) 76%, rgba(30, 92, 52, 0.95) 100%);
  clip-path: polygon(28% 0%, 72% 0%, 100% 100%, 0% 100%);
  transform: translateZ(0);
}
.pitch-lines {
  content: '';
  position: absolute;
  inset: 24px 24px 18px;
  border-radius: 10px;
  clip-path: polygon(28% 0%, 72% 0%, 100% 100%, 0% 100%);
  background-image:
    repeating-linear-gradient(180deg, rgba(255,255,255,0.12) 0px, rgba(255,255,255,0.12) 2px, transparent 2px, transparent 42px),
    radial-gradient(circle at 50% 89%, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0) 18%);
  opacity: 0.62;
}

.goal-post {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 37%;
  min-width: 220px;
  max-width: 360px;
  height: 34%;
  transform: translateX(-50%) perspective(700px) rotateX(6deg);
  z-index: 4;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(10,14,36,0.74), rgba(7,11,28,0.54));
  padding: 12px;
  overflow: hidden;
}
.goal-post-frame {
  position: absolute;
  inset: 12px;
  border: 4px solid rgba(255,255,255,0.92);
  border-bottom-width: 10px;
  border-radius: 4px;
}
.goal-post-net {
  position: absolute;
  inset: 16px 16px 18px;
  border-radius: 2px;
  background-image:
    linear-gradient(rgba(255,255,255,0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.25) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.66;
  transform-origin: center;
  animation: none;
}
.goal-post.score-flash .goal-post-net {
  animation: goal-net-hit 0.42s ease-out 1;
}

.goals-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.goal-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 18px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.35s cubic-bezier(0.2,0.74,0.2,1), border-color 0.35s cubic-bezier(0.2,0.74,0.2,1), background 0.35s cubic-bezier(0.2,0.74,0.2,1);
}
.goal-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(229,178,74,0.56);
  transform: translateY(-4px);
}
.goal-card.is-shooting {
  position: relative;
  z-index: 25;
  pointer-events: none;
  animation: goal-card-flight var(--shot-duration, 3.2s) cubic-bezier(0.2,0.84,0.2,1) forwards;
  will-change: transform, opacity;
  box-shadow: 0 16px 36px rgba(10,12,28,0.4);
}
.goal-card.is-queued-shot {
  opacity: 0;
}
.goal-card.goal-card-clone {
  position: fixed;
  margin: 0;
  z-index: 1400;
  pointer-events: none;
  opacity: 1;
}
.goal-num {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  color: #f7cf7a;
  min-width: 30px;
  padding-top: 1px;
}
.goal-name {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
}
.goal-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.68);
  margin-top: 6px;
  line-height: 1.6;
}

.goals-section.in-view .goals-arena {
  box-shadow: 0 28px 62px rgba(7,10,28,0.4);
}

@keyframes goals-grid-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(44px, 44px, 0); }
}

@keyframes goal-card-flight {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
  30% {
    transform: translate3d(calc(var(--shot-x, 0px) * 0.38), calc(var(--shot-y, 0px) * 0.35), 0) rotate(calc(var(--shot-rot, 0deg) * 0.6)) scale(0.82);
  }
  72% {
    transform: translate3d(calc(var(--shot-x, 0px) * 0.88), calc(var(--shot-y, 0px) * 0.9), 0) rotate(calc(var(--shot-rot, 0deg) * 1.02)) scale(0.34);
    opacity: 1;
  }
  100% {
    transform: translate3d(var(--shot-x, 0px), var(--shot-y, 0px), 0) rotate(calc(var(--shot-rot, 0deg) * 1.12)) scale(0.2);
    opacity: 0;
  }
}

@keyframes goal-net-hit {
  0% { transform: scale(1) skewX(0deg); opacity: 0.75; }
  45% { transform: scale(1.08) skewX(-4deg); opacity: 1; }
  100% { transform: scale(1) skewX(0deg); opacity: 0.66; }
}

/* ===== CTA BLOCK ===== */
.cta-block {
  background: var(--bg);
  padding: 60px 0;
}
.cta-inner {
  background: linear-gradient(135deg, var(--primary) 0%, #1e2245 60%, #3F51B5 100%);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(229,178,74,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-headline {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  position: relative;
}
.cta-text {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
  position: relative;
}

/* ===== PROJECTS ===== */
.projects-section { background: var(--bg); }
.projects-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.project-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f4f6fb;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.project-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
}
.project-img-placeholder svg { width: 48px; height: 48px; }
.project-img-placeholder span { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; }
.project-category-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 100px;
}
.project-body { padding: 24px; }
.project-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.project-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
.projects-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px;
  color: var(--muted);
}

/* ===== TEAM ===== */
.team-section { background: #F0F2F8; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--secondary);
}
.team-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary) 20%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-initials {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
}
.team-info { padding: 28px 24px; }
.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.team-role {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.team-bio {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-info-sub {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-item:hover { box-shadow: var(--shadow-sm); border-color: var(--secondary); }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(41,44,81,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}
.req { color: #e53e3e; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(63,81,181,0.1);
}
.form-group input.error,
.form-group textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}
.field-error {
  font-size: 0.78rem;
  color: #e53e3e;
  font-weight: 500;
  min-height: 16px;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-sm);
  padding: 16px;
  color: #166534;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}
.form-success svg { width: 20px; height: 20px; color: #16a34a; flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer { background: var(--primary); color: var(--white); }
.footer-top { padding: 72px 0 48px; }
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo { margin-bottom: 20px; }
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 28px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}
.footer-links-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.admin-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  transition: var(--transition);
  letter-spacing: 0.06em;
}
.admin-link:hover { color: var(--accent); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  max-width: 340px;
  border-left: 4px solid var(--accent);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { border-left-color: #e53e3e; }
.toast.success { border-left-color: #22c55e; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .service-card,
  .service-card:hover,
  .service-card.is-spotlight {
    transform: none !important;
  }

  .services-section::before,
  .services-section::after,
  .service-card::after {
    animation: none !important;
  }

  .process-step,
  .process-step:hover,
  .process-step.is-current,
  .process-step.is-complete {
    transform: none !important;
  }

  .process-grid::after,
  .process-step.is-current .step-number {
    animation: none !important;
  }

  .goals-bg,
  .goal-card.is-shooting,
  .goal-post-net {
    animation: none !important;
  }

  .goal-card.is-queued-shot {
    opacity: 1 !important;
  }
}

/* ===== EMPTY STATES ===== */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--muted);
  font-size: 0.95rem;
  grid-column: 1/-1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
  .logo { font-size: 1rem; }
  .nav-links { gap: 2px; }
  .nav-links a {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
  .nav-links a.nav-cta {
    padding: 7px 12px;
  }
}

@media (max-width: 1280px) {
  .about-accent-box {
    right: -10px;
    bottom: -10px;
    padding: 16px 20px;
  }
  .about-accent-box strong { font-size: 1.08rem; }
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: flex; justify-content: center; }
  .about-img-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-img-placeholder { max-width: 520px; }
  .aig-cell { padding: 30px; }
  .aig-cell svg { width: 42px; height: 42px; }
  .about-accent-box {
    position: static;
    margin-top: 14px;
    width: fit-content;
    max-width: 90%;
    text-align: center;
  }
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-step {
    min-width: 220px;
    flex-basis: 220px;
  }
  .goals-pitch {
    min-height: 390px;
  }
  .goal-post {
    width: 43%;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  :root { --section-gap: 72px; }
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: var(--shadow-lg);
    z-index: 1005;
  }
  .main-nav.open { right: 0; }
  .nav-links {
    flex-direction: column;
    gap: 6px;
    width: 100%;
    padding: 0 24px;
  }
  .nav-links a { display: block; text-align: left; }
  .vm-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats { gap: 28px; }
  .contact-form-wrap { padding: 28px 24px; }
  .cta-inner { padding: 44px 28px; }
  .about-img-placeholder {
    max-width: 420px;
    border-radius: 16px;
  }
  .about-icon-grid {
    gap: 8px;
    padding: 10px;
  }
  .process-grid {
    gap: 14px;
    padding-left: 2px;
  }
  .process-grid::before,
  .process-grid::after {
    top: 96px;
  }
  .process-step {
    min-width: 84vw;
    flex-basis: 84vw;
    padding: 22px 20px 24px;
  }
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 0.98rem;
  }
  .step-number::before {
    left: calc(100% + 8px);
    width: 20px;
  }
  .goals-arena {
    padding: 16px 14px 16px;
    border-radius: 16px;
  }
  .goals-scoreboard {
    width: 100%;
    justify-content: space-between;
  }
  .goals-live {
    width: 100%;
    justify-content: space-between;
    padding-bottom: 10px;
  }
  .goals-pitch {
    min-height: 330px;
  }
  .goal-post {
    width: 56%;
    min-width: 170px;
    height: 32%;
    top: 22px;
  }
  .goals-detail-grid {
    grid-template-columns: 1fr;
  }
  .aig-cell {
    padding: 18px;
    border-radius: 12px;
    border-color: rgba(255,255,255,0.12);
  }
  .aig-cell svg {
    width: 34px;
    height: 34px;
  }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .hero-actions { gap: 12px; }
}

@media (max-width: 480px) {
  :root { --section-gap: 56px; }
  .process-step {
    min-width: calc(100vw - 56px);
    flex-basis: calc(100vw - 56px);
  }
  .hero-stats { flex-direction: column; gap: 20px; }
  .about-img-placeholder { max-width: 320px; }
  .aig-cell { padding: 12px; }
  .aig-cell svg { width: 28px; height: 28px; }
  .about-accent-box { padding: 12px 16px; }
  .about-accent-box strong { font-size: 1rem; }
}

/* ===== NAV OVERLAY (mobile) ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}
.nav-overlay.show { display: block; }
