/* ============================================
   ORRJO Design System — Modern SaaS Aesthetic
   ============================================ */

/* @font-face declarations for Almarena (Licensed from MyFonts) */
@font-face {
  font-family: 'Almarena Display';
  src: url('fonts/AlmarenaDisplayBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Almarena';
  src: url('fonts/AlmarenaRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --pink: #ff2eeb;
  --pink-light: #ff6ef2;
  --pink-glow: rgba(255, 46, 235, 0.15);
  --pink-subtle: rgba(255, 46, 235, 0.06);
  --black: #0A0A0A;
  --black-soft: #111111;
  --dark: #1A1A2E;
  --gray-900: #1C1C1C;
  --gray-800: #2A2A2A;
  --gray-700: #3A3A3A;
  --gray-600: #555555;
  --gray-500: #777777;
  --gray-400: #999999;
  --gray-300: #CCCCCC;
  --gray-200: #E5E5E5;
  --gray-100: #F5F5F5;
  --gray-50: #FAFAFA;
  --white: #FFFFFF;

  /* Typography */
  --font-heading: 'Almarena Display', 'Almarena', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Almarena', 'Almarena Display', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: 120px;
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.1);
  --shadow-pink: 0 8px 32px rgba(255, 46, 235, 0.2);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.text-lg { font-size: 1.2rem; line-height: 1.7; }
.text-sm { font-size: 0.9rem; }
.text-xs { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }

/* ============================================
   Layout
   ============================================ */

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

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark p { color: var(--gray-400); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }

.section-gray {
  background: var(--gray-50);
}

.section-pink-subtle {
  background: var(--pink-subtle);
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition-med);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-logo-svg {
  height: 36px;
  width: auto;
}

.footer-logo-svg {
  height: 30px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-600);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--black);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  padding-top: 12px;
  display: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-inner {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
}

.nav-dropdown-inner a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  color: var(--gray-600);
}

.nav-dropdown-inner a:hover {
  background: var(--gray-50);
  color: var(--black);
}

.nav-dropdown-inner a::after { display: none; }

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  transition: var(--transition-fast);
}

.nav-cta:hover {
  background: var(--pink-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-pink);
}

.nav-cta::after { display: none !important; }

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

.btn-secondary {
  background: var(--black);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
  border-color: var(--pink);
  background: var(--pink);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--pink);
  padding: 14px 0;
}

.btn-ghost:hover {
  opacity: 0.8;
}

.btn-ghost svg {
  transition: var(--transition-fast);
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-white {
  background: var(--white);
  color: var(--black);
}

.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

/* ============================================
   Hero Sections
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-home {
  background: var(--black);
  color: var(--white);
}

.hero-home .hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 46, 235, 0.1);
  border: 1px solid rgba(255, 46, 235, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--pink-light);
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-stat p {
  font-size: 0.85rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Page Heroes (shorter) */
.hero-page {
  min-height: auto;
  padding: calc(72px + 80px) 0 80px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.hero-page h1 {
  margin-bottom: 16px;
}

.hero-page p {
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
}

/* Gradient orb decorations */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--pink);
  top: -200px;
  right: -150px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--pink);
  bottom: -100px;
  left: -100px;
  opacity: 0.15;
}

/* ============================================
   Section Headers
   ============================================ */

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
}

/* ============================================
   Cards
   ============================================ */

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition-med);
}

.card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-dark {
  background: var(--gray-900);
  border-color: var(--gray-800);
}

.card-dark:hover {
  border-color: var(--gray-700);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--pink-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--pink);
}

.card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 12px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  margin-bottom: 0;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================
   Service Cards (Image + Text)
   ============================================ */

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-med);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--pink);
}

.service-card-img {
  height: 240px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.service-card-body {
  padding: 32px;
}

.service-card-body h3 {
  margin-bottom: 12px;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--pink);
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ============================================
   Stats Bar
   ============================================ */

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 64px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--gray-500);
  font-weight: 400;
}

/* ============================================
   Team Grid
   ============================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 24px;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--gray-100);
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  filter: grayscale(100%);
}

.team-member:hover .team-photo img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.team-member h4 {
  font-size: 0.92rem;
  margin-bottom: 2px;
  font-weight: 700;
}

.team-member p {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ============================================
   Pricing Cards
   ============================================ */

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  transition: var(--transition-med);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--white);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 12px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.pricing-price {
  margin-bottom: 32px;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.03em;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-check {
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Currency Toggle */
.currency-toggle {
  display: inline-flex;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 4px;
}

.currency-btn {
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  background: transparent;
  color: var(--gray-500);
  font-family: var(--font-body);
}

.currency-btn.active {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.currency-btn:not(.active):hover {
  color: var(--black);
  background: var(--gray-200);
}

.pricing-poa {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}

.pricing-poa-sub {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ============================================
   Case Study Cards
   ============================================ */

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-med);
  text-decoration: none;
  display: block;
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--pink);
}

.case-card-img {
  height: 200px;
  background: var(--gray-100);
  overflow: hidden;
}

.case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card-body {
  padding: 28px;
}

.case-card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 8px;
}

.case-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--black);
}

.case-card-body p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ============================================
   Process / Steps
   ============================================ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  counter-reset: step;
}

.process-step {
  counter-increment: step;
  position: relative;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-size: 4rem;
  font-weight: 700;
  color: var(--pink-glow);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  color: rgba(255, 46, 235, 0.15);
}

.process-step h3 {
  margin-bottom: 12px;
}

/* ============================================
   Values / Feature List
   ============================================ */

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--pink-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
  background: var(--black);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--gray-400);
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
}

.cta-section .hero-orb-1 {
  top: -250px;
  right: -200px;
  opacity: 0.15;
}

/* ============================================
   Contact Forms
   ============================================ */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
}

.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23777777' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-glow);
}

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

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 0.92rem;
  color: var(--gray-400);
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--gray-400);
}

.footer-social a:hover {
  background: var(--pink);
  color: var(--white);
}

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

.footer-bottom p {
  color: var(--gray-600);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* ============================================
   Utilities
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-pink { color: var(--pink); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.gap-sm { gap: 16px; }
.gap-md { gap: 32px; }
.gap-lg { gap: 48px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

.img-rounded { border-radius: var(--radius-lg); overflow: hidden; }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

/* ============================================
   Animations
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Logo Marquee */
.logo-marquee {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.5;
  padding: 40px 0;
}

.logo-marquee img {
  height: 24px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition-fast);
}

.logo-marquee img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .grid-3, .case-grid, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 40px; }
  .stats-bar { gap: 48px; }
  .split { gap: 48px; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    gap: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .nav-links.active > li {
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-links.active > li:last-child {
    border-bottom: none;
  }

  .nav-links.active > li > a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
  }

  .nav-links.active > li > a::after {
    display: none;
  }

  /* Mobile dropdown: hidden by default, shown on tap */
  .nav-links.active .nav-dropdown-menu {
    display: none;
    position: static;
    padding-top: 0;
  }

  .nav-links.active .nav-dropdown.dropdown-open .nav-dropdown-menu {
    display: block;
  }

  .nav-links.active .nav-dropdown-inner {
    background: var(--gray-50);
    border: none;
    box-shadow: none;
    border-radius: var(--radius-sm);
    padding: 4px 0;
    margin-bottom: 8px;
    min-width: 0;
  }

  .nav-links.active .nav-dropdown-inner a {
    padding: 10px 20px;
    font-size: 0.92rem;
    color: var(--gray-600);
  }

  .nav-links.active .nav-dropdown-inner a:hover {
    background: var(--gray-100);
  }

  /* Chevron indicator for dropdowns */
  .nav-links.active .nav-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links.active .nav-dropdown > a::before {
    content: '';
    display: block;
    order: 2;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--gray-400);
    border-bottom: 2px solid var(--gray-400);
    transform: rotate(45deg);
    transition: transform 0.2s;
    flex-shrink: 0;
  }

  .nav-links.active .nav-dropdown.dropdown-open > a::before {
    transform: rotate(-135deg);
  }

  /* Mobile CTA button */
  .nav-links.active .nav-cta {
    margin-top: 8px;
    text-align: center;
    display: block;
  }

  .grid-2, .grid-3, .grid-4, .split, .case-grid, .process-steps {
    grid-template-columns: 1fr;
  }
  .team-grid { grid-template-columns: repeat(3, 1fr); }

  .split-reverse { direction: ltr; }

  .hero-stats { flex-direction: column; gap: 24px; }
  .stats-bar { flex-direction: column; gap: 32px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .hero { min-height: auto; padding: calc(72px + 60px) 0 60px; }
  .hero-home { min-height: 100vh; }

  .pricing-card { padding: 32px 24px; }
  .card { padding: 28px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
