@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Space+Grotesk:wght@300..700&family=Outfit:wght@100..900&display=swap');

:root {
  /* Brand Colors */
  --primary: #7C3AED;      /* Electric violet */
  --secondary: #FF6B6B;    /* Hot coral */
  --accent-1: #A8E6CF;     /* Mint green */
  --accent-2: #FFF3BF;     /* Sunny yellow */
  
  /* Neutral Colors */
  --dark: #1A1A2E;         /* Charcoal */
  --light: #FEFCF3;        /* Cream white */
  
  /* Neo-brutalism Values */
  --border-thick: 3px solid var(--dark);
  --shadow-hard: 4px 4px 0px var(--dark);
  --shadow-hover: 8px 8px 0px var(--dark);
  --shadow-active: 0px 0px 0px var(--dark);
  
  --br: 0px; /* Border radius */

  /* Spacing */
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-xxl: 8rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
}

.accent-text {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: var(--secondary);
  display: inline-block;
  transform: rotate(-3deg);
}

a {
  color: var(--dark);
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* Neo-brutalism Components */
.btn {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0.875rem 2.25rem;
  background-color: var(--primary);
  color: var(--light);
  border: var(--border-thick);
  border-radius: var(--br);
  box-shadow: var(--shadow-hard);
  cursor: pointer;
  transition: transform 0.18s ease-in-out, box-shadow 0.18s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
}

.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hover);
  color: var(--light);
}

.btn:active {
  transform: translate(0, 0);
  box-shadow: var(--shadow-active);
}

.btn-secondary { background-color: var(--secondary); }
.btn-accent-1 { background-color: var(--accent-1); color: var(--dark); }
.btn-accent-1:hover { color: var(--dark); }
.btn-accent-2 { background-color: var(--accent-2); color: var(--dark); }
.btn-accent-2:hover { color: var(--dark); }
.btn-outline { background-color: var(--light); color: var(--dark); }
.btn-outline:hover { color: var(--dark); background-color: var(--accent-2); }
.btn-whatsapp { background-color: #25D366; color: #fff; }
.btn-whatsapp:hover { color: #fff; }

.btn-lg {
  font-size: 1.35rem;
  padding: 1.1rem 3rem;
}

/* Highlight CTA - pulsing border for high-priority CTAs */
.btn-cta-primary {
  background-color: var(--secondary);
  color: var(--light);
  position: relative;
}
.btn-cta-primary::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 3px dashed var(--dark);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-cta-primary:hover::after {
  opacity: 1;
}

.card {
  background-color: var(--light);
  border: var(--border-thick);
  box-shadow: var(--shadow-hard);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-hover);
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: bold;
  border: 2px solid var(--dark);
  background-color: var(--secondary);
  color: var(--light);
  text-transform: uppercase;
  font-size: 0.875rem;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
  grid-auto-rows: minmax(200px, auto);
}

.col-span-full { grid-column: span 12; }
.col-span-8 { grid-column: span 8; }
.col-span-7 { grid-column: span 7; }
.col-span-6 { grid-column: span 6; }
.col-span-5 { grid-column: span 5; }
.col-span-4 { grid-column: span 4; }

@media (max-width: 900px) {
  .col-span-8, .col-span-7, .col-span-6, .col-span-5, .col-span-4 {
    grid-column: span 12;
  }
}

/* Backgrounds and Colors */
.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-accent-1 { background-color: var(--accent-1) !important; }
.bg-accent-2 { background-color: var(--accent-2) !important; }
.bg-dark { background-color: var(--dark) !important; color: var(--light); }
.bg-dark * { color: var(--light); border-color: var(--light); }
.bg-light { background-color: var(--light) !important; }
.text-dark { color: var(--dark) !important; }
.text-light { color: var(--light) !important; }

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--light);
  border-bottom: var(--border-thick);
  z-index: 1000;
  padding: 1rem 0;
  transition: transform 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  height: 48px;
  object-fit: contain;
}

.footer-logo img {
  height: 80px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  bottom: -4px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--light);
    flex-direction: column;
    padding: var(--space-lg);
    border-bottom: var(--border-thick);
    border-top: var(--border-thick);
    gap: var(--space-md);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}

/* Footer */
.footer {
  border-top: var(--border-thick);
  padding: var(--space-xl) 0 var(--space-md);
  background-color: var(--dark);
  color: var(--light);
}

.footer h3, .footer h4 {
  color: var(--light);
}

.footer a {
  color: var(--accent-1);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.social-icons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light);
  color: var(--dark);
  border: var(--border-thick);
  border-color: var(--light);
  box-shadow: 2px 2px 0px var(--accent-1);
  transition: all 0.2s;
  font-size: 1.2rem;
}

.social-icon:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0px var(--accent-1);
}

.footer-bottom {
  border-top: 2px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Fade-in animation — triggered by IntersectionObserver */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
  will-change: opacity, transform;
}

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

/* Fallback: if JS is disabled, show everything */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================
   STATS STRIP CARDS
   ============================================= */
.stat-card {
  background-color: var(--primary);
  color: var(--light);
  border: var(--border-thick);
  box-shadow: var(--shadow-hard);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 0; /* allow shrinking inside grid */
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent-1);
}

.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}

/* Responsive: 5-column stats grid */
@media (max-width: 900px) {
  .stats-grid-container {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 580px) {
  .stats-grid-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 380px) {
  .stats-grid-container {
    grid-template-columns: 1fr !important;
  }
}

/* Layout Utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.object-cover { object-fit: cover; }

/* =============================================
   SERVICE IMAGE PLACEHOLDERS
   ============================================= */
.service-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}

.service-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

/* =============================================
   TRUST & CREDIBILITY SECTION
   ============================================= */
.trust-section {
  background: var(--dark);
  color: var(--light);
  padding: var(--space-xxl) 0;
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
}

.trust-section h2 {
  color: var(--light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.trust-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.15);
  padding: var(--space-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.09);
}

.trust-card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--light);
  margin-bottom: var(--space-md);
}

.trust-card h3 {
  color: var(--accent-2);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.trust-card p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* Client logos placeholder strip */
.client-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
  margin-top: var(--space-xl);
}

.client-logo-placeholder {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  padding: 1rem 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s;
  cursor: default;
}

.client-logo-placeholder:hover {
  color: var(--accent-1);
  border-color: var(--accent-1);
  background: rgba(168,230,207,0.08);
}

/* Testimonial card inside trust section */
.testimonial-card-inner {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.12);
  padding: var(--space-lg);
  transition: transform 0.25s, box-shadow 0.25s;
}

.testimonial-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--accent-1);
  font-size: 1rem;
  text-transform: uppercase;
}

.testimonial-role {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* =============================================
   LEAD CAPTURE FORM (FREE MARKETING PLAN)
   ============================================= */
.lead-form-section {
  background: var(--accent-2);
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
  padding: var(--space-xxl) 0;
}

.lead-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

@media (max-width: 900px) {
  .lead-form-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.lead-form-box {
  background: var(--light);
  border: var(--border-thick);
  box-shadow: var(--shadow-hard);
  padding: var(--space-xl);
}

.lead-form-box .form-group {
  margin-bottom: var(--space-md);
}

.lead-form-box .form-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lead-form-box .form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  border: 2px solid var(--dark);
  background: #fff;
  transition: box-shadow 0.2s;
  border-radius: 0;
}

.lead-form-box .form-control:focus {
  outline: none;
  box-shadow: 4px 4px 0px var(--primary);
}

.lead-form-points {
  list-style: none;
  margin: var(--space-lg) 0;
}

.lead-form-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.lead-form-points li i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* =============================================
   CTA BANNER (premium style)
   ============================================= */
.cta-banner {
  background: var(--secondary);
  border: var(--border-thick);
  box-shadow: var(--shadow-hard);
  padding: var(--space-xxl) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  top: -100px;
  right: -60px;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -80px;
  left: -40px;
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--light);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
}

.cta-btn-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stat-card {
  background: var(--primary);
  color: var(--light);
  text-align: center;
  padding: var(--space-lg);
  border: var(--border-thick);
  box-shadow: var(--shadow-hard);
  transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hover);
}

.stat-card .stat-number {
  font-size: 3rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent-1);
}

.stat-card .stat-label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
}

/* =============================================
   HERO SECTION (index)
   ============================================= */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 90px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--accent-1);
  color: var(--dark);
  border: 2px solid var(--dark);
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-shapes {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border: var(--border-thick);
  box-shadow: 6px 6px 0px var(--dark);
  animation: float 6s ease-in-out infinite;
}

.shape-1 { width: 100px; height: 100px; background: var(--secondary); border-radius: 50%; top: 20%; right: 15%; }
.shape-2 { width: 80px; height: 80px; background: var(--accent-1); top: 60%; right: 25%; animation-delay: -2s; transform: rotate(15deg); }
.shape-3 { width: 120px; height: 60px; background: var(--accent-2); top: 30%; left: 10%; animation-delay: -4s; transform: rotate(-20deg); }

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* =============================================
   STEPS
   ============================================= */
.steps-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.step-line {
  position: absolute;
  top: 40px; left: 15%; right: 15%;
  height: 4px;
  border-top: 4px dashed var(--dark);
  z-index: 0;
}

@media (max-width: 900px) {
  .steps-container { grid-template-columns: 1fr; }
  .step-line { display: none; }
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--light);
}

.step-icon {
  width: 80px; height: 80px;
  margin: 0 auto var(--space-md);
  background: var(--primary);
  border: var(--border-thick);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--light);
  box-shadow: var(--shadow-hard);
}

/* =============================================
   TESTIMONIAL CAROUSEL
   ============================================= */
.testimonial-carousel {
  display: flex; gap: var(--space-md); overflow-x: auto; padding: var(--space-md) 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.testimonial-carousel::-webkit-scrollbar {
  height: 4px;
}
.testimonial-carousel::-webkit-scrollbar-thumb {
  background: var(--primary);
}

.testimonial-card-wrap {
  min-width: 340px; scroll-snap-align: center;
}

/* =============================================
   FLOAT WHATSAPP BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.4rem;
  border: 3px solid #1a1a2e;
  box-shadow: 4px 4px 0px #1a1a2e;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0px #1a1a2e;
  color: #fff;
}

.whatsapp-float i {
  font-size: 1.4rem;
}

@media (max-width: 480px) {
  .whatsapp-float {
    padding: 0.7rem 1rem;
    font-size: 0;   /* hide text on very small screens */
    gap: 0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
    bottom: 20px;
    right: 16px;
  }
  .whatsapp-float i {
    font-size: 1.8rem;
  }
}

/* =============================================
   FORM SHARED (contact + lead)
   ============================================= */
.form-group { margin-bottom: var(--space-md); }

.form-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  border: 2px solid var(--dark);
  background: #fff;
  transition: box-shadow 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-control:focus {
  outline: none;
  box-shadow: 4px 4px 0px var(--accent-1);
}

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

/* =============================================
   PAGE-SPECIFIC HERO LAYOUTS
   ============================================= */
.page-hero {
  padding-top: 140px;
  padding-bottom: var(--space-xl);
  text-align: center;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.contact-form {
  background: var(--light);
  border: var(--border-thick);
  box-shadow: var(--shadow-hard);
  padding: var(--space-xl);
}

.info-cards {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.info-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--light);
  border: var(--border-thick);
  box-shadow: var(--shadow-hard);
  padding: var(--space-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--dark);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 2px solid var(--dark);
  flex-shrink: 0;
}

.map-placeholder {
  width: 100%;
  height: 280px;
  background: var(--accent-2);
  border: var(--border-thick);
  box-shadow: var(--shadow-hard);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  margin-bottom: var(--space-xl);
}

.large-socials {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.large-social-icon {
  width: 72px;
  height: 72px;
  background: var(--light);
  border: var(--border-thick);
  box-shadow: var(--shadow-hard);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--dark);
  transition: all 0.2s;
}

.large-social-icon:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px var(--dark);
  color: var(--light);
}

.ls-ig:hover { background: #E1306C; }
.ls-tt:hover { background: #000; }
.ls-li:hover { background: #0077b5; }
.ls-yt:hover { background: #FF0000; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.service-hero {
  padding-top: 140px;
  padding-bottom: var(--space-xl);
  text-align: center;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-xxl);
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

@media (max-width: 900px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .service-block.reverse { direction: ltr; }
}

.service-visual {
  background: var(--light);
  border: var(--border-thick);
  box-shadow: var(--shadow-hard);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-visual:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hover);
}

.service-icon-large {
  font-size: 8rem;
  opacity: 0.8;
  transition: transform 0.3s;
}

.service-visual:hover .service-icon-large {
  transform: scale(1.1) rotate(-5deg);
}

.deliverables-list {
  margin: var(--space-md) 0 var(--space-lg);
}

.deliverables-list li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1.05rem;
}

.deliverables-list li i {
  color: var(--primary);
  flex-shrink: 0;
}

/* =============================================
   PRICING PAGE
   ============================================= */
.pricing-hero {
  padding-top: 140px;
  padding-bottom: var(--space-xl);
  text-align: center;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xxl);
}

.spec-item {
  background: var(--light);
  border: var(--border-thick);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  box-shadow: 4px 4px 0px var(--dark);
  transition: transform 0.2s, box-shadow 0.2s;
}

.spec-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--dark);
}

.spec-icon {
  font-size: 2rem;
  color: var(--primary);
  width: 50px;
  flex-shrink: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  align-items: center;
}

.pricing-card {
  background: var(--light);
  border: var(--border-thick);
  box-shadow: var(--shadow-hard);
  padding: var(--space-xl) var(--space-md);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-hover);
  z-index: 2;
}

.pricing-card.featured {
  background: var(--accent-2);
  transform: scale(1.05);
  border-width: 4px;
  z-index: 5;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translate(-4px, -4px);
}

@media (max-width: 900px) {
  .pricing-card.featured {
    transform: scale(1);
  }
  .pricing-card.featured:hover {
    transform: translate(-4px, -4px);
  }
}

.price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: var(--space-sm) 0;
  color: var(--dark);
}

.price span {
  font-size: 1rem;
  color: #666;
  font-weight: normal;
}

.pricing-list {
  margin: var(--space-lg) 0;
  flex-grow: 1;
  font-size: 1.1rem;
}

.pricing-list li {
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pricing-list li i {
  color: var(--primary);
}

.digital-services-table {
  width: 100%;
  border-collapse: collapse;
  border: var(--border-thick);
  background: var(--light);
  box-shadow: var(--shadow-hard);
  margin-bottom: var(--space-xl);
}

.digital-services-table th, .digital-services-table td {
  border: 2px solid var(--dark);
  padding: 1rem;
  text-align: left;
}

.digital-services-table th {
  background: var(--accent-1);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.digital-services-table tr:hover {
  background: var(--accent-2);
}

@media (max-width: 768px) {
  .digital-services-table, .digital-services-table tbody, .digital-services-table tr, .digital-services-table td {
    display: block;
    width: 100%;
  }
  .digital-services-table th { display: none; }
  .digital-services-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }
  .digital-services-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
    font-family: 'Space Grotesk', sans-serif;
  }
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.story-hero {
  padding-top: 140px;
  padding-bottom: var(--space-xl);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.team-member {
  background: var(--light);
  border: var(--border-thick);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  background: var(--accent-2);
}

.team-member:nth-child(even):hover {
  background: var(--accent-1);
}

.team-photo {
  height: 240px;
  background: var(--primary);
  border-bottom: var(--border-thick);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--light);
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: var(--space-md);
}

.logo-strip {
  overflow: hidden;
  background: var(--dark);
  padding: var(--space-md) 0;
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
  white-space: nowrap;
}

.logo-container {
  display: inline-block;
  animation: slide 18s linear infinite;
}

.logo-item {
  display: inline-block;
  margin: 0 40px;
  color: var(--light);
  font-size: 1.8rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  opacity: 0.45;
  transition: opacity 0.3s, color 0.3s;
}

.logo-item:hover {
  opacity: 1;
  color: var(--accent-1);
}

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   BLOG PAGE — HERO, FEATURED POST & CARDS
   ============================================= */
.blog-hero {
  padding-top: 150px;
  padding-bottom: var(--space-xl);
  text-align: center;
}

.featured-post {
  display: flex;
  background: var(--light);
  border: var(--border-thick);
  box-shadow: var(--shadow-hard);
  margin-bottom: var(--space-xxl);
  position: relative;
  z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.featured-post:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px var(--dark);
}

.featured-thumbnail {
  width: 50%;
  background: var(--secondary);
  border-right: var(--border-thick);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 360px;
}

.featured-content {
  width: 50%;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

@media (max-width: 900px) {
  .featured-post { flex-direction: column; }
  .featured-thumbnail,
  .featured-content { width: 100%; }
  .featured-thumbnail { min-height: 240px; border-right: none; border-bottom: var(--border-thick); }
  .featured-content { padding: var(--space-lg); }
}

.post-card {
  padding: 0;
  overflow: hidden;
}

.post-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.post-thumbnail {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: var(--border-thick);
  font-size: 3rem;
  color: var(--light);
}

.post-content {
  padding: var(--space-lg);
}

/* =============================================
   BLOG PAGE — NEWSLETTER FORM
   ============================================= */
.newsletter-form {
  display: flex;
  max-width: 600px;
  margin: 2rem auto 0;
}

.newsletter-input {
  flex-grow: 1;
  padding: 1rem;
  font-size: 1.125rem;
  font-family: inherit;
  border: var(--border-thick);
  border-right: none;
  outline: none;
  background: var(--light);
}

.newsletter-btn {
  border-left: var(--border-thick);
}

@media (max-width: 600px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: var(--border-thick); border-bottom: none; }
  .newsletter-btn { border-left: var(--border-thick); border-top: var(--border-thick); }
}
