/* =========================================
   IGAIA PROJETOS - PREMIUM STYLESHEET V2
   Dynamic, Sexy, and Blue/Green balanced
   ========================================= */

:root {
  /* Colors */
  --blue: #0e0f74;
  --blue-dark: #070845;
  --blue-light: #181a9c;
  --green: #00fc00;
  --green-hover: #00d600;
  --green-soft: rgba(0, 252, 0, 0.15);
  --white: #ffffff;
  --off-white: #f8fafc;
  --bg-light: #eef2f6;
  --text-dark: #1e293b;
  --text-body: #475569;
  --border-color: #e2e8f0;
  
  /* Typography */
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Spacing */
  --section-padding: 7rem 0;
  --section-padding-mobile: 4.5rem 0;
  
  /* Effects */
  --shadow-sm: 0 4px 6px -1px rgba(14, 15, 116, 0.1), 0 2px 4px -1px rgba(14, 15, 116, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(14, 15, 116, 0.1), 0 4px 6px -2px rgba(14, 15, 116, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(14, 15, 116, 0.15), 0 10px 10px -5px rgba(14, 15, 116, 0.04);
  --shadow-glossy: 0 10px 30px rgba(0, 252, 0, 0.3);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   RESET & BASICS
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--white);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
}

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.bg-light { background-color: var(--bg-light); }
.bg-blue { background-color: var(--blue); }
.bg-green { background-color: var(--green); }

.text-white { color: var(--white) !important; }
.text-green { color: var(--green) !important; }
.text-blue { color: var(--blue) !important; }

/* Typography Utilities */
.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-body);
  max-width: 600px;
  margin-bottom: 2rem;
}

.title-underline {
  height: 6px;
  width: 70px;
  background-color: var(--green);
  border-radius: 4px;
  margin-bottom: 2rem;
}

.center { text-align: center; }
.center .section-subtitle { margin: 0 auto 2rem auto; }
.center-line { margin: 0 auto 2.5rem auto; }

/* =========================================
   COMPONENTS & BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--green);
  color: var(--blue);
}

.btn-primary:hover {
  background-color: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow-glossy);
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.shadow-glossy {
  box-shadow: var(--shadow-glossy);
}

/* Organic Image Classes Placeholder */
.img-placeholder {
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14, 15, 116, 0.05);
}

.img-placeholder i {
  font-size: 3rem;
  opacity: 0.3;
}

.shape-organic {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-rounded {
  border-radius: var(--radius-lg);
}

.shape-pill {
  border-radius: 100px;
}

.shape-pill-vertical {
  border-radius: 100px;
}

.shape-arch {
  border-radius: 15rem 15rem 2rem 2rem;
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--blue); /* Deep Blue */
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  padding: 0.25rem 0;
}

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

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
}

.nav-links a {
  color: var(--white); /* White links on Blue default */
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  opacity: 0.85;
}

.nav-links a:hover {
  color: var(--green);
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background-color: var(--green);
  transition: var(--transition);
}

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

.navbar .btn-primary {
  padding: 0.75rem 1.5rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--green); /* Green icons on blue menu */
  cursor: pointer;
}

.mobile-nav {
  display: none;
  background-color: var(--blue);
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-inner {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-inner a:not(.btn) {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  padding: 10rem 0 7rem 0; /* Extra padding to offset fixed navbar */
  background: radial-gradient(circle at top right, var(--bg-light) 0%, var(--white) 60%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background-color: var(--green-soft);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.chip-item {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--blue);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(14, 15, 116, 0.1);
}

.chip-item:nth-child(2) {
  background-color: var(--green);
  color: var(--blue);
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--blue);
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: var(--text-body);
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.trust-tags span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.trust-tags i {
  color: var(--green);
  font-size: 1.4rem;
}

/* Bento Hero Visual */
.hero-visual {
  position: relative;
}

.visual-badge {
  position: absolute;
  top: -20px;
  left: -30px;
  background-color: var(--green);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  animation: float 4s ease-in-out infinite;
}

.badge-content i {
  font-size: 2.5rem;
  color: var(--blue);
}

.visual-bento {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 1.5rem;
}

.bento-main {
  height: 520px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  width: 100%;
}

.bento-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bento-small {
  height: 250px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  width: 100%;
}

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

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.img-large {
  height: 600px;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  object-fit: cover;
  width: 100%;
  position: relative; /* Ensure z-index works correctly */
}

.about-accent {
  position: absolute;
  bottom: -30px; /* Adjusted to pop out from bottom */
  left: -30px;   /* Adjusted to pop out from left */
  width: 60%;
  height: 60%;
  background-color: var(--blue);
  border-radius: var(--radius-lg);
  z-index: 1; /* Behind the image */
}

.about p {
  margin-bottom: 2rem;
  font-size: 1.15rem;
  color: var(--text-body);
}

.about-highlight-box {
  background-color: var(--bg-light);
  padding: 2rem 2.5rem;
  border-radius: var(--radius-md);
  border-left: 6px solid var(--green);
  position: relative;
}

.about-highlight-box i {
  font-size: 2.5rem;
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: var(--white);
  padding: 0.2rem;
  border-radius: 50%;
}

.about-highlight-box p {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--blue);
  font-size: 1.1rem;
}

/* =========================================
   TARGET AUDIENCE (BG BLUE)
   ========================================= */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.audience-card {
  background-color: rgba(255,255,255,0.05); /* Transparent card on blue bg */
  backdrop-filter: blur(10px);
  padding: 3.5rem 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.audience-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(0, 252, 0, 0.4); /* Green highlight border on hover */
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-icon-green {
  width: 70px;
  height: 70px;
  background-color: var(--green);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px rgba(0, 252, 0, 0.2);
}

.audience-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.audience-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* =========================================
   WHAT WE DO (O QUE A IGAIA REALIZA)
   ========================================= */
.services-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: center;
}

.services-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-card {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 15rem;
  height: 15rem;
  background: radial-gradient(circle, var(--green-soft) 0%, transparent 70%);
  transform: translate(50%, -50%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(10px);
  border-color: var(--green);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card .service-img {
  width: 100px;
  height: 140px;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.service-img i {
  color: var(--green);
  opacity: 1;
  font-size: 2.5rem;
}

.service-content h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--blue);
}

.thematic-chips {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.thematic-chips .chip {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.8rem;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  font-weight: 600;
  border-radius: 100px;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.thematic-chips .chip i {
  color: var(--green);
  font-size: 1.2rem;
}

.thematic-chips .chip:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* =========================================
   EXPERIENCES (EXPERIÊNCIAS EM DESTAQUE)
   ========================================= */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-top: 2rem;
}

.experience-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.experience-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.experience-img-container {
  padding: 0; /* Remove padding to make image touch edges */
  position: relative;
  overflow: hidden;
}

.experience-img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  background-color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}

.experience-info {
  padding: 2rem; /* Balanced padding for text */
  flex-grow: 1;
}

.experience-info h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--blue);
}

.experience-info p {
  font-size: 1rem;
  color: var(--text-body);
}

/* =========================================
   PROCESS (COMO A IGAIA ATUA)
   ========================================= */
.process {
  padding: 8rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.process-step {
  background-color: var(--bg-light);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
  text-align: center;
  border: 1px solid transparent;
}

.process-step:hover {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
  transform: translateY(-10px);
}

.step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(14, 15, 116, 0.05);
  font-family: var(--font-heading);
  line-height: 1;
  transition: var(--transition);
  z-index: 0;
}

.process-step:hover .step-number {
  color: var(--green-soft);
}

.step-icon {
  width: 70px;
  height: 70px;
  background-color: var(--blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(14, 15, 116, 0.2);
}

.step-icon i {
  color: var(--green);
  font-size: 2.5rem;
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--blue);
}

/* =========================================
   TRUST SECTION
   ========================================= */
.trust-section {
  position: relative;
  padding: 8rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Important: User asked no opacity/overlay tricks on the background image. The background is now solid on the section tag inline style.
   Instead, we create a very solid, highly legible central card. */
.trust-focus-card {
  margin: 0 auto;
  background-color: var(--white);
  padding: 5rem 4rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5); /* Deep shadow over the pure bg to contrast */
  max-width: 960px;
  width: 100%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.icon-box {
  background-color: var(--green);
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 252, 0, 0.3);
}

.icon-box i {
  font-size: 2rem;
  color: var(--blue); /* Green BG, Blue Icon, wait "text-white" in HTML but let's override here for elegance */
  color: var(--blue) !important;
}

.trust-item p {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.trust-line {
  height: 1px;
  width: 100%;
  background-color: var(--border-color);
  margin-bottom: 1.5rem;
}

.trust-discreet-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-body);
}

/* =========================================
   FINAL CTA
   ========================================= */
.final-cta {
  background-color: var(--blue-dark); /* Deeper blue for CTA */
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--green) 0%, transparent 100%);
}

.cta-inner-box {
  background-color: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cta-title {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-text {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  color: rgba(255, 255, 255, 0.8);
}

.btn-cta {
  margin-bottom: 3rem;
}

.cta-info-block {
  display: flex;
  justify-content: center;
  gap: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  max-width: 400px;
  margin: 0 auto;
}

.info-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-weight: 500;
  font-size: 1.1rem;
}

.info-link i {
  font-size: 1.5rem;
}

.info-link:hover {
  color: var(--white);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  /* Class bg-blue applied in HTML */
  padding: 5rem 0 0 0;
  border-top: 1px solid rgba(255,255,255,0.05); /* Soft delimiter from dark blue to regular blue */
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  padding-bottom: 5rem;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.link-group h4 {
  color: var(--green);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.link-group a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
}

.link-group a:hover {
  color: var(--white);
  padding-left: 5px; /* Tiny hover shift */
}

.footer-bottom {
  background-color: var(--blue-dark); /* Deeper base for the bottom area */
  padding: 2rem 0;
  text-align: center;
}

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

/* =========================================
   ANIMATIONS & REVEAL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-short { transition-delay: 0.15s; }
.reveal-delay-long { transition-delay: 0.3s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
  .about-container { gap: 3rem; }
  .img-large { height: 400px; }
  
  .services-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section { padding: var(--section-padding-mobile); }
  .section-title { font-size: 2.3rem; }
  
  /* Navigation */
  .nav-links, .nav-btn { display: none; }
  .mobile-menu-toggle { display: block; }
  
  /* Hero */
  .hero {
    padding-top: 9rem;
    text-align: center;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .hero-chips { justify-content: center; }
  .hero-actions { justify-content: center; flex-direction: column; }
  .trust-tags { justify-content: center; }
  .visual-bento { display: none; }
  .visual-badge { display: none; }
  
  /* General Grids */
  .about-container, 
  .audience-grid, 
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content, .about-highlight-box { text-align: left; }
  
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .trust-focus-card { padding: 3rem 2rem; }
  .cta-inner-box { padding: 3rem 1.5rem; }
  .cta-title { font-size: 2.5rem; }
  .cta-info-block { flex-direction: column; gap: 1rem; align-items: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }
  
  .service-card {
    flex-direction: column;
  }
  
  .service-card::after { display: none; } /* Remove hover blob on small mobile */
  
  .experiences-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
