/* ============================================================
   NewBuildBER.ie — Brand Stylesheet
   Colors: Deep Teal #0D4F4F | Energy Green #00C853 | Warm Cream #FAF8F4
   Fonts: DM Sans (body) | Source Serif 4 (display)
   ============================================================ */

:root {
  --deep-teal: #0D4F4F;
  --teal-dark: #093939;
  --teal-mid: #1A6B6B;
  --teal-light: #4DB6AC;
  --energy-green: #00C853;
  --green-dark: #00A344;
  --green-light: #69F0AE;
  --green-bg: #E8F5E9;
  --warm-cream: #FAF8F4;
  --cream-dark: #F0EDE6;
  --white: #FFFFFF;
  --dark: #0A2F2F;
  --gray-900: #1C3131;
  --gray-700: #3D5555;
  --gray-500: #6B8080;
  --gray-400: #9BAFAF;
  --gray-300: #C4D1D1;
  --gray-200: #DDE5E5;
  --gray-100: #EEF2F2;
  --gray-50: #F7F9F9;
  --font-display: 'Source Serif 4', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-xs: 0 1px 2px rgba(13,79,79,0.04);
  --shadow-sm: 0 2px 8px rgba(13,79,79,0.06);
  --shadow-md: 0 4px 20px rgba(13,79,79,0.08);
  --shadow-lg: 0 8px 36px rgba(13,79,79,0.10);
  --shadow-xl: 0 16px 48px rgba(13,79,79,0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--warm-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.nav-scrolled {
  background: rgba(250,248,244,0.95);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-xs);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--deep-teal);
  letter-spacing: -0.01em;
}
.nav-logo strong { font-weight: 700; }
.nav-logo small { color: var(--gray-400); font-weight: 400; }
.nav-logo-icon { width: 36px; height: 36px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--deep-teal); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--energy-green);
  transition: width var(--transition);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--deep-teal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--teal-mid); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-teal);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #072D2D 0%, #0D4F4F 40%, #1A6B6B 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 20%, rgba(0,200,83,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(77,182,172,0.06) 0%, transparent 50%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-badge {
  display: inline-block;
  background: rgba(0,200,83,0.12);
  color: var(--green-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(0,200,83,0.15);
  animation: fadeSlideUp 0.6s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.6s ease 0.1s both;
}
.hero-accent {
  color: var(--energy-green);
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 580px;
  animation: fadeSlideUp 0.6s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.6s ease 0.3s both;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.6s ease 0.4s both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
}
.hero-wave svg { display: block; width: 100%; height: auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 12px 28px;
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-primary {
  background: var(--energy-green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,200,83,0.3); }
.btn-green {
  background: var(--energy-green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,200,83,0.3); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-full { width: 100%; justify-content: center; }

/* ============ SECTIONS ============ */
.section {
  padding: 100px 0;
}
.section-cream { background: var(--warm-cream); }
.section-dark {
  background: linear-gradient(145deg, #072D2D, #0D4F4F);
  color: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--energy-green);
  margin-bottom: 12px;
}
.section-tag-light { color: var(--green-light); }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--deep-teal);
}
.section-dark .section-header h2 { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--warm-cream);
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep-teal);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 4px;
}

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.service-card.revealed { opacity: 1; transform: translateY(0); }
.service-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--deep-teal); }
.service-icon-cta { background: var(--deep-teal); }
.service-icon-cta svg { stroke: var(--energy-green); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
}
.service-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--energy-green);
  transition: color var(--transition);
}
.service-card:hover .service-link { color: var(--green-dark); }
.service-card-cta {
  background: var(--deep-teal);
  border-color: var(--deep-teal);
}
.service-card-cta h3 { color: var(--white); }
.service-card-cta p { color: rgba(255,255,255,0.7); }
.service-card-cta:hover { border-color: var(--teal-mid); background: var(--teal-dark); }

/* ============ AUDIENCE ============ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.audience-card.revealed { opacity: 1; transform: translateY(0); }
.audience-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.audience-img {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.audience-img svg { width: 120px; height: 80px; }
.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 8px;
}
.audience-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
}
.audience-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--energy-green);
}

/* ============ PROCESS ============ */
.process-track {
  display: flex;
  gap: 0;
  position: relative;
  justify-content: space-between;
}
.process-line {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--energy-green), var(--teal-light));
  opacity: 0.3;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}
.process-step.revealed { opacity: 1; transform: translateY(0); }
.step-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--deep-teal);
  color: var(--energy-green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--warm-cream), 0 0 0 8px rgba(0,200,83,0.15);
}
.section:not(.section-cream) .step-marker {
  box-shadow: 0 0 0 6px var(--white), 0 0 0 8px rgba(0,200,83,0.15);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 6px;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============ DEVELOPER CTA ============ */
.dev-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.dev-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.dev-cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.dev-features {
  list-style: none;
  margin-bottom: 32px;
}
.dev-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.pricing-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-tier {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition);
}
.pricing-tier:hover { background: rgba(255,255,255,0.1); }
.pricing-tier-highlight {
  background: rgba(0,200,83,0.12);
  border-color: rgba(0,200,83,0.25);
}
.tier-label {
  font-weight: 600;
  font-size: 1rem;
}
.tier-saving {
  background: rgba(0,200,83,0.15);
  color: var(--green-light);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
}

/* ============ WHY GRID ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.why-card.revealed { opacity: 1; transform: translateY(0); }
.why-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-sm);
}
.why-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--energy-green);
  opacity: 0.4;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.testimonial-card.revealed { opacity: 1; transform: translateY(0); }
.testimonial-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card > p:nth-child(2) {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--deep-teal);
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(10px);
}
.faq-item.revealed { opacity: 1; transform: translateY(0); }
.faq-item[open] { border-color: var(--teal-light); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--deep-teal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}
.faq-item summary:hover { color: var(--teal-mid); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gray-400);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============ LOCATIONS ============ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.location-card.revealed { opacity: 1; transform: translateY(0); }
.location-card:hover {
  border-color: var(--energy-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 8px;
}
.location-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.locations-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--gray-500);
}
.locations-note a { color: var(--energy-green); font-weight: 600; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-info p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.contact-method:hover { background: rgba(255,255,255,0.1); }
.contact-method strong { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.contact-method span { display: block; font-size: 1rem; font-weight: 600; color: var(--white); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--energy-green);
  box-shadow: 0 0 0 3px rgba(0,200,83,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 4px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 12px;
  color: rgba(255,255,255,0.45);
}
.footer-brand .nav-logo { margin-bottom: 8px; }
.footer-brand .nav-logo span { color: rgba(255,255,255,0.9); }
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--energy-green); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--teal-light); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ============ FLOATING QUOTE WIDGET ============ */
.float-widget {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 90;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--deep-teal);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
}
.float-btn:hover { background: var(--teal-mid); transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.float-btn.hidden { opacity: 0; pointer-events: none; transform: scale(0.8); }
.float-btn svg { stroke: var(--energy-green); }
.float-panel {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: all var(--transition);
}
.float-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.float-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--deep-teal);
  color: var(--white);
}
.float-panel-header h4 { font-size: 0.95rem; font-weight: 600; }
.float-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
}
.float-close:hover { color: var(--white); }
.float-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}
.float-form input,
.float-form select {
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
}
.float-form input:focus,
.float-form select:focus {
  border-color: var(--energy-green);
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 91;
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ============ ANIMATIONS ============ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatPulse {
  0%, 100% { box-shadow: var(--shadow-lg); }
  50% { box-shadow: 0 8px 36px rgba(13,79,79,0.2), 0 0 0 6px rgba(0,200,83,0.08); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .dev-cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--warm-cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 99;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: flex; z-index: 100; }

  .hero { padding: 130px 0 80px; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-trust { flex-direction: column; gap: 12px; }

  .section { padding: 60px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-grid,
  .audience-grid,
  .testimonials-grid,
  .locations-grid,
  .why-grid { grid-template-columns: 1fr; }

  .process-track {
    flex-direction: column;
    gap: 32px;
  }
  .process-line {
    top: 0;
    bottom: 0;
    left: 23px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .process-step {
    text-align: left;
    padding-left: 64px;
  }
  .step-marker {
    position: absolute;
    left: 0;
    margin: 0;
  }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

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

  .float-widget { bottom: 88px; right: 16px; }
  .float-panel { width: calc(100vw - 32px); right: -8px; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stat-num { font-size: 1.6rem; }
}

/* ============ INNER PAGE SHARED ============ */
.page-hero {
  background: linear-gradient(145deg, #072D2D 0%, #0D4F4F 40%, #1A6B6B 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--warm-cream);
  clip-path: ellipse(80% 100% at 50% 100%);
}
.page-hero .hero-badge { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.7;
}

.content-section {
  padding: 80px 0;
}
.content-section:nth-child(even) { background: var(--white); }
.content-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.content-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
}
.content-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin: 28px 0 12px;
}
.content-wrap p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 16px;
}
.content-wrap ul, .content-wrap ol {
  margin: 16px 0;
  padding-left: 24px;
}
.content-wrap li {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 8px;
}
.content-cta {
  background: var(--green-bg);
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 40px 0;
  text-align: center;
}
.content-cta h3 {
  margin-top: 0;
  color: var(--deep-teal);
}
.content-cta p { color: var(--gray-500); }

/* Blog list */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.blog-card:hover { border-color: var(--teal-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--energy-green);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }
.blog-read { display: inline-block; margin-top: 12px; font-size: 0.85rem; font-weight: 600; color: var(--energy-green); }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 60px; }
}
