/* ===== EXCELLENT SERVICIOS — DESIGN SYSTEM ===== */
:root {
  --ink: #0B1D3A;
  --ink-mid: #152C52;
  --teal: #0EA59F;
  --teal-hover: #0C8983;
  --teal-pale: #E4F5F4;
  --stone: #F2F4F7;
  --white: #FFFFFF;
  --s900: #0F172A;
  --s800: #1E293B;
  --s700: #334155;
  --s500: #64748B;
  --s400: #94A3B8;
  --s300: #CBD5E1;
  --s200: #E7E9EE;
  --s100: #F1F5F9;
  --gold: #BFA24A;

  --bg: var(--white);
  --bg-alt: var(--stone);
  --bg-dark: var(--ink);
  --tx: var(--s800);
  --tx2: var(--s500);
  --accent: var(--teal);
  --accent-h: var(--teal-hover);
  --accent-p: var(--teal-pale);
  --card: var(--white);
  --card-b: var(--s200);
  --hdr-bg: rgba(255,255,255,.92);
  --hdr-b: var(--s200);

  --ff: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --sec-py: clamp(3.5rem, 8vw, 6rem);
  --mx: 1120px;
  --rx: .5rem;
}

/* Deliberately single-theme: this is a corporate site and must always present
   the light, white-forward brand look regardless of the visitor's OS/browser
   dark-mode preference. No prefers-color-scheme override on purpose. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff); color: var(--tx); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; cursor: pointer; background: none; }

.container { max-width: var(--mx); margin: 0 auto; padding: 0 1.5rem; }
.eyebrow { display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -.01em; line-height: 1.2; text-wrap: balance; color: var(--tx); margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--tx2); max-width: 600px; line-height: 1.7; }

.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.75rem; border-radius: var(--rx); font-weight: 600; font-size: .925rem; transition: all .2s ease; white-space: nowrap; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-h); transform: translateY(-1px); }
.btn-ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--accent-p); border-color: var(--accent); color: var(--accent); }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,.4); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-outline { border: 1.5px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent-p); }
.btn-sm { padding: .6rem 1.25rem; font-size: .85rem; }

.icon { width: 24px; height: 24px; flex-shrink: 0; }
.icon-lg { width: 40px; height: 40px; }

/* ===== HEADER ===== */
.header { position: sticky; top: 0; z-index: 100; background: var(--hdr-bg); backdrop-filter: blur(12px); border-bottom: 1px solid var(--hdr-b); transition: box-shadow .3s; }
.header.scrolled { box-shadow: 0 2px 20px rgba(11,29,58,.08); }
.header-inner { display: flex; align-items: center; gap: 2rem; height: 72px; }
.logo { display: flex; align-items: center; height: 40px; }
.logo img { height: 100%; width: auto; display: block; }
.logo .logo-light { display: none; }
.footer-brand .logo { height: 34px; }

.nav { display: flex; gap: .25rem; margin-left: auto; align-items: center; }
.nav > a { padding: .5rem .85rem; font-size: .875rem; font-weight: 500; color: var(--tx2); border-radius: var(--rx); transition: color .2s, background .2s; }
.nav > a:hover, .nav > a.active { color: var(--accent); background: var(--accent-p); }
.header-cta { margin-left: .5rem; }
.menu-toggle { display: none; color: var(--tx); padding: .5rem; }

/* Dropdown nav groups */
.nav-group { position: relative; }
.nav-group > button { display: flex; align-items: center; gap: .3rem; padding: .5rem .85rem; font-size: .875rem; font-weight: 500; color: var(--tx2); border-radius: var(--rx); transition: color .2s, background .2s; }
.nav-group > button svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-group:hover > button, .nav-group.active > button { color: var(--accent); background: var(--accent-p); }
.nav-group:hover > button svg { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: calc(100% + .5rem); left: 0; min-width: 220px; background: var(--card); border: 1px solid var(--card-b); border-radius: var(--rx); box-shadow: 0 12px 32px rgba(11,29,58,.14); padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s, transform .18s, visibility .18s; }
.nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; padding: .6rem .75rem; font-size: .875rem; font-weight: 500; color: var(--tx); border-radius: .375rem; transition: background .15s, color .15s; }
.nav-dropdown a:hover, .nav-dropdown a.active { background: var(--accent-p); color: var(--accent); }
.nav-dropdown a small { display: block; font-size: .75rem; font-weight: 400; color: var(--tx2); margin-top: .1rem; }

.mobile-menu { display: none; position: fixed; inset: 0; z-index: 200; background: var(--bg); flex-direction: column; padding: 5rem 2rem 2rem; gap: .25rem; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { display: block; padding: 1rem; font-size: 1.1rem; font-weight: 500; border-bottom: 1px solid var(--s200); color: var(--tx); }
.mobile-menu .mobile-group-label { padding: 1rem 1rem 0; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tx2); }
.mobile-menu .mobile-sub { padding-left: 1.5rem; font-size: 1rem; font-weight: 400; }
.mobile-menu .btn { margin-top: 1rem; justify-content: center; }
.mobile-close { position: absolute; top: 1.25rem; right: 1.5rem; color: var(--tx); }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 1rem 0; font-size: .8rem; color: var(--tx2); background: var(--bg-alt); border-bottom: 1px solid var(--card-b); }
.breadcrumb a { color: var(--tx2); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--card-b); margin: 0 .5rem; }
.breadcrumb strong { color: var(--tx); font-weight: 600; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero { position: relative; overflow: hidden; min-height: 380px; display: flex; align-items: flex-end; }
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,29,58,.35) 0%, rgba(11,29,58,.75) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: 3.5rem 0 3rem; width: 100%; }
.page-hero .eyebrow { color: var(--teal); }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.75rem); font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1.15; max-width: 700px; text-wrap: balance; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-top: .85rem; max-width: 560px; }

/* ===== HOME HERO — full-bleed photo background ===== */
.hero { position: relative; overflow: hidden; min-height: min(88vh, 720px); display: flex; align-items: center; }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(6,14,30,.92) 0%, rgba(6,14,30,.78) 38%, rgba(6,14,30,.4) 68%, rgba(6,14,30,.15) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding: clamp(4rem, 10vw, 6rem) 0; }
.hero-content { max-width: 620px; }
.hero .eyebrow { color: var(--teal); margin-bottom: 1.25rem; font-size: .8rem; }
.hero h1 { font-size: clamp(2.1rem, 4.8vw, 3.2rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.1; color: #fff; margin-bottom: 1.25rem; text-wrap: balance; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.82); line-height: 1.7; margin-bottom: 2rem; max-width: 520px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge { position: absolute; top: clamp(1.25rem, 3vw, 2rem); right: 1.5rem; z-index: 2; background: var(--accent); color: #fff; padding: .5rem .9rem; border-radius: var(--rx); font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; box-shadow: 0 4px 14px rgba(0,0,0,.25); }

.hero-stats-band { background: var(--bg-alt); border-bottom: 1px solid var(--card-b); }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-stat { padding: 1.5rem .5rem; text-align: center; border-right: 1px solid var(--card-b); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { display: block; font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; line-height: 1.2; }
.hero-stat-label { display: block; font-size: .78rem; color: var(--tx2); margin-top: .25rem; }

/* ===== SERVICES GRID ===== */
.services { padding: var(--sec-py) 0; background: var(--bg); }
.services-head { text-align: center; margin-bottom: 3rem; }
.services-head .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.svc-card { background: var(--card); border: 1px solid var(--card-b); border-radius: var(--rx); padding: 2rem; transition: transform .25s, box-shadow .25s, border-color .25s; position: relative; overflow: hidden; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(11,29,58,.1); border-color: var(--accent); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 48px; height: 48px; background: var(--accent-p); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 1.25rem; }
.svc-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .6rem; color: var(--tx); }
.svc-card p { font-size: .925rem; color: var(--tx2); line-height: 1.65; margin-bottom: 1.25rem; }
.svc-link { display: inline-flex; align-items: center; gap: .35rem; font-size: .875rem; font-weight: 600; color: var(--accent); transition: gap .2s; }
.svc-card:hover .svc-link { gap: .6rem; }

/* Photo-backed service card (used on service detail pages) */
.svc-photo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.svc-photo-card { border-radius: var(--rx); overflow: hidden; border: 1px solid var(--card-b); background: var(--card); }
.svc-photo-card img { width: 100%; height: 200px; object-fit: cover; }
.svc-photo-body { padding: 1.5rem; }
.svc-photo-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.svc-photo-body p { font-size: .9rem; color: var(--tx2); line-height: 1.6; }

/* ===== FEATURE LIST (characteristics) ===== */
.features { padding: var(--sec-py) 0; background: var(--bg-alt); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 3rem; }
.feature-item { display: flex; gap: 1rem; }
.feature-icon { width: 44px; height: 44px; background: var(--card); border: 1px solid var(--card-b); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.feature-item h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: .35rem; color: var(--tx); }
.feature-item p { font-size: .9rem; color: var(--tx2); line-height: 1.6; }

/* ===== PROCESS ===== */
.process { padding: var(--sec-py) 0; background: var(--bg); }
.process-head { text-align: center; margin-bottom: 3.5rem; }
.process-head .section-sub { margin: 0 auto; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 1rem); right: calc(12.5% + 1rem); height: 2px; background: var(--s200); }
.step { text-align: center; position: relative; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; position: relative; z-index: 2; box-shadow: 0 0 0 6px var(--bg); }
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; color: var(--tx); }
.step p { font-size: .875rem; color: var(--tx2); line-height: 1.6; }

/* ===== ABOUT / SPLIT ===== */
.about { padding: var(--sec-py) 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text .section-sub { margin-bottom: 1.75rem; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.about-list li { display: flex; gap: .75rem; font-size: .95rem; color: var(--tx); line-height: 1.6; }
.about-list .check { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.about-visual { border-radius: var(--rx); aspect-ratio: 4/3; overflow: hidden; position: relative; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.split-reverse .about-grid { direction: rtl; }
.split-reverse .about-grid > * { direction: ltr; }

/* ===== STATS BAND ===== */
.stats-bar { background: var(--bg-dark); padding: 3.25rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-big { font-size: clamp(2rem, 4vw, 2.85rem); font-weight: 800; color: #fff; font-variant-numeric: tabular-nums; line-height: 1; }
.stat-big span { color: var(--teal); }
.stat-desc { font-size: .85rem; color: var(--s400); margin-top: .5rem; }

/* ===== QUALITY / ISO ===== */
.quality { padding: var(--sec-py) 0; background: var(--bg-alt); }
.quality-inner { display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: center; }
.iso-badge { width: 140px; height: 140px; border-radius: 50%; background: linear-gradient(135deg, var(--gold) 0%, #D4B85A 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; flex-shrink: 0; box-shadow: 0 4px 20px rgba(191,162,74,.3); }
.iso-badge strong { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.iso-badge small { font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; margin-top: .2rem; opacity: .9; }
.quality-text p { font-size: .95rem; color: var(--tx2); line-height: 1.7; margin-bottom: 1rem; }
.quality-text .quality-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--accent); font-weight: 600; font-size: .9rem; }

/* Policy commitments list (politica-de-calidad) */
.policy-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; counter-reset: policy; }
.policy-list li { display: flex; gap: 1rem; align-items: flex-start; counter-increment: policy; }
.policy-list li::before { content: counter(policy, decimal-leading-zero); flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px; background: var(--accent-p); color: var(--accent-h); font-weight: 700; font-size: .8rem; display: flex; align-items: center; justify-content: center; font-variant-numeric: tabular-nums; }
.policy-list p { font-size: .95rem; color: var(--tx); line-height: 1.65; padding-top: .5rem; }

/* ===== HIRING BAND ===== */
.hiring { background: var(--accent-p); border: 1px solid var(--accent); border-radius: var(--rx); padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 3rem; }
.hiring p { font-size: .95rem; font-weight: 500; color: var(--tx); }
.hiring p strong { color: var(--accent); }

/* ===== CTA BAND ===== */
.cta-band { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-hover) 100%); padding: 3.5rem 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: #fff; margin-bottom: .5rem; text-wrap: balance; }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; font-size: 1rem; }
.cta-band .btn { background: #fff; color: var(--teal-hover); font-weight: 700; }
.cta-band .btn:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }

/* ===== CLIENTS ===== */
.clients { padding: var(--sec-py) 0; background: var(--bg); }
.clients-head { text-align: center; margin-bottom: 2.5rem; }
.clients-logos { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; margin-bottom: 3rem; }
.client-logo { padding: 1rem 1.5rem; background: var(--bg-alt); border-radius: var(--rx); font-size: .85rem; font-weight: 600; color: var(--tx2); letter-spacing: .02em; border: 1px solid var(--card-b); }
.testimonial { max-width: 700px; margin: 0 auto; text-align: center; }
.testimonial blockquote { font-size: 1.1rem; font-style: italic; color: var(--tx); line-height: 1.7; margin-bottom: 1rem; position: relative; padding: 0 1rem; }
.testimonial blockquote::before { content: '\201C'; position: absolute; top: -.5rem; left: -1rem; font-size: 3rem; color: var(--accent); font-style: normal; line-height: 1; opacity: .4; }
.testimonial cite { font-size: .875rem; color: var(--tx2); font-style: normal; font-weight: 500; }

/* ===== GOOGLE REVIEWS ===== */
.reviews { padding: var(--sec-py) 0; background: var(--bg-alt); overflow: hidden; }
.reviews-head { text-align: center; margin-bottom: 2.5rem; }
.reviews-rating { display: inline-flex; align-items: center; gap: .6rem; background: var(--card); border: 1px solid var(--card-b); border-radius: 999px; padding: .6rem 1.25rem; margin-bottom: 1rem; }
.reviews-rating strong { font-size: 1.1rem; color: var(--tx); }
.reviews-rating .stars { color: #F5A623; letter-spacing: .1em; font-size: .95rem; }
.reviews-rating span.count { font-size: .85rem; color: var(--tx2); }
.reviews-rating a { font-size: .8rem; font-weight: 600; color: var(--accent); }
.reviews-viewport { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%); }
.reviews-track { display: flex; gap: 1.5rem; width: max-content; animation: reviews-scroll 32s linear infinite; }
.reviews-viewport:hover .reviews-track { animation-play-state: paused; }
.review-card { flex: 0 0 320px; background: var(--card); border: 1px solid var(--card-b); border-radius: var(--rx); padding: 1.75rem; }
.review-card-head { display: flex; align-items: center; gap: .85rem; margin-bottom: 1rem; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: var(--accent-p); }
.review-avatar-fallback { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; background: var(--accent-p); color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.05rem; }
.review-name { font-size: .9rem; font-weight: 700; color: var(--tx); }
.review-meta { font-size: .75rem; color: var(--tx2); }
.review-stars { color: #F5A623; font-size: .85rem; letter-spacing: .08em; margin-bottom: .6rem; }
.review-text { font-size: .9rem; color: var(--tx); line-height: 1.65; }
@keyframes reviews-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; overflow-x: auto; }
}

/* ===== ARTICLE (blog post) ===== */
.article { padding: var(--sec-py) 0; background: var(--bg); }
.article-body { max-width: 720px; margin: 0 auto; }
.article-body p { font-size: 1rem; color: var(--tx); line-height: 1.8; margin-bottom: 1.25rem; }
.article-body h2 { font-size: 1.4rem; font-weight: 700; color: var(--tx); margin: 2.25rem 0 1rem; letter-spacing: -.01em; }
.article-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--tx); margin: 1.75rem 0 .75rem; }
.article-body ul, .article-body ol { margin: 0 0 1.25rem 1.25rem; }
.article-body li { font-size: 1rem; color: var(--tx); line-height: 1.75; margin-bottom: .5rem; }
.article-body strong { color: var(--ink); }
.article-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .9rem; }
.article-table th { text-align: left; padding: .6rem .75rem; background: var(--bg-alt); color: var(--tx2); font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; border-bottom: 2px solid var(--card-b); }
.article-table td { padding: .6rem .75rem; border-bottom: 1px solid var(--card-b); color: var(--tx); }
.article-callout { background: var(--accent-p); border-left: 3px solid var(--accent); border-radius: 0 var(--rx) var(--rx) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0; font-size: .95rem; color: var(--tx); }
.article-meta { display: flex; gap: 1rem; align-items: center; font-size: .8rem; color: var(--tx2); margin-bottom: 1.5rem; flex-wrap: wrap; }
.article-meta .tag { background: var(--accent); color: #fff; padding: .25rem .6rem; border-radius: .25rem; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.article-cta { background: var(--bg-alt); border: 1px solid var(--card-b); border-radius: var(--rx); padding: 1.5rem 1.75rem; margin-top: 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.article-cta p { margin-bottom: 0; font-weight: 600; color: var(--tx); }

/* ===== COVERAGE ZONES ===== */
.coverage { padding: var(--sec-py) 0; background: var(--bg-alt); }
.coverage-head { text-align: center; margin-bottom: 2.5rem; }
.coverage-head .section-sub { margin: 0 auto; }
.coverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.coverage-card { background: var(--card); border: 1px solid var(--card-b); border-radius: var(--rx); padding: 1.75rem; text-align: center; }
.coverage-card .svc-icon { margin: 0 auto 1rem; }
.coverage-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; color: var(--tx); }
.coverage-card p { font-size: .85rem; color: var(--tx2); line-height: 1.6; }

/* ===== BLOG ===== */
.blog { padding: var(--sec-py) 0; background: var(--bg-alt); }
.blog-head { margin-bottom: 2.5rem; }
.blog-head .section-title { margin-bottom: .5rem; }
.blog-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { background: var(--card); border: 1px solid var(--card-b); border-radius: var(--rx); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(11,29,58,.1); }
.blog-thumb { height: 170px; position: relative; overflow: hidden; background: var(--ink); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-tag { position: absolute; top: .75rem; left: .75rem; background: var(--accent); color: #fff; font-size: .7rem; font-weight: 600; padding: .25rem .6rem; border-radius: .25rem; letter-spacing: .04em; text-transform: uppercase; z-index: 2; }
.blog-body { padding: 1.25rem; }
.blog-date { font-size: .75rem; color: var(--tx2); margin-bottom: .4rem; }
.blog-card h3 { font-size: 1rem; font-weight: 700; line-height: 1.4; color: var(--tx); margin-bottom: .5rem; }
.blog-card p { font-size: .85rem; color: var(--tx2); line-height: 1.6; }
.blog-page-grid { grid-template-columns: repeat(3, 1fr); }
.blog-empty { text-align: center; padding: 3rem 1rem; color: var(--tx2); font-size: .95rem; background: var(--card); border: 1px dashed var(--card-b); border-radius: var(--rx); }

/* ===== JOBS PAGE ===== */
.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.job-area { background: var(--card); border: 1px solid var(--card-b); border-radius: var(--rx); padding: 1.5rem; text-align: center; transition: transform .2s, border-color .2s; }
.job-area:hover { transform: translateY(-2px); border-color: var(--accent); }
.job-area .svc-icon { margin: 0 auto 1rem; }
.job-area h3 { font-size: .95rem; font-weight: 700; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 3rem; }

/* ===== CONTACT ===== */
.contact { padding: var(--sec-py) 0; background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form { background: var(--card); padding: 2rem; border-radius: var(--rx); border: 1px solid var(--card-b); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--tx2); margin-bottom: .35rem; text-transform: uppercase; letter-spacing: .05em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .7rem .85rem; border: 1px solid var(--card-b); border-radius: .375rem; font-size: .925rem; font-family: var(--ff); color: var(--tx); background: var(--bg); transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-p); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: .85rem; margin-top: .5rem; }
.form-file { border: 1.5px dashed var(--card-b); border-radius: .375rem; padding: 1.25rem; text-align: center; font-size: .85rem; color: var(--tx2); }
.form-file input[type="file"] { border: none; padding: 0; font-size: .85rem; color: var(--tx2); width: 100%; }
.form-message { display: none; align-items: center; gap: .6rem; padding: .9rem 1.1rem; border-radius: var(--rx); font-size: .9rem; font-weight: 500; margin-bottom: 1rem; }
.form-message.visible { display: flex; }
.form-message.ok { background: var(--accent-p); color: var(--accent-h); border: 1px solid var(--accent); }
.form-message.error { background: #FDEDEC; color: #C0392B; border: 1px solid #E6A6A0; }
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-title { font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; }
.info-item { display: flex; gap: .85rem; align-items: flex-start; }
.info-icon { width: 40px; height: 40px; background: var(--accent-p); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.info-label { font-size: .75rem; color: var(--tx2); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.info-value { font-size: .95rem; color: var(--tx); font-weight: 500; }
.wa-contact { background: #25D366; color: #fff; padding: 1rem 1.5rem; border-radius: var(--rx); display: flex; align-items: center; gap: .75rem; font-weight: 600; transition: background .2s, transform .2s; margin-top: auto; }
.wa-contact:hover { background: #20BD5A; transform: translateY(-1px); }

/* ===== FOOTER ===== */
.footer { background: var(--bg-dark); padding: 3.5rem 0 0; color: var(--s400); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-top: .75rem; color: var(--s400); }
.footer h4 { color: var(--s100); font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .875rem; color: var(--s400); transition: color .2s; }
.footer-links a:hover { color: var(--teal); }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: var(--s400); transition: background .2s, color .2s; }
.footer-social a:hover { background: var(--teal); color: #fff; }
.footer-bottom { padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: var(--s500); }
.footer-bottom a { color: var(--teal); }
.footer-bottom a:hover { text-decoration: underline; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,.5); }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: min(80vh, 560px); }
  .hero-overlay { background: linear-gradient(180deg, rgba(6,14,30,.55) 0%, rgba(6,14,30,.88) 65%, rgba(6,14,30,.94) 100%); }
  .hero-content { max-width: 100%; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-bottom: 1px solid var(--card-b); }
  .services-grid, .svc-photo-grid, .features-grid, .jobs-grid, .values-grid, .coverage-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .process-grid::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { order: -1; aspect-ratio: 16/9; }
  .split-reverse .about-grid { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .quality-inner { grid-template-columns: 1fr; text-align: center; }
  .iso-badge { margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hiring { flex-direction: column; text-align: center; }
  .blog-grid, .blog-page-grid { grid-template-columns: 1fr; }
  .page-hero h1 { max-width: 100%; }
  .review-card { flex-basis: 260px; }
}
@media (max-width: 560px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .clients-logos { gap: 1rem; }
  .client-logo { font-size: .78rem; padding: .75rem 1rem; }
}
