/*
Theme Name: DhisTech
Theme URI: https://dhistech.com
Author: DhisTech
Description: Custom theme for DhisTech — software development, design, cybersecurity and hosting solutions in Mogadishu, Somalia.
Version: 1.0
Text Domain: dhistech
*/

/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --background: 0 0% 8%;
  --foreground: 0 0% 95%;
  --card: 0 0% 12%;
  --card-foreground: 0 0% 95%;
  --primary: 180 100% 35%;
  --primary-foreground: 0 0% 10%;
  --primary-light: 180 100% 45%;
  --primary-dark: 180 100% 25%;
  --secondary: 0 0% 15%;
  --secondary-foreground: 0 0% 95%;
  --muted: 0 0% 15%;
  --muted-foreground: 0 0% 60%;
  --border: 0 0% 20%;
  --input: 0 0% 20%;
  --radius: 0.75rem;

  --shadow-soft: 0 2px 20px -5px hsl(180 100% 35% / .2);
  --shadow-medium: 0 8px 30px -8px hsl(180 100% 35% / .25);
  --shadow-strong: 0 20px 50px -15px hsl(180 100% 35% / .35);
  --transition-smooth: all .3s cubic-bezier(.4,0,.2,1);

  --font-heading: 'Poppins', 'Montserrat', sans-serif;
  --font-body: 'Roboto', 'Open Sans', sans-serif;
}

:root.light {
  --background: 0 0% 100%;
  --foreground: 0 0% 10%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 10%;
  --primary: 180 100% 25%;
  --primary-foreground: 0 0% 100%;
  --primary-light: 180 100% 35%;
  --primary-dark: 180 100% 20%;
  --secondary: 40 30% 93%;
  --secondary-foreground: 0 0% 10%;
  --muted: 40 20% 96%;
  --muted-foreground: 0 0% 45%;
  --border: 0 0% 90%;
  --input: 0 0% 90%;

  --shadow-soft: 0 2px 20px -5px hsl(180 100% 25% / .1);
  --shadow-medium: 0 8px 30px -8px hsl(180 100% 25% / .15);
  --shadow-strong: 0 20px 50px -15px hsl(180 100% 25% / .25);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  transition: background .3s ease, color .3s ease;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }

.icon { width: 1em; height: 1em; flex-shrink: 0; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

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

.gradient-text {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: hsl(var(--primary));
}

.section-heading { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-subheading {
  color: hsl(var(--muted-foreground));
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header { text-align: center; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition-smooth);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-medium); }
.btn-outline {
  background: transparent;
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}
.btn-outline:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.btn-dark {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}
.btn-dark:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsl(var(--background) / .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.site-logo { display: flex; align-items: center; }
.site-logo img { height: 68px; width: auto; }
.logo-dark { display: block; }
.logo-light { display: none; }
:root.light .logo-dark { display: none; }
:root.light .logo-light { display: block; }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: hsl(var(--foreground) / .85);
  transition: var(--transition-smooth);
  position: relative;
}
.main-nav a:hover, .main-nav a.current-menu-item, .main-nav li.current-menu-item > a { color: hsl(var(--primary)); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.theme-toggle {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  transition: var(--transition-smooth);
}
.theme-toggle:hover { border-color: hsl(var(--primary)); color: hsl(var(--primary)); }
.theme-toggle svg { width: 18px; height: 18px; }
.icon-sun { display: none; }
.icon-moon { display: block; }
:root.light .icon-sun { display: block; }
:root.light .icon-moon { display: none; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: hsl(var(--foreground));
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-menu { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, hsl(var(--primary) / .12), transparent 70%);
}
.hero-globe {
  position: absolute;
  top: 50%;
  right: -180px;
  transform: translateY(-50%);
  width: 720px;
  height: 720px;
  color: hsl(var(--primary));
  opacity: .18;
  pointer-events: none;
  z-index: 0;
}
:root.light .hero-globe { opacity: .14; }
.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: hsl(var(--primary));
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
}
.hero-dot.d1 { width: 10px; height: 10px; top: 22%; left: 10%; opacity: .5; }
.hero-dot.d2 { width: 6px; height: 6px; top: 62%; left: 6%; opacity: .35; }
.hero-dot.d3 { width: 14px; height: 14px; top: 40%; right: 14%; opacity: .3; }
.hero-dot.d4 { width: 8px; height: 8px; top: 75%; right: 22%; opacity: .4; }
.hero-dot.d5 { width: 5px; height: 5px; top: 15%; right: 32%; opacity: .45; }
.hero-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; text-align: center; }
.hero-scroll {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 32px;
  color: hsl(var(--primary));
  opacity: .7;
}
.hero-scroll svg { width: 28px; height: 28px; animation: hero-scroll-bounce 1.8s ease-in-out infinite; }
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll svg { animation: none; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / .35);
  background: hsl(var(--primary) / .08);
  color: hsl(var(--primary));
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
}
.icon-badge-spin {
  animation: badge-spin 2.5s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes badge-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .icon-badge-spin { animation: none; }
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 8px;
}
.hero-tagline {
  font-size: clamp(18px, 2.2vw, 22px);
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  margin: 20px 0 20px;
}
.hero p.hero-desc {
  font-size: 18px;
  color: hsl(var(--muted-foreground));
  max-width: 620px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 560px;
  margin: 0 auto;
}
.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: hsl(var(--primary));
}
.hero-stat .stat-label { color: hsl(var(--muted-foreground)); font-size: 14px; margin-top: 4px; }

/* ==========================================================================
   Hero — typewriter tagline
   ========================================================================== */
.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: hsl(var(--primary));
  margin-left: 3px;
  vertical-align: -0.15em;
  animation: cursor-blink 1s step-end infinite;
}
@keyframes cursor-blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .typewriter-cursor { animation: none; opacity: 1; }
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition-smooth);
}
.card:hover { border-color: hsl(var(--primary) / .4); transform: translateY(-4px); box-shadow: var(--shadow-medium); }

.icon-box {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}
.icon-box svg { width: 26px; height: 26px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: hsl(var(--muted-foreground)); font-size: 15px; }

/* ==========================================================================
   About
   ========================================================================== */
.about-section .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.about-text h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 24px; }
.about-text p { color: hsl(var(--muted-foreground)); margin-bottom: 18px; font-size: 16px; }
.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.about-checklist li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.about-checklist svg { width: 18px; height: 18px; color: hsl(var(--primary)); flex-shrink: 0; }
.about-stat-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 56px 32px;
  text-align: center;
}
.about-stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: hsl(var(--primary));
}
.about-stat-card .stat-title { font-size: 20px; font-weight: 700; margin: 8px 0 8px; }
.about-stat-card .stat-desc { color: hsl(var(--muted-foreground)); font-size: 14px; }

/* ==========================================================================
   Purpose (mission/vision/values)
   ========================================================================== */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.purpose-card { text-align: left; }
.purpose-card .icon-box { border-radius: 50%; }
.purpose-card h3 { font-size: 20px; margin-bottom: 12px; }
.purpose-card p { color: hsl(var(--muted-foreground)); font-size: 15px; }

/* ==========================================================================
   Projects / Portfolio
   ========================================================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card { overflow: hidden; padding: 0; }
.project-thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.project-card:hover .project-thumb img { transform: scale(1.06); }
.project-body { padding: 24px; }
.project-category { color: hsl(var(--primary)); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }
.project-body h3 { font-size: 19px; margin: 8px 0 10px; }
.project-body p { color: hsl(var(--muted-foreground)); font-size: 14px; margin-bottom: 16px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tag {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  background: hsl(var(--primary) / .12);
  color: hsl(var(--primary));
}
.project-links { display: flex; gap: 20px; }
.project-links a { font-size: 14px; font-weight: 600; color: hsl(var(--primary)); display: inline-flex; align-items: center; gap: 6px; }
.project-links svg { width: 15px; height: 15px; }

.filter-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  transition: var(--transition-smooth);
}
.filter-btn:hover { border-color: hsl(var(--primary)); }
.filter-btn.active {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
  color: hsl(var(--primary-foreground));
  border-color: transparent;
}
.project-card.hidden { display: none; }

.bg-muted-section { background: hsl(var(--secondary) / .4); }

/* ==========================================================================
   Trusted by
   ========================================================================== */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.logo-slot {
  height: 110px;
  width: 220px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  transition: var(--transition-smooth);
}
.logo-slot:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.logo-slot img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  border: 1px solid hsl(var(--primary) / .4);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  background: linear-gradient(135deg, hsl(var(--primary) / .08), hsl(var(--secondary) / .3));
  box-shadow: 0 0 60px -20px hsl(var(--primary) / .4);
}
.cta-banner h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 16px; }
.cta-banner p { color: hsl(var(--muted-foreground)); max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Services page
   ========================================================================== */
.page-hero { padding: 72px 0 48px; text-align: center; }
.page-hero h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 16px; }
.page-hero p { color: hsl(var(--muted-foreground)); font-size: 18px; max-width: 620px; margin: 0 auto; }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
}
.service-row:nth-child(even) .service-copy { order: 2; }
.service-tagline { color: hsl(var(--primary)); font-weight: 600; margin-bottom: 12px; }
.service-copy h3 { font-size: 26px; margin-bottom: 6px; }
.service-copy > p { color: hsl(var(--muted-foreground)); margin: 16px 0 24px; }
.included-card h4 { font-size: 16px; margin-bottom: 18px; }
.included-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid hsl(var(--border));
  font-size: 14px;
}
.included-list li:last-child { border-bottom: none; }
.included-list svg { width: 20px; height: 20px; color: hsl(var(--primary)); flex-shrink: 0; }

/* ==========================================================================
   Domain & hosting
   ========================================================================== */
.domain-search-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
}
.domain-search-card .icon-box { margin: 0 auto 20px; background: hsl(var(--primary) / .15); color: hsl(var(--primary)); }
.domain-search-card h2 { font-size: 24px; margin-bottom: 8px; }
.domain-search-card p { color: hsl(var(--muted-foreground)); margin-bottom: 28px; }
.domain-search-form { display: flex; gap: 10px; }
.domain-search-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}
.domain-search-form input:focus { outline: none; border-color: hsl(var(--primary)); }

.domain-search-results { margin-top: 24px; text-align: left; }
.domain-result-list { border: 1px solid hsl(var(--border)); border-radius: var(--radius); overflow: hidden; }
.domain-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--background));
}
.domain-result:last-child { border-bottom: none; }
.domain-result-name { font-weight: 600; font-size: 15px; }
.domain-result-badge {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.domain-status-available .domain-result-badge { background: hsl(150 70% 25% / .2); color: hsl(150 70% 45%); }
.domain-status-taken .domain-result-badge { background: hsl(0 70% 30% / .2); color: hsl(0 70% 60%); }
.domain-status-unknown .domain-result-badge { background: hsl(var(--muted)); color: hsl(var(--muted-foreground)); }
.domain-result-note { margin-top: 16px; font-size: 14px; color: hsl(var(--muted-foreground)); text-align: center; }
.domain-result-note a { color: hsl(var(--primary)); font-weight: 600; }
.domain-error { color: hsl(0 70% 60%); font-size: 14px; text-align: center; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card { position: relative; text-align: left; }
.pricing-card.popular { border-color: hsl(var(--primary)); box-shadow: var(--shadow-strong); }
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
}
.pricing-card .icon-box { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 20px; }
.pricing-card h3 { font-size: 20px; margin-bottom: 8px; }
.pricing-price { font-size: 36px; font-weight: 800; font-family: var(--font-heading); margin-bottom: 4px; }
.pricing-price span { font-size: 15px; font-weight: 500; color: hsl(var(--muted-foreground)); }
.pricing-card > p.pricing-desc { color: hsl(var(--muted-foreground)); font-size: 14px; margin-bottom: 20px; }
.pricing-features { margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; }
.pricing-features svg { width: 16px; height: 16px; color: hsl(var(--primary)); flex-shrink: 0; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: 26px; margin-bottom: 16px; }
.contact-info > p { color: hsl(var(--muted-foreground)); margin-bottom: 32px; }
.contact-info-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.contact-info-row .icon-box { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 0; background: hsl(var(--primary) / .15); color: hsl(var(--primary)); }
.contact-info-row h4 { font-size: 15px; margin-bottom: 2px; }
.contact-info-row p { color: hsl(var(--muted-foreground)); font-size: 14px; }
.contact-map { margin-top: 32px; border-radius: var(--radius); overflow: hidden; border: 1px solid hsl(var(--border)); }
.contact-map iframe { width: 100%; height: 280px; border: 0; filter: grayscale(.3) invert(.92) contrast(.9); }
:root.light .contact-map iframe { filter: none; }

.contact-form-card { padding: 40px; }

/* Contact Form 7 styling */
.wpcf7 label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.wpcf7-form p { margin-bottom: 20px; }
.wpcf7 input[type=text], .wpcf7 input[type=email], .wpcf7 input[type=tel], .wpcf7 textarea, .wpcf7 select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}
.wpcf7 textarea { min-height: 130px; resize: vertical; }
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus { outline: none; border-color: hsl(var(--primary)); }
.wpcf7-submit {
  width: 100%;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.wpcf7-spinner { display: none !important; }
.wpcf7-not-valid-tip { color: #ef4444; font-size: 13px; margin-top: 6px; }
.wpcf7-response-output { border-radius: var(--radius) !important; margin-top: 20px !important; font-size: 14px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: hsl(var(--card)); border-top: 1px solid hsl(var(--border)); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p { color: hsl(var(--muted-foreground)); font-size: 14px; margin: 16px 0 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: hsl(var(--secondary));
  color: hsl(var(--foreground));
  transition: var(--transition-smooth);
}
.footer-social a:hover { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { font-size: 15px; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: hsl(var(--muted-foreground)); font-size: 14px; transition: var(--transition-smooth); }
.footer-col ul li a:hover { color: hsl(var(--primary)); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; color: hsl(var(--muted-foreground)); font-size: 14px; }
.footer-contact-row svg { width: 16px; height: 16px; color: hsl(var(--primary)); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: hsl(var(--muted-foreground));
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: hsl(var(--primary)); }

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #22c55e;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px -4px rgba(0,0,0,.4);
  z-index: 90;
  transition: var(--transition-smooth);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 26px; height: 26px; color: #fff; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: none; }

.services-grid > .reveal:nth-child(1), .purpose-grid > .reveal:nth-child(1), .projects-grid > .reveal:nth-child(1), .pricing-grid > .reveal:nth-child(1), .logo-strip > .reveal:nth-child(1) { transition-delay: 0s; }
.services-grid > .reveal:nth-child(2), .purpose-grid > .reveal:nth-child(2), .projects-grid > .reveal:nth-child(2), .pricing-grid > .reveal:nth-child(2), .logo-strip > .reveal:nth-child(2) { transition-delay: .1s; }
.services-grid > .reveal:nth-child(3), .purpose-grid > .reveal:nth-child(3), .projects-grid > .reveal:nth-child(3), .pricing-grid > .reveal:nth-child(3), .logo-strip > .reveal:nth-child(3) { transition-delay: .2s; }
.services-grid > .reveal:nth-child(4), .logo-strip > .reveal:nth-child(4) { transition-delay: .3s; }
.services-grid > .reveal:nth-child(5), .logo-strip > .reveal:nth-child(5) { transition-delay: .4s; }
.logo-strip > .reveal:nth-child(6) { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .about-section .container { grid-template-columns: 1fr; }
  .services-grid, .purpose-grid, .projects-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-copy { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100px; left: 0; right: 0;
    background: hsl(var(--background));
    border-bottom: 1px solid hsl(var(--border));
    padding: 24px;
    gap: 20px;
  }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .services-grid, .purpose-grid, .projects-grid, .pricing-grid, .about-checklist { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .header-actions .btn-primary { display: none; }
}

@media (max-width: 560px) {
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .services-grid, .purpose-grid, .projects-grid, .pricing-grid, .about-checklist { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .section { padding: 64px 0; }
}
