@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --forest:     #1A3D2B;
  --emerald:    #2C6B45;
  --leaf:       #3D8B5E;
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale:  #F7EED3;
  --white:      #FFFFFF;
  --offwhite:   #F8F6F0;
  --mist:       #EEF3EF;
  --charcoal:   #1C1C1C;
  --gray:       #5A5A5A;
  --lightgray:  #D4D4D4;
  --nav-h:      70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--charcoal); background: var(--white); line-height: 1.6; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  background: rgba(26,61,43,0.97);
  backdrop-filter: blur(10px);
  height: var(--nav-h);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--gold-light);
  text-decoration: none; line-height: 1.2;
}
.nav-logo span { display: block; font-family: 'Inter', sans-serif; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.78); text-decoration: none;
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
  padding: 0.4rem 0.85rem; border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a.active { border-bottom: 2px solid var(--gold); }
.nav-cta-link a {
  background: var(--gold) !important; color: var(--forest) !important;
  font-weight: 700 !important; padding: 0.45rem 1.2rem !important;
}
.nav-cta-link a:hover { background: var(--gold-light) !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--gold-light); border-radius: 2px; transition: 0.3s; }
.nav-mobile { display: none; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--forest) 0%, #0F2419 60%, #1A3D2B 100%);
  padding: calc(var(--nav-h) + 4rem) 5% 4rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-eyebrow { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
.page-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
.page-hero h1 em { font-style: normal; color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.68); font-size: 1rem; max-width: 560px; line-height: 1.75; }

/* Breadcrumb */
.breadcrumb { max-width: 1200px; margin: 0 auto 1.5rem; position: relative; z-index: 1; display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb strong { color: var(--gold-light); }

/* ─── SECTIONS ─── */
section.content-section { padding: 5.5rem 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.6rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3vw, 2.6rem); color: var(--forest); font-weight: 700; line-height: 1.2; margin-bottom: 0.9rem; }
.section-sub { color: var(--gray); max-width: 620px; font-size: 0.98rem; line-height: 1.75; margin-bottom: 3rem; }
.gold-divider { width: 48px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin-bottom: 1.5rem; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--gold); color: var(--forest);
  padding: 0.82rem 1.9rem; border-radius: 2px;
  text-decoration: none; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-block; transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-dark {
  background: var(--forest); color: var(--white);
  padding: 0.82rem 1.9rem; border-radius: 2px;
  text-decoration: none; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-block; transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-dark:hover { background: var(--emerald); transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid rgba(201,168,76,0.55); color: var(--gold-light);
  padding: 0.82rem 1.9rem; border-radius: 2px;
  text-decoration: none; font-weight: 500; font-size: 0.88rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-block; transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }

/* ─── VALUE PILLS ─── */
.value-pill {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: var(--white); border-left: 3px solid var(--gold);
  font-size: 0.88rem; font-weight: 600; color: var(--forest);
  border-radius: 0 2px 2px 0;
}
.value-pill::before { content: '✦'; color: var(--gold); font-size: 0.6rem; }

/* ─── CLIENTS TICKER ─── */
.clients-bar {
  background: var(--gold-pale);
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding: 0.9rem 5%;
  display: flex; align-items: center; gap: 2rem; overflow: hidden;
}
.clients-label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray); white-space: nowrap; font-weight: 700; }
.clients-scroll { display: flex; overflow: hidden; flex: 1; }
.clients-track { display: flex; gap: 3rem; animation: scroll-x 22s linear infinite; white-space: nowrap; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-name { color: var(--forest); font-size: 0.84rem; font-weight: 600; }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  padding: 3.5rem 5% 2rem;
  color: rgba(255,255,255,0.55);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--gold-light); margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 260px; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact p, .footer-contact a { color: rgba(255,255,255,0.5); font-size: 0.85rem; text-decoration: none; display: block; line-height: 1.9; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.78rem; }
.footer-tin { color: rgba(255,255,255,0.3) !important; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--forest); z-index: 199; padding: 1.5rem 5%;
    flex-direction: column; gap: 0.25rem;
    border-bottom: 2px solid var(--gold);
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a {
    color: rgba(255,255,255,0.8); text-decoration: none;
    font-size: 1rem; padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-weight: 500;
  }
  .nav-mobile a.active { color: var(--gold-light); }
  .nav-mobile .mobile-cta { background: var(--gold); color: var(--forest) !important; text-align: center; font-weight: 700 !important; border-radius: 2px; margin-top: 0.5rem; border-bottom: none !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── LOGO IMAGE ── */
.nav-logo { display:flex; align-items:center; text-decoration:none; max-width:220px; }
.nav-logo img { height:44px; width:auto; max-width:210px; object-fit:contain; display:block; transition:opacity .2s; }
.nav-logo:hover img { opacity:.85; }
@media(max-width:1024px){ .nav-logo img { height:36px; max-width:170px; } }
@media(max-width:768px){ .nav-logo img { height:30px; max-width:140px; } }

/* ─── WHATSAPP FLOATING BUTTON ─── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 22px rgba(37,211,102,.55); }
.wa-float svg { width: 30px; height: 30px; fill: white; }
.wa-tooltip {
  position: fixed; bottom: 30px; right: 90px; z-index: 998;
  background: var(--charcoal); color: white;
  font-size: .78rem; font-weight: 600;
  padding: .45rem .9rem; border-radius: 20px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.wa-float:hover + .wa-tooltip { opacity: 1; }
@media(max-width:480px){
  .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .wa-tooltip { display: none; }
}

/* ─── GLOBAL MOBILE FIXES ─── */
/* Prevent horizontal overflow on all screens */
html, body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* Section padding tighter on mobile */
@media(max-width:768px){
  section.content-section { padding: 3.5rem 5%; }
  .page-hero { padding: calc(var(--nav-h) + 2.5rem) 5% 2.5rem; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .page-hero p { font-size: .92rem; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .section-sub { font-size: .9rem; }
  .btn-primary, .btn-dark, .btn-outline { padding: .75rem 1.4rem; font-size: .82rem; }
}

/* Footer tighter on mobile */
@media(max-width:768px){
  footer { padding: 2.5rem 5% 1.5rem; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { font-size: .72rem; }
}

/* Clients ticker on very small screens */
@media(max-width:480px){
  .clients-bar { gap: 1rem; padding: .75rem 4%; }
  .clients-label { display: none; }
}

/* ─── HOMEPAGE HERO MOBILE ─── */
@media(max-width:900px){
  .hero-inner { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .hero { padding: calc(var(--nav-h) + 2rem) 5% 3rem; min-height: auto; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 3rem); }
  .hero-desc { font-size: .95rem; max-width: 100%; }
}
@media(max-width:520px){
  .hero-stats { grid-template-columns: 1fr 1fr !important; gap: .75rem; }
  .stat-num { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
}
@media(max-width:360px){
  .hero-stats { grid-template-columns: 1fr !important; }
}

/* ─── WHY STRIP MOBILE ─── */
@media(max-width:600px){
  .why-pillars { grid-template-columns: 1fr 1fr; }
}
@media(max-width:380px){
  .why-pillars { grid-template-columns: 1fr; }
}

/* ─── ABOUT PAGE MOBILE ─── */
@media(max-width:900px){
  .story-grid, .quality-grid, .leaders-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .mv-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .about-values { grid-template-columns: 1fr 1fr; }
}
@media(max-width:520px){
  .mv-grid, .about-values { grid-template-columns: 1fr; }
  .leader-cards { grid-template-columns: 1fr !important; }
}

/* ─── SERVICES PAGE MOBILE ─── */
@media(max-width:900px){
  .sb-inner, .sb-inner.reverse { grid-template-columns: 1fr !important; gap: 2rem !important; direction: ltr !important; }
  .service-block { padding: 3.5rem 5%; }
  .overview-cards { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:480px){
  .overview-cards { grid-template-columns: repeat(2, 1fr); }
  .sb-card { padding: 1.5rem; }
  .big-icon { font-size: 2.5rem; }
}

/* ─── EQUIPMENT PAGE MOBILE ─── */
@media(max-width:900px){
  .osha-inner { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .packages-grid { grid-template-columns: 1fr !important; }
  .process-steps { grid-template-columns: 1fr !important; }
}

/* ─── CLIENTS PAGE MOBILE ─── */
@media(max-width:600px){
  .clients-grid { grid-template-columns: 1fr !important; }
  .trust-stats { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:400px){
  .trust-stats { grid-template-columns: 1fr 1fr; }
}

/* ─── CONTACT PAGE MOBILE ─── */
@media(max-width:900px){
  .contact-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .leader-cards { grid-template-columns: 1fr 1fr; }
}
@media(max-width:520px){
  .leader-cards { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .contact-form-box { padding: 1.5rem; }
}

/* ─── DATA ANALYSIS PAGE MOBILE ─── */
@media(max-width:900px){
  .intro-grid, .why-da-inner { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .stat-row { grid-template-columns: repeat(3, 1fr); }
  .serve-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:520px){
  .stat-row { grid-template-columns: 1fr 1fr; }
  .da-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── DATABASE PAGE MOBILE ─── */
@media(max-width:900px){
  .db-intro-grid, .tailored-inner { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .db-stats { grid-template-columns: 1fr 1fr; }
  .ideal-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:520px){
  .features-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr !important; }
  .ideal-grid { grid-template-columns: 1fr; }
}

/* ─── CTA BANNER MOBILE ─── */
@media(max-width:520px){
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .cta-banner-btns a { width: 100%; text-align: center; }
}

/* ─── PARTNERS ROW MOBILE ─── */
@media(max-width:600px){
  .partners-row { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── WHATSAPP SECTION RESPONSIVE ─── */
@media(max-width:600px){
  .wa-section-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
}

/* ── REAL PRODUCT PHOTOS ── */
.product-photo {
  height: 160px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #f8f8f8; border-bottom: 1px solid var(--lightgray);
  position: relative;
}
.product-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease;
}
.product-card:hover .product-photo img { transform: scale(1.05); }
.product-photo .product-badge { position: absolute; top: 10px; right: 10px; z-index: 2; }
