/* ============================================
   SAPIENTUM - CSS MASTER FILE
   Online Reputation Management Agency
   ============================================ */

/* 1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================ */
:root {
  --navy: #0D1B4B;
  --navy-dark: #091440;
  --gold: #F5C518;
  --gold-dark: #D4A800;
  --white: #FFFFFF;
  --off-white: #F9F9F7;
  --gray-light: #F3F4F6;
  --text-dark: #1A1A1A;
  --text-mid: #6B7280;
  --green: #10B981;
  --red-soft: #F87171;
  --whatsapp: #25D366;

  --max-width: 1200px;
  --section-pad-desktop: 100px;
  --section-pad-mobile: 64px;
  --card-radius: 14px;
  --card-shadow: 0 4px 24px rgba(0,0,0,0.08);
  --btn-radius: 8px;
  --transition: 0.2s ease;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* 2. RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* 3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
}

h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
}

h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
}

p {
  font-size: 17px;
  line-height: 1.7;
}

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

.section {
  padding: var(--section-pad-desktop) 0;
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--white {
  background: var(--white);
}

.section--off-white {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
}

.section--navy .section-header p {
  color: rgba(255,255,255,0.7);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* 5. COMPONENTS
   ============================================ */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: scale(1.02);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: scale(1.02);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.card--navy {
  background: var(--navy);
  color: var(--white);
}

.card--gray {
  background: var(--gray-light);
  box-shadow: none;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

.badge-gold {
  background: var(--gold);
  color: var(--navy);
}

.badge-popular {
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,75,0.1);
}

.form-input.error,
.form-select.error {
  border-color: var(--red-soft);
}

.form-error {
  color: var(--red-soft);
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-global-msg {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
}

.form-global-msg--error {
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
}

/* Stars */
.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.star {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.star.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
}

.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* 6. HEADER & NAV
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 75, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 72px;
}

.nav-logo {
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}

.nav-logo-img {
  grid-column: 1;
  grid-row: 1 / 3;
  width: auto;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.nav-logo-name {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
}

.nav-logo-tagline {
  grid-column: 2;
  grid-row: 2;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 20px;
  border-radius: var(--btn-radius);
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: scale(1.02);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu .btn {
  font-size: 18px;
  padding: 16px 40px;
}

/* 7. FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(1.05);
  flex-shrink: 0;
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
  line-height: 1;
}

.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-email {
  color: var(--gold);
  font-weight: 500;
  font-size: 15px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* 8. WHATSAPP FLOAT
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--text-dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.2s ease;
  pointer-events: none;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--text-dark);
}

/* 9. COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 60px));
  width: calc(100% - 48px);
  max-width: 640px;
  z-index: 1100;
  background: var(--navy-dark);
  color: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(13,27,75,0.4), 0 2px 8px rgba(0,0,0,0.2);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner.hidden {
  transform: translateX(-50%) translateY(calc(100% + 60px));
  opacity: 0;
  pointer-events: none;
}

.cookie-banner-inner {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-body {
  flex: 1;
  min-width: 200px;
}

.cookie-banner-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  font-family: 'Sora', sans-serif;
}

.cookie-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin: 0;
}

.cookie-text strong {
  color: rgba(255,255,255,0.95);
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-accept {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}

.cookie-accept:hover {
  background: var(--gold-dark);
}

.cookie-essential {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.cookie-essential:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.cookie-preferences-link {
  color: var(--text-mid);
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

/* 10. SECTION-SPECIFIC STYLES
   ============================================ */

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  margin-bottom: 24px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 19px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-platforms {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-platforms span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.platform-pill {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}

/* Google Business Mockup */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mockup-shape {
  position: absolute;
  border-radius: 20px;
  opacity: 0.05;
  background: var(--white);
}

.mockup-shape-1 {
  width: 300px;
  height: 300px;
  top: -10%;
  right: -5%;
  transform: rotate(15deg);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.04;
  background: var(--gold);
}

.mockup-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 0;
  left: -5%;
  border-radius: 50%;
  opacity: 0.03;
  background: var(--white);
}

.gbp-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  width: 320px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.gbp-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F3F4F6;
}

.gbp-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.gbp-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.gbp-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gbp-stars-text {
  font-size: 13px;
  color: var(--text-mid);
}

.gbp-reviews-label {
  font-size: 12px;
  color: var(--text-mid);
  display: block;
  margin-top: 2px;
}

.gbp-mini-reviews {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.mini-review {
  background: #F9F9F7;
  border-radius: 10px;
  padding: 10px 12px;
}

.mini-review-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.mini-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.mini-review-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
}

.mini-stars {
  display: flex;
  gap: 1px;
  margin-left: auto;
}

.mini-stars span {
  color: var(--gold);
  font-size: 10px;
}

.mini-review-text {
  font-size: 11px;
  color: var(--text-mid);
  line-height: 1.4;
}

.gbp-btn-row {
  display: flex;
  gap: 8px;
}

.gbp-action-btn {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  border: 1.5px solid #E5E7EB;
  color: var(--navy);
  background: white;
  cursor: default;
}

.gbp-action-btn.primary-btn {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* PROBLEM section */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.problem-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-3px);
}

.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(248, 113, 113, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red-soft);
}

.problem-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.problem-card p {
  font-size: 15px;
  color: var(--text-mid);
}

.problem-closing {
  text-align: center;
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
}

/* PROCESS section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--gold) 0px,
    var(--gold) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-number-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-number-bg {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
}

.step-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.3);
}

.step-title {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 12px;
}

.step-desc {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.6;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.pricing-card--featured {
  border-top: 4px solid var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}

.pricing-card--featured:hover {
  transform: translateY(-12px);
}

.pricing-badge-wrap {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-mid);
}

.pricing-period {
  color: var(--text-mid);
  font-size: 14px;
  margin-bottom: 28px;
}

.pricing-divider {
  height: 1px;
  background: #F3F4F6;
  margin: 24px 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.pricing-features li .check {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta-note {
  text-align: center;
  font-size: 16px;
  color: var(--text-mid);
}

.pricing-cta-note a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

/* RESULTS / STATS */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 72px;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 36px 20px;
  background: var(--navy);
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: 0 8px 40px rgba(13, 27, 75, 0.10);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13, 27, 75, 0.14);
}

/* Stars always visible inside testimonial cards */
.testimonial-card .star {
  opacity: 1;
  transform: scale(1);
  font-size: 20px;
  color: var(--gold);
}

.testimonial-card .stars {
  gap: 3px;
  margin-bottom: 20px;
}

/* Big decorative quote mark */
.testimonial-quote {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.testimonial-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* Separator before author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #F0F0EE;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: white;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.author-biz {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

.author-biz::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z' fill='%234285F4'/%3E%3Cpath d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z' fill='%2334A853'/%3E%3Cpath d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l3.66-2.84z' fill='%23FBBC05'/%3E%3Cpath d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z' fill='%23EA4335'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  vertical-align: middle;
}

/* SECTORS */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sector-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--card-radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  color: var(--white);
}

.sector-card:hover {
  background: rgba(245, 197, 24, 0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.sector-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(245, 197, 24, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
  transition: background 0.3s;
}

.sector-card:hover .sector-icon {
  background: rgba(245, 197, 24, 0.25);
}

.sector-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}

.sector-link {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

/* WEB DESIGN BANNER */
.web-banner-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.web-banner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--white);
  border: 1.5px solid #EDECEA;
  border-left: 4px solid var(--gold);
  border-radius: var(--card-radius);
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(13,27,75,0.06);
}

.web-banner-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: #FFF8E7;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.web-banner-content {
  flex: 1;
}

.web-banner-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.web-banner-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.web-banner-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

.web-banner-cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.web-banner-note {
  font-size: 12px;
  color: var(--text-mid);
  margin: 0;
  text-align: center;
}

@media (max-width: 900px) {
  .web-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    border-left: 1.5px solid #EDECEA;
    border-top: 4px solid var(--gold);
  }

  .web-banner-label {
    display: block;
  }
}

/* WEB SERVICE SECTION (conseguir-resenas.html #diseno-web) */
.web-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.web-service-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.web-service-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin: 10px 0 16px;
}

.web-service-lead {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0 0 32px;
}

.web-service-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.web-service-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.web-service-feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: #FFF8E7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.web-service-feature strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.web-service-feature p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

/* Browser mockup */
.web-service-visual {
  position: relative;
}

.browser-mockup {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13,27,75,0.18), 0 4px 16px rgba(13,27,75,0.08);
  border: 1px solid rgba(13,27,75,0.1);
  background: var(--white);
}

.browser-bar {
  background: #F3F4F6;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #E5E7EB;
}

.browser-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.browser-url {
  flex: 1;
  background: var(--white);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  color: #6B7280;
  font-family: 'Inter', sans-serif;
  border: 1px solid #E5E7EB;
}

.browser-body {
  padding: 0;
  background: var(--white);
}

.browser-hero-mock {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3080 100%);
  padding: 32px 24px;
  text-align: center;
}

.browser-headline-mock {
  height: 14px;
  background: rgba(255,255,255,0.85);
  border-radius: 7px;
  width: 70%;
  margin: 0 auto 10px;
}

.browser-subline-mock {
  height: 9px;
  background: rgba(255,255,255,0.4);
  border-radius: 5px;
  width: 50%;
  margin: 0 auto 18px;
}

.browser-btn-mock {
  height: 30px;
  background: var(--gold);
  border-radius: 8px;
  width: 110px;
  margin: 0 auto;
}

.browser-cards-mock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px;
}

.browser-card-mock {
  height: 60px;
  background: #F9FAFB;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
}

.web-service-badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--navy);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 16px rgba(13,27,75,0.22);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .web-service-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .web-service-visual {
    order: -1;
  }

  .web-service-badge {
    bottom: -12px;
    right: 0;
    font-size: 12px;
    padding: 8px 14px;
  }
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E5E7EB;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  color: var(--text-dark);
  user-select: none;
}

.faq-question:hover {
  color: var(--navy);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
  background: var(--navy);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}

.about-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 auto;
  position: relative;
}

.about-photo::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(13,27,75,0.2);
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-mid);
  font-size: 18px;
  line-height: 1.8;
}

/* FINAL CTA */
.cta-section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  margin-bottom: 48px;
}

.cta-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.cta-form .grid-2 {
  margin-bottom: 0;
}

.cta-form .form-label {
  color: rgba(255,255,255,0.8);
}

.cta-form .form-input,
.cta-form .form-select {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}

.cta-form .form-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.cta-form .form-input:focus,
.cta-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.15);
}

.cta-form .form-select option {
  background: var(--navy);
  color: var(--white);
}

.cta-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--whatsapp);
  font-weight: 600;
  font-size: 15px;
  margin-top: 16px;
  transition: opacity var(--transition);
}

.cta-wa-link:hover {
  opacity: 0.8;
}

.cta-fine-print {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
}

/* BREADCRUMB */
.breadcrumb {
  background: var(--off-white);
  padding: 16px 0;
  border-bottom: 1px solid #E5E7EB;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 14px;
  color: var(--text-mid);
}

.breadcrumb-list li:not(:last-child)::after {
  content: '›';
  margin-left: 8px;
  color: #D1D5DB;
}

.breadcrumb-list a {
  color: var(--navy);
  font-weight: 500;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.blog-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3080 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.blog-img-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.blog-tag {
  display: inline-block;
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold-dark);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-date {
  font-size: 13px;
  color: var(--text-mid);
}

.blog-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  line-height: 1.35;
  color: var(--text-dark);
}

.blog-card h3 a:hover {
  color: var(--navy);
}

.blog-excerpt {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.blog-read-more:hover {
  gap: 8px;
}

/* ARTICLE */
.article-header {
  background: var(--navy);
  color: var(--white);
  padding: 120px 0 60px;
}

.article-header h1 {
  margin-bottom: 20px;
  max-width: 800px;
}

.article-meta {
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  flex-wrap: wrap;
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px;
}

.article-content h2 {
  font-size: 26px;
  color: var(--navy);
  margin: 40px 0 16px;
}

.article-content h3 {
  font-size: 21px;
  color: var(--text-dark);
  margin: 30px 0 12px;
}

.article-content p {
  margin-bottom: 20px;
  color: var(--text-dark);
  font-size: 17px;
}

.article-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-content ul li {
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--text-dark);
}

.article-cta-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 48px 0;
}

.article-cta-box h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.article-cta-box p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

/* LEGAL */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px;
}

.legal-content h1 {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 8px;
}

.legal-content h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 36px 0 12px;
}

.legal-content p {
  color: var(--text-mid);
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--text-mid);
}

.legal-content ul li {
  margin-bottom: 6px;
  font-size: 16px;
}

.legal-date {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #E5E7EB;
}

/* AUDIT page */
.audit-page {
  min-height: 100vh;
  background: var(--off-white);
  padding-top: 72px;
}

.audit-header {
  background: var(--white);
  padding: 20px 24px;
  box-shadow: 0 1px 0 #E5E7EB;
  display: flex;
  align-items: center;
}

.audit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 64px 0;
  align-items: start;
}

.audit-left h1 {
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 20px;
}

.audit-left p {
  color: var(--text-mid);
  font-size: 17px;
  margin-bottom: 32px;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
}

.trust-point .check-icon {
  color: var(--green);
  flex-shrink: 0;
}

.audit-what-box {
  background: var(--navy);
  border-radius: var(--card-radius);
  padding: 28px;
  margin-top: 32px;
  color: var(--white);
}

.audit-what-box h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.audit-what-box ul {
  list-style: none;
  padding: 0;
}

.audit-what-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}

.audit-what-box li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
}

.audit-form-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  padding: 40px;
}

.audit-form-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}

.audit-form-subtitle {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.form-privacy {
  font-size: 12px;
  color: var(--text-mid);
  text-align: center;
  margin-top: 12px;
}

.form-privacy a {
  color: var(--navy);
  text-decoration: underline;
}

/* THANK YOU page */
.gracias-page {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 40px 24px;
}

.gracias-content {
  max-width: 560px;
}

.gracias-check {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: white;
  animation: checkPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes checkPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.gracias-content h1 {
  font-size: 38px;
  color: var(--white);
  margin-bottom: 16px;
}

.gracias-content p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  margin-bottom: 40px;
}

.gracias-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.gracias-note {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

/* Sector/Location page hero */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  color: var(--white);
}

.page-hero h1 {
  margin-bottom: 20px;
  max-width: 700px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 19px;
  max-width: 600px;
  margin-bottom: 36px;
}

/* Page section with content */
.content-section {
  padding: 80px 0;
}

.content-section h2 {
  color: var(--navy);
  margin-bottom: 20px;
}

.content-section p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 17px;
}

/* Sector results */
.results-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.result-stat-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--card-radius);
  padding: 36px 24px;
  text-align: center;
}

.result-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}

.result-label {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}

/* 11. ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* 12. RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 1100px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .process-steps::before {
    display: none;
  }

  .sectors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  .audit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .results-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-pad-mobile) 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 0;
    gap: 48px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-platforms {
    justify-content: center;
  }

  .hero-mockup {
    display: none;
  }

  .gbp-card {
    width: 280px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    flex-direction: column;
    gap: 12px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner {
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .cookie-banner-inner {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-accept,
  .cookie-essential {
    flex: 1;
    text-align: center;
  }

  .gracias-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-form .grid-2 {
    grid-template-columns: 1fr;
  }
}

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

  h1 { font-size: 32px; }
  h2 { font-size: 26px; }

  .hero-title { font-size: 32px; }

  .gbp-card { width: 100%; max-width: 300px; }

  .cta-form {
    padding: 24px 20px;
  }
}
