/* ======================================================
   PARCEIRO DA ESCOLA — DESIGN SYSTEM
   parceirodaescola.com
   ====================================================== */

/* === GOOGLE FONTS (loaded in HTML) === */

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Colors */
  --navy:        #1E2D5A;
  --navy-dark:   #0F172A;
  --navy-mid:    #1a2748;
  --orange:      #C2410C;
  --orange-dark: #9a3412;
  --gold:        #CA8A04;
  --gold-light:  #fbbf24;
  --white:       #FFFFFF;
  --slate-50:    #F8FAFC;
  --slate-100:   #F1F5F9;
  --slate-200:   #E2E8F0;
  --slate-400:   #94A3B8;
  --slate-600:   #475569;
  --slate-800:   #1E293B;

  /* Typography */
  --font-display:  'Bebas Neue', sans-serif;
  --font-serif:    'Libre Baskerville', Georgia, serif;
  --font-body:     'Inter', -apple-system, sans-serif;
  --font-quote:    'Crimson Text', Georgia, serif;

  /* Spacing */
  --container:  1200px;
  --section-py: 100px;

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --duration:   0.3s;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.16);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

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

/* === UTILITY === */
.text-orange { color: var(--orange); }
.text-white  { color: var(--white); }
.text-gold   { color: var(--gold); }

/* ======================================================
   NAVBAR
   ====================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--duration) var(--ease),
              padding var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}
.navbar.scrolled {
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo-text strong { display: block; font-size: 1rem; font-weight: 800; letter-spacing: 2px; }
.logo-text em { font-style: normal; font-size: 0.7rem; font-weight: 400; opacity: 0.8; letter-spacing: 1px; text-transform: uppercase; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--duration) var(--ease),
              background var(--duration) var(--ease);
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links .nav-cta {
  background: var(--orange);
  color: var(--white);
  border-radius: 8px;
  padding: 9px 20px;
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--orange-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(15,23,42,0.75) 0%,
    rgba(30,45,90,0.4) 50%,
    rgba(15,23,42,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 120px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(194,65,12,0.15);
  border: 1px solid rgba(194,65,12,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.hero-content h1 .text-orange {
  color: var(--orange);
  text-shadow: 0 0 40px rgba(194,65,12,0.4);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ======================================================
   BUTTONS
   ====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--duration) var(--ease);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(194,65,12,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 30px rgba(194,65,12,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-large { padding: 18px 48px; font-size: 1.05rem; border-radius: 12px; }
.btn-full { width: 100%; }

/* ======================================================
   SECTION HEADER COMMON
   ====================================================== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-label.light { color: rgba(255,194,12,0.8); color: var(--gold-light); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-600);
  max-width: 560px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ======================================================
   MANIFESTO / SOBRE
   ====================================================== */
.manifesto {
  padding: var(--section-py) 0;
  background: var(--slate-50);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 64px;
  align-items: start;
}
.manifesto-label {
  padding-top: 8px;
}
.manifesto-label .section-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.7rem;
}
.label-line {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  margin: 12px auto 0;
}
.manifesto-text h2.section-title { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 24px; text-align: left; }
.lead-text {
  font-family: var(--font-quote);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--slate-600);
  line-height: 1.7;
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin-bottom: 24px;
}
.body-text {
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 40px;
}
.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--orange);
  text-align: center;
}
.pillar-icon { font-size: 2rem; margin-bottom: 10px; }
.pillar strong { display: block; font-size: 0.95rem; color: var(--navy-dark); margin-bottom: 6px; font-weight: 700; }
.pillar p { font-size: 0.85rem; color: var(--slate-600); }

/* ======================================================
   SERVICES
   ====================================================== */
.services {
  padding: var(--section-py) 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--slate-50);
  border-radius: 16px;
  padding: 32px;
  border: 1.5px solid var(--slate-200);
  position: relative;
  transition: all var(--duration) var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.75); }
.service-card.featured .service-list li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.1); }
.service-card.featured::before { background: linear-gradient(90deg, var(--orange), var(--gold-light)); }
.service-card.featured:hover { border-color: var(--orange); }
.service-card.featured .service-link { color: var(--gold-light); }
.service-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.service-icon {
  width: 48px; height: 48px;
  color: var(--orange);
  margin-bottom: 20px;
}
.service-card.featured .service-icon { color: var(--gold-light); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.service-card > p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--slate-600);
  padding-left: 18px;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--slate-200);
  line-height: 1.5;
}
.service-list li:last-child { border-bottom: none; padding-bottom: 0; }
.service-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 1.1em;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.5px;
  transition: gap var(--duration);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { gap: 8px; }

/* ======================================================
   IMPACT / NUMBERS
   ====================================================== */
.impact {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--navy-dark);
}
.impact-bg {
  position: absolute;
  inset: 0;
}
.network-canvas-small {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.impact .container { position: relative; z-index: 2; }
.impact .section-title { color: var(--white); text-align: center; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 48px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration) var(--ease);
}
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}
.stat-card:hover { transform: translateY(-4px); }
.stat-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--white);
  line-height: 1;
  display: inline-block;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--orange);
  display: inline-block;
  vertical-align: top;
  margin-top: 8px;
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 12px;
  text-transform: uppercase;
}

/* ======================================================
   CASES / SOCIAL PROOF
   ====================================================== */
.cases {
  padding: var(--section-py) 0;
  background: var(--slate-100);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.case-logo-card {
  background: var(--white);
  border-radius: 12px;
  aspect-ratio: 2/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate-200);
  transition: all var(--duration) var(--ease);
}
.case-logo-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--orange); }
.case-logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-400);
  letter-spacing: 1px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
  position: relative;
  transition: all var(--duration) var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--orange);
  line-height: 0.8;
  margin-bottom: 12px;
  opacity: 0.5;
}
.testimonial-card > p {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 1rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--navy-dark); }
.testimonial-author span { font-size: 0.8rem; color: var(--slate-400); }

/* ======================================================
   BLOG
   ====================================================== */
.blog {
  padding: var(--section-py) 0;
  background: var(--white);
}
.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  background: var(--white);
  transition: all var(--duration) var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img-wrap { position: relative; }
.blog-img-placeholder {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-img-placeholder.navy { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); }
.blog-img-placeholder svg { width: 80px; opacity: 0.6; }
.blog-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 40px;
}
.blog-content { padding: 28px; }
.blog-meta { font-size: 0.8rem; color: var(--slate-400); margin-bottom: 10px; }
.blog-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}
.blog-card > .blog-content > p { font-size: 0.9rem; color: var(--slate-600); line-height: 1.65; margin-bottom: 20px; }
.blog-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
}
.blog-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-card-small {
  display: flex;
  gap: 16px;
  background: var(--slate-50);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  padding: 16px;
  transition: all var(--duration) var(--ease);
}
.blog-card-small:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.blog-img-small {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  flex-shrink: 0;
}
.blog-img-small.orange { background: linear-gradient(135deg, var(--orange), #ea580c); }
.blog-img-small.gold { background: linear-gradient(135deg, var(--gold), #92400e); }
.blog-img-small.slate { background: linear-gradient(135deg, var(--slate-600), var(--navy)); }
.blog-content-small { flex: 1; }
.blog-tag-small {
  display: inline-block;
  background: rgba(194,65,12,0.1);
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 40px;
  margin-bottom: 6px;
}
.blog-card-small h4 {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.4;
  margin-bottom: 8px;
}
.blog-card-small .blog-meta { font-size: 0.75rem; }

/* ======================================================
   CTA FINAL
   ====================================================== */
.cta-final {
  position: relative;
  padding: 120px 0;
  background: var(--navy);
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.network-canvas-cta {
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 2px;
  margin: 16px 0 24px;
}
.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ======================================================
   CONTACT
   ====================================================== */
.contact {
  padding: var(--section-py) 0;
  background: var(--slate-50);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { text-align: left; margin-bottom: 16px; font-size: 2.2rem; }
.contact-info > p { color: var(--slate-600); margin-bottom: 40px; }
.contact-channels { display: flex; flex-direction: column; gap: 20px; }
.channel { display: flex; gap: 16px; align-items: flex-start; }
.channel-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.channel strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 2px; letter-spacing: 0.5px; text-transform: uppercase; }
.channel a { font-size: 0.9rem; color: var(--orange); font-weight: 500; }
.channel a:hover { text-decoration: underline; }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--slate-800);
  background: var(--white);
  transition: border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(194,65,12,0.12);
}
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--slate-400); text-align: center; margin-top: 12px; }
.form-success {
  margin-top: 16px;
  padding: 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  color: #059669;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  padding-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 300px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { color: rgba(255,255,255,0.8); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { color: rgba(255,255,255,0.4); font-size: 0.9rem; transition: color var(--duration); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ======================================================
   AOS (INLINE ANIMATION SYSTEM)
   ====================================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-aos="fade-right"] { transform: translateX(-20px); }
[data-aos="fade-left"]  { transform: translateX(20px); }
[data-aos="zoom-in"]    { transform: scale(0.92); }
[data-aos="fade-down"]  { transform: translateY(-20px); }
[data-aos].aos-visible {
  opacity: 1;
  transform: none;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(3, 1fr); }
  .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
  .manifesto-label { display: flex; align-items: center; gap: 16px; }
  .manifesto-label .section-label { writing-mode: horizontal-tb; transform: none; }
  .label-line { width: 60px; height: 2px; margin: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; top: 70px; background: rgba(15,23,42,0.98); backdrop-filter: blur(16px); padding: 48px 32px; gap: 0; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links a { display: block; padding: 16px 0; font-size: 1.1rem; }
  .nav-links .nav-cta { background: none; border: none; text-align: left; padding: 16px 0; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-pillars { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 3rem; }
}
