/* ============================================
   LRM COMUNICACIONES - MODERN REDESIGN
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #0a1628;
  --primary-light: #142240;
  --accent: #ff4a00;
  --accent-light: #ff6320;
  --accent-glow: rgba(255, 74, 0, 0.3);
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f1f3;
  --gray-200: #e2e4e8;
  --gray-400: #9ca3af;
  --gray-600: #6b7280;
  --gray-800: #1f2937;
  --text: #1a1a2e;
  --text-light: #64748b;
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1f3c 100%);
  --gradient-accent: linear-gradient(135deg, #ff4a00 0%, #ff6320 100%);
  --gradient-dark: linear-gradient(180deg, #0a1628 0%, #142240 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --shadow-gold: 0 4px 30px rgba(255,74,0,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

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

ul { list-style: none; }

.container {
  width: min(100%, 1200px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--primary);
  margin-bottom: 20px;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.8;
  font-weight: 400;
}

.section-subtitle--light {
  color: rgba(255,255,255,0.75);
}

.highlight {
  color: var(--accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,74,0,0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255,74,0,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,74,0,0.08);
}

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

.btn--dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  height: 110px;
  transition: var(--transition);
}

.navbar.scrolled .navbar__logo img {
  height: 75px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 10px 18px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.navbar__link--dropdown {
  cursor: pointer;
}

.navbar__link--dropdown::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 2px;
  transition: var(--transition);
}

.dropdown {
  position: relative;
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 12px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-xl);
}

.dropdown:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.dropdown__item {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown__item:hover {
  color: var(--accent);
  background: rgba(255,74,0,0.08);
}

.navbar__cta {
  margin-left: 8px;
}

/* Mobile Menu */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../assets/img/hero-bg.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,74,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,74,0,0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255,74,0,0.12);
  border: 1px solid rgba(255,74,0,0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__badge span {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero__title .accent-line {
  display: block;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__content {
  max-width: 640px;
}

.hero__title .accent-line {
  display: inline;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.hero__visual-img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero__visual-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 460px;
}

.vcc-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vcc-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.vcc-step:hover {
  background: rgba(255,255,255,0.05);
}

.vcc-step__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
}

.vcc-step__icon--v {
  background: rgba(255,74,0,0.15);
  color: var(--accent);
}

.vcc-step__icon--c1 {
  background: rgba(255,74,0,0.25);
  color: var(--accent-light);
}

.vcc-step__icon--c2 {
  background: rgba(255,74,0,0.35);
  color: var(--accent-light);
}

.vcc-step__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.vcc-step__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* --- Trusted Logos Bar --- */
.trusted-bar {
  background: var(--gray-50);
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
}

.trusted-bar__label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.trusted-bar__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.5;
}

.trusted-bar__logos span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 1px;
}

/* --- About Section --- */
.about {
  padding: 120px 0;
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.about__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: -1;
}

.about__stats {
  position: absolute;
  bottom: -30px;
  left: 30px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 32px;
  min-width: 380px;
}

.about__stat {
  text-align: center;
  min-width: 100px;
}

.about__stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  height: 2.2rem;
  min-width: 70px;
  font-variant-numeric: tabular-nums;
}

.about__stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 500;
}

.about__text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.about__feature svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* --- Services Section --- */
.services {
  padding: 120px 0;
  background: var(--gray-50);
}

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

.services__header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,74,0,0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(255,74,0,0.1), rgba(255,74,0,0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, rgba(255,74,0,0.2), rgba(255,74,0,0.1));
  transform: scale(1.05);
}

.service-card__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.service-card__title {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__list {
  text-align: left;
  margin-bottom: 24px;
}

.service-card__list li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card__link:hover {
  gap: 10px;
}

/* --- Methodology Section --- */
.methodology {
  padding: 120px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.methodology::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(255,74,0,0.06) 0%, transparent 60%);
}

.methodology__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.methodology__timeline {
  position: relative;
  padding-left: 40px;
}

.methodology__timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(255,74,0,0.2));
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item__dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--accent);
  z-index: 1;
}

.timeline-item__period {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.timeline-item__title {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline-item__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.methodology__image {
  display: flex;
  justify-content: center;
}

.methodology__image img {
  max-height: 500px;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.05);
  border-radius: var(--radius-md);
}

/* --- Stats Section --- */
.stats {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 24px;
}

.stat-item__number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__number .accent {
  color: var(--accent);
}

.stat-item__label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.stat-item__divider {
  width: 32px;
  height: 3px;
  background: var(--gradient-accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* --- Coverage / Map Section --- */
.coverage {
  padding: 120px 0;
  background: var(--gray-50);
}

.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coverage__map {
  display: flex;
  justify-content: center;
}

.coverage__map img {
  max-height: 700px;
  object-fit: contain;
}

.coverage__content .section-subtitle {
  margin-bottom: 32px;
}

.coverage__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coverage__highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.coverage__highlight:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.coverage__highlight-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,74,0,0.15), rgba(255,74,0,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.coverage__highlight-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

/* --- Value Proposition --- */
.value-prop {
  padding: 100px 0;
  background: var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.value-prop::before,
.value-prop::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,74,0,0.08), transparent 70%);
  border-radius: 50%;
}

.value-prop::before { top: -100px; left: -100px; }
.value-prop::after { bottom: -100px; right: -100px; }

.value-prop__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.value-prop__big {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.value-prop__text {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}

.value-prop__small {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* --- Team Section --- */
.team {
  padding: 120px 0;
}

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

.team__header .section-subtitle {
  margin: 0 auto;
}

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

.team__grid--bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  text-align: center;
  padding: 20px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.team-card:hover {
  background: var(--gray-50);
  transform: translateY(-4px);
}

.team-card__photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gray-200);
  transition: var(--transition);
}

.team-card:hover .team-card__photo {
  border-color: var(--accent);
  box-shadow: var(--shadow-gold);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
}

/* --- Testimonials Section --- */
.testimonials {
  padding: 120px 0;
  background: var(--gray-50);
}

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

.testimonials__header .section-subtitle {
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(255,74,0,0.3);
}

.testimonial-card__quote {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* --- Contact Section --- */
.contact {
  padding: 120px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,74,0,0.06) 0%, transparent 50%);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact__channel:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,74,0,0.3);
}

.contact__channel-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(255,74,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__channel-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.contact__channel-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact__channel-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

.contact__social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.contact__social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.contact__social-link:hover {
  background: rgba(255,74,0,0.15);
  border-color: var(--accent);
}

.contact__social-link svg {
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.7);
}

.contact__social-link:hover svg {
  color: var(--accent);
}

/* Contact Form */
.contact__form-wrapper {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(255,74,0,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option {
  background: var(--primary);
  color: var(--white);
}

.contact__form .btn {
  align-self: flex-start;
  width: 100%;
  justify-content: center;
}

.contact__form-note {
  margin-top: -8px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
}

.contact__form-status {
  min-height: 1.5rem;
  font-size: 0.92rem;
  color: #f6c26b;
}

.contact__form-status.is-success {
  color: #86efac;
}

/* --- Footer --- */
.footer {
  background: #060e1a;
  padding: 60px 0 24px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 320px;
}

.footer__logo img {
  height: 100px;
}

.footer__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* --- Subpage Hero --- */
.page-hero {
  padding: 140px 0 80px;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 70% 40%, rgba(255,74,0,0.08) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.page-hero__breadcrumb a {
  color: rgba(255,255,255,0.5);
}

.page-hero__breadcrumb a:hover { color: var(--accent); }

.page-hero__breadcrumb span { color: var(--accent); }

.page-hero__title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- Service Detail Section --- */
.svc-section {
  padding: 80px 0;
}

.svc-section:nth-child(even) {
  background: var(--gray-50);
}

.svc-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.svc-section:nth-child(even) .svc-section__grid {
  direction: rtl;
}

.svc-section:nth-child(even) .svc-section__grid > * {
  direction: ltr;
}

.svc-section__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.svc-section__image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-section__image:hover img {
  transform: scale(1.03);
}

.svc-section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.svc-section__title {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.svc-section__text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.svc-section__list {
  margin-bottom: 24px;
}

.svc-section__list li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.svc-section__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 7px;
}

/* --- Press / Blog Cards --- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 80px 0;
}

.press-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.press-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,74,0,0.2);
}

.press-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.press-card__body {
  padding: 24px;
}

.press-card__source {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.press-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 12px;
}

.press-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.press-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.press-card__link:hover { gap: 10px; }

/* --- Media Logos Grid --- */
.media-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.media-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.media-logo {
  padding: 16px 28px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-600);
  transition: var(--transition);
}

.media-logo:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 80px 0;
  background: var(--gradient-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,74,0,0.08) 0%, transparent 60%);
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Blog Cards --- */
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-card__author-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-card__author-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* --- Subpage responsive --- */
@media (max-width: 768px) {
  .svc-section__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .svc-section:nth-child(even) .svc-section__grid {
    direction: ltr;
  }

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

  .page-hero {
    padding: 120px 0 60px;
  }
}

@media (max-width: 1024px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__desc { margin: 0 auto 36px; }
  .hero__buttons { justify-content: center; }

  .hero__visual { order: 1; }
  .hero__visual-card { max-width: 400px; }

  .about__grid,
  .methodology__grid,
  .coverage__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image-wrapper { order: 1; }
  .about__text { order: 0; }

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

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

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

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

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

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    overscroll-behavior-x: none;
  }

  .container {
    width: 100%;
    padding: 0 18px;
  }

  .navbar,
  .hero,
  .trusted-bar,
  .about,
  .services,
  .methodology,
  .stats,
  .coverage,
  .value-prop,
  .team,
  .testimonials,
  .contact,
  .footer,
  .page-hero,
  .svc-section,
  .cta-banner {
    overflow-x: clip;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 32px 40px;
    gap: 4px;
    transition: var(--transition-slow);
    align-items: stretch;
  }

  .navbar__menu.open {
    right: 0;
  }

  .navbar__logo img {
    height: 78px;
  }

  .navbar.scrolled .navbar__logo img {
    height: 58px;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__cta {
    margin-left: 0;
    margin-top: 16px;
  }

  .dropdown__menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(255,255,255,0.03);
    border: none;
    padding: 4px 0 4px 16px;
    min-width: auto;
    box-shadow: none;
    display: none;
  }

  .dropdown.open .dropdown__menu {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    line-height: 1.08;
  }

  .hero__visual-img {
    margin: 0 auto;
  }

  .section-label {
    width: 100%;
    justify-content: center;
    text-align: center;
    letter-spacing: 2px;
  }

  .section-title {
    font-size: clamp(1.9rem, 8.6vw, 2.6rem);
  }

  .section-subtitle {
    font-size: 1rem;
    line-height: 1.75;
  }

  .section-title,
  .section-subtitle,
  .hero__content,
  .about__text,
  .methodology__timeline,
  .coverage__content,
  .services__header,
  .team__header,
  .testimonials__header,
  .contact__info,
  .page-hero .container,
  .svc-section__grid > div:last-child,
  .press-card__body,
  .cta-banner,
  .footer__top,
  .footer__brand {
    text-align: center;
  }

  .hero__desc,
  .section-subtitle,
  .about__text p,
  .timeline-item__desc,
  .vcc-step__desc,
  .coverage__content .section-subtitle,
  .press-card__excerpt,
  .svc-section__text,
  .page-hero__desc,
  .cta-banner__text,
  .contact__form-note,
  .contact__channel-value,
  .footer__brand p {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    text-align-last: center;
    hyphens: auto;
  }

  .hero__badge,
  .hero__buttons,
  .contact__social,
  .blog-card__meta,
  .page-hero__breadcrumb {
    justify-content: center;
  }

  .page-hero__breadcrumb {
    flex-wrap: wrap;
  }

  .services__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

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

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

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

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

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .about__stats {
    position: static;
    margin-top: 24px;
    justify-content: center;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 22px 18px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .about__stat {
    min-width: 0;
    flex: 1 1 96px;
  }

  .about__features {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .about__feature,
  .coverage__highlight,
  .contact__channel {
    width: 100%;
    max-width: 30rem;
    margin: 0 auto;
  }

  .about__feature {
    justify-content: center;
    text-align: center;
  }

  .service-card {
    padding: 32px 22px;
  }

  .service-card__desc {
    text-align: justify;
    text-align-last: center;
    hyphens: auto;
  }

  .service-card__list,
  .svc-section__list {
    display: grid;
    gap: 10px;
    justify-items: center;
  }

  .service-card__list li,
  .svc-section__list li {
    width: min(100%, 30rem);
    justify-content: center;
    text-align: center;
  }

  .service-card__link,
  .press-card__link {
    justify-content: center;
  }

  .methodology__timeline {
    padding-left: 0;
  }

  .methodology__timeline::before,
  .timeline-item__dot {
    display: none;
  }

  .timeline-item {
    padding-bottom: 28px;
  }

  .coverage__highlight {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

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

  .contact__form-wrapper {
    padding: 32px 20px;
  }

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

  .svc-section {
    padding: 64px 0;
  }

  .svc-section__title {
    font-size: 1.4rem;
  }

  .svc-section__image img {
    height: auto;
    max-height: 320px;
  }

  .press-card__body {
    padding: 22px 20px;
  }

  .coverage__map {
    order: 1;
  }
  .coverage__content {
    order: 0;
  }
}

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

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