/* ═══════════════════════════════════════════════════════
   NOVA TRADE PARTNERS — Shared Stylesheet
   novatradepartners.com
   ═══════════════════════════════════════════════════════ */

/* ── VARIABLES ───────────────────────────────────────── */
:root {
  --navy-dark:  #122847;
  --navy:       #1A3A6C;
  --navy-light: #2B5299;
  --gray:       #C4CDD6;
  --gray-light: #EEF1F4;
  --cream:      #F5F2ED;
  --text-dark:  #0D0D0D;
  --text-mid:   #4A5568;
  --text-light: #718096;
  --white:      #FFFFFF;
  --nav-h:      72px;
  --radius-lg:  20px;
  --radius-md:  12px;
  --radius-sm:  8px;
  --shadow-sm:  0 2px 8px rgba(26,58,108,0.08);
  --shadow-md:  0 8px 32px rgba(26,58,108,0.12);
  --shadow-lg:  0 20px 60px rgba(26,58,108,0.18);
  --transition: all 0.3s ease;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-mid);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── LAYOUT ──────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
section { padding: 96px 0; }
section.cream { background: var(--cream); }
section.dark  { background: linear-gradient(145deg, var(--navy-dark), var(--navy)); color: var(--white); }

/* ── SECTION LABELS ──────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(26,58,108,0.07);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-tag.light { color: var(--gray); background: rgba(255,255,255,0.15); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 18px; color: var(--text-light); }
.section-header.dark-text h2 { color: var(--white); }
.section-header.dark-text p  { color: rgba(255,255,255,0.7); }

/* ── TYPOGRAPHY ──────────────────────────────────────── */
h1 { font-size: clamp(36px,5vw,62px); font-weight: 900; line-height: 1.12; letter-spacing: -1px; color: var(--text-dark); }
h2 { font-size: clamp(28px,4vw,44px); font-weight: 800; line-height: 1.2;  letter-spacing: -.5px; color: var(--text-dark); }
h3 { font-size: clamp(18px,2.5vw,24px); font-weight: 700; line-height: 1.3; color: var(--text-dark); }
h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); }
p  { font-size: 16px; line-height: 1.7; color: var(--text-mid); }
.lead { font-size: 18px; line-height: 1.65; color: var(--text-mid); }
.text-white h1, .text-white h2, .text-white h3, .text-white p { color: var(--white); }
.text-white p, .text-white .lead { color: rgba(255,255,255,0.82); }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; letter-spacing: .3px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,58,108,0.25);
}
.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,108,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-icon { font-size: 18px; }

/* ── NAVIGATION ──────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.transparent { background: transparent; }
.nav.scrolled {
  background: rgba(18,40,71,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1200px; margin: 0 auto; padding: 0 5%;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo svg { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; letter-spacing: .3px;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links a.active { color: var(--white); }
.nav-cta {
  padding: 10px 22px !important;
  background: var(--white) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: var(--cream) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.hamburger {
  display: none; color: var(--white);
  font-size: 24px; padding: 8px;
  background: none; border: none; cursor: pointer;
}
.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--navy-dark);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 0;
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 12px; }
.mobile-menu .m-cta {
  display: block; text-align: center; margin-top: 8px;
  padding: 14px; background: var(--white); color: var(--navy);
  font-weight: 700; border-radius: 10px;
}

/* ── HERO (sections) ─────────────────────────────────── */
.hero-section {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding-top: var(--nav-h);
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-video-wrap video {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(18,40,71,0.82) 0%, rgba(26,58,108,0.70) 60%, rgba(43,82,153,0.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 5%;
  width: 100%;
}
.hero-inner { max-width: 720px; }
.hero-inner h1 { color: var(--white); margin-bottom: 24px; }
.hero-inner .lead { color: rgba(255,255,255,0.85); margin-bottom: 40px; font-size: 20px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.7;transform:scale(1.2)} }

/* ── Page hero (interior pages) ─────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero .lead { color: rgba(255,255,255,0.78); max-width: 620px; margin: 0 auto 32px; }

/* ── TRUST BAR ───────────────────────────────────────── */
.trust-bar { padding: 48px 0; border-top: 1px solid var(--gray-light); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px;
  text-align: center;
}
.trust-item strong { display: block; font-size: 40px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.trust-item span   { font-size: 14px; color: var(--text-light); font-weight: 500; }

/* ── SERVICE CARDS ───────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(26,58,108,0.08);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 12px; font-size: 19px; }
.service-card p  { font-size: 15px; color: var(--text-light); line-height: 1.65; }

/* ── DETAIL SERVICE (servicios page) ────────────────── */
.service-detail { padding: 72px 0; border-bottom: 1px solid var(--gray-light); }
.service-detail:last-of-type { border-bottom: none; }
.service-detail-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-detail-text .tag { margin-bottom: 12px; }
.service-detail-text h2 { margin-bottom: 16px; }
.service-detail-text p  { margin-bottom: 24px; }
.service-list { margin: 24px 0; }
.service-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--gray-light);
  font-size: 15px; color: var(--text-mid);
}
.service-list li:last-child { border-bottom: none; }
.service-list .check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(26,58,108,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 11px; font-weight: 700; margin-top: 1px;
}
.service-detail-img {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--gray-light);
  position: relative;
}
.service-detail-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.service-detail-img .img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: rgba(255,255,255,0.5); font-size: 14px; text-align: center; padding: 24px;
}
.service-detail-img .img-placeholder span { font-size: 40px; }

/* ── HOW IT WORKS ────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute; top: 36px; left: calc(16.66% + 16px); right: calc(16.66% + 16px); height: 2px;
  background: linear-gradient(90deg, var(--navy-light), var(--gray));
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900; color: var(--white);
  margin: 0 auto 24px; box-shadow: 0 8px 24px rgba(26,58,108,0.3);
}
.step-item h3 { margin-bottom: 12px; font-size: 18px; }
.step-item p  { font-size: 15px; color: var(--text-light); }

/* ── INDUSTRY GRID ───────────────────────────────────── */
.industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.industry-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  background: var(--navy);
}
.industry-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.industry-card:hover img { transform: scale(1.06); }
.industry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(18,40,71,0.88) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
}
.industry-overlay .ind-icon { font-size: 22px; margin-bottom: 6px; }
.industry-overlay h4 { color: var(--white); font-size: 14px; font-weight: 700; line-height: 1.3; }
.industry-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}

/* ── INDUSTRY DETAIL CARDS (industrias page) ─────────── */
.industry-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.industry-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26,58,108,0.08);
  transition: var(--transition);
}
.industry-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ind-card-img { aspect-ratio: 16/7; overflow: hidden; background: var(--gray-light); }
.ind-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.industry-detail-card:hover .ind-card-img img { transform: scale(1.04); }
.ind-card-body { padding: 28px 32px; }
.ind-card-body .ind-icon-sm {
  font-size: 24px; width: 48px; height: 48px;
  background: rgba(26,58,108,0.07); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.ind-card-body h3 { margin-bottom: 10px; font-size: 20px; }
.ind-card-body p  { font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ind-tag {
  font-size: 11px; font-weight: 600; letter-spacing: .5px;
  padding: 4px 10px; border-radius: 20px;
  background: var(--gray-light); color: var(--text-mid);
}

/* ── DIFFERENTIATOR CARDS ────────────────────────────── */
.diff-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.diff-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.diff-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.diff-icon { font-size: 32px; margin-bottom: 16px; }
.diff-card h3 { color: var(--white); margin-bottom: 10px; font-size: 18px; }
.diff-card p  { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.65; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(26,58,108,0.1);
  overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--text-dark);
  gap: 16px;
}
.faq-q:hover { color: var(--navy); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--gray-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--navy); color: var(--white); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 15px; color: var(--text-light); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ── BLOG CARDS ──────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26,58,108,0.08);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-light); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img .blog-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
}
.blog-card-body { padding: 24px 28px; }
.blog-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.blog-meta span { font-size: 12px; color: var(--text-light); }
.blog-meta .dot-sep { color: var(--gray); }
.blog-category {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--navy-light);
}
.blog-card-body h3 { font-size: 18px; line-height: 1.4; margin-bottom: 10px; }
.blog-card-body h3 a:hover { color: var(--navy); }
.blog-card-body p  { font-size: 14px; color: var(--text-light); line-height: 1.65; margin-bottom: 20px; }
.blog-read-more { font-size: 14px; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.blog-read-more:hover { gap: 10px; }

/* ── CONTACT FORM ────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-md); }
.form-title { font-size: 24px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.form-subtitle { font-size: 14px; color: var(--text-light); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
input, select, textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 15px; color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,108,0.1);
}
textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--navy); color: var(--white);
  font-size: 16px; font-weight: 700; border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,58,108,0.3); }
.form-success {
  display: none; text-align: center; padding: 32px;
  background: #d1fae5; border-radius: var(--radius-md);
  font-size: 16px; font-weight: 600; color: #065f46;
}

.contact-info { padding: 8px 0; }
.contact-info h3 { font-size: 26px; margin-bottom: 12px; }
.contact-info .lead { margin-bottom: 40px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid rgba(26,58,108,0.08);
}
.contact-item:last-of-type { border-bottom: none; }
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(26,58,108,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.ci-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.ci-value { font-size: 16px; font-weight: 600; color: var(--text-dark); }
.ci-value a:hover { color: var(--navy); }
.whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; padding: 16px;
  background: #25d366; color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 700;
  margin-top: 32px; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.whatsapp-btn:hover { background: #1eb957; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* ── EXPORT PAGE ─────────────────────────────────────── */
.export-highlight {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
  border-radius: var(--radius-lg); padding: 40px;
  color: var(--white); text-align: center; margin-bottom: 40px;
}
.export-highlight h3 { color: var(--white); font-size: 22px; margin-bottom: 8px; }
.export-highlight p  { color: rgba(255,255,255,0.8); }

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  text-align: center; padding: 96px 0;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.75); font-size: 18px; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── TESTIMONIAL ─────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid rgba(26,58,108,0.08);
}
.testimonial-stars { color: #F59E0B; margin-bottom: 16px; font-size: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--text-mid); margin-bottom: 24px; font-style: italic; }
.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(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 16px;
}
.author-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.author-company { font-size: 12px; color: var(--text-light); }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .brand-desc { font-size: 14px; line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,0.18); }
footer h5 { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; }

/* ── ANIMATIONS ──────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .industries-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-inner .lead { font-size: 17px; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .industry-detail-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-inner.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-banner .cta-btns { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}
