/* ═══ VQ Quality & Compliance · Global Styles ═══ */

:root {
  --primary: #1a56db;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --accent: #059669;
  --accent-light: #10b981;
  --accent-50: #ecfdf5;
  --navy: #0f172a;
  --navy-700: #1e293b;
  --navy-600: #334155;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 24px rgba(0,0,0,.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.12);
  --max: 1180px;
  --font: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px }

/* ═══ HEADER ═══ */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid var(--gray-200);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none }
.brand-label strong {
  display: block; font-family: var(--font-display);
  font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -.2px;
}
.brand-label span {
  display: block; font-size: 11px; font-weight: 500;
  color: var(--gray-500); letter-spacing: .8px; text-transform: uppercase; margin-top: 1px;
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none }
.nav-links a {
  color: var(--gray-600); text-decoration: none; font-size: 14px; font-weight: 600;
  padding: 8px 14px; border-radius: 10px; transition: .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); background: var(--primary-50) }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 24px; border-radius: 12px; font-weight: 700;
  font-size: 14px; text-decoration: none; border: none; cursor: pointer;
  font-family: var(--font); transition: all .25s ease; letter-spacing: -.1px;
}
.btn-primary { background: var(--primary); color: #fff }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,86,219,.28) }
.btn-accent { background: var(--accent); color: #fff }
.btn-accent:hover { background: #047857; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(5,150,105,.28) }
.btn-outline { background: transparent; color: var(--gray-700); border: 1.5px solid var(--gray-300) }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-50) }
.btn-lg { min-height: 54px; padding: 0 32px; font-size: 15px; border-radius: 14px }
.btn-sm { min-height: 40px; padding: 0 18px; font-size: 13px }
.btn-wa {
  background: #25d366; color: #fff; font-weight: 700; font-size: 15px;
  min-height: 54px; padding: 0 32px; border-radius: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  border: none; cursor: pointer; font-family: var(--font);
  text-decoration: none; transition: all .25s;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3) }

.menu-toggle {
  display: none; background: none; border: 1.5px solid var(--gray-300);
  color: var(--gray-700); cursor: pointer; width: 40px; height: 40px; border-radius: 10px;
}

/* ═══ SECTIONS ═══ */
section { padding: 80px 0 }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--primary); margin-bottom: 12px;
}
.section-label .label-line { width: 24px; height: 2.5px; border-radius: 2px; background: var(--primary-200) }
.section-heading {
  font-family: var(--font-display); font-size: 38px; font-weight: 800;
  color: var(--navy); line-height: 1.12; letter-spacing: -.3px; margin-bottom: 14px;
}
.section-desc {
  font-size: 16px; line-height: 1.7; color: var(--gray-500); max-width: 650px; margin-bottom: 48px;
}
.center { text-align: center }
.center .section-desc { margin-left: auto; margin-right: auto }

/* ═══ NORMS BAR ═══ */
.norms-bar { padding: 32px 0; border-bottom: 1px solid var(--gray-200); background: var(--white) }
.norms-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 32px }
.norm { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-500); font-weight: 500 }
.norm strong { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy); letter-spacing: .3px }
.norm-divider { width: 1px; height: 28px; background: var(--gray-200) }

/* ═══ WHATSAPP CTA ═══ */
.wa-cta { padding: 56px 0; background: linear-gradient(135deg, var(--navy), var(--navy-700)); text-align: center; color: #fff }
.wa-cta h3 { font-family: var(--font-display); font-size: 30px; font-weight: 800; margin-bottom: 12px; letter-spacing: -.2px }
.wa-cta p { font-size: 16px; color: rgba(255,255,255,.7); max-width: 480px; margin: 0 auto 28px; line-height: 1.6 }

/* ═══ FOOTER ═══ */
footer { padding: 28px 0; border-top: 1px solid var(--gray-200); text-align: center; font-size: 13px; color: var(--gray-400); background: var(--white) }
footer a { color: var(--gray-500); text-decoration: none; margin: 0 8px }
footer a:hover { color: var(--primary) }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px) } to { opacity: 1; transform: translateY(0) } }
.fade-up { animation: fadeUp .65s ease forwards; opacity: 0 }
.d1 { animation-delay: .08s } .d2 { animation-delay: .16s }
.d3 { animation-delay: .24s } .d4 { animation-delay: .32s }
.reveal { opacity: 0; transform: translateY(28px); transition: all .55s ease }
.reveal.visible { opacity: 1; transform: translateY(0) }

/* ═══ PAGE-SPECIFIC: HERO ═══ */
.hero {
  padding: 80px 0 64px; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 70% 55% at 75% 20%, var(--primary-100), transparent),
              radial-gradient(ellipse 50% 40% at 20% 80%, var(--accent-50), transparent), var(--gray-50);
}
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--gray-200) }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 6px 14px 6px 8px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--accent); box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(5,150,105,.15); animation: pulse 2s infinite }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(5,150,105,.15) } 50% { box-shadow: 0 0 0 6px rgba(5,150,105,.08) } }
.hero h1 { font-family: var(--font-display); font-size: 50px; font-weight: 800; line-height: 1.08; color: var(--navy); letter-spacing: -.5px; margin-bottom: 20px }
.hero h1 .highlight { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text }
.hero-desc { font-size: 17px; line-height: 1.7; color: var(--gray-600); max-width: 560px; margin-bottom: 32px }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap }
.stat { text-align: left }
.stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--navy); letter-spacing: -.5px; line-height: 1 }
.stat-label { font-size: 13px; color: var(--gray-500); font-weight: 500; margin-top: 4px }
.hero-visual { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-lg); position: relative }
.hero-visual::before { content: ''; position: absolute; top: -1px; left: 48px; right: 48px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 0 0 3px 3px }
.hv-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 24px; display: flex; align-items: center; gap: 10px }
.hv-title .icon-circle { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--primary-50); color: var(--primary); font-size: 18px }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px }
.area-chip { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 12px; background: var(--gray-50); border: 1px solid var(--gray-100); font-size: 13.5px; font-weight: 600; color: var(--gray-700); transition: all .2s }
.area-chip:hover { border-color: var(--primary-200); background: var(--primary-50) }
.area-chip .chip-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0 }
.area-chip:nth-child(1) .chip-dot { background: var(--primary) }
.area-chip:nth-child(2) .chip-dot { background: var(--accent) }
.area-chip:nth-child(3) .chip-dot { background: #f59e0b }
.area-chip:nth-child(4) .chip-dot { background: #8b5cf6 }
.area-chip:nth-child(5) .chip-dot { background: #ec4899 }
.area-chip:nth-child(6) .chip-dot { background: #06b6d4 }

/* ═══ PAGE-SPECIFIC: SERVICES ═══ */
.services-section { background: var(--gray-50); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100) }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px }
.s-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; transition: all .3s ease; position: relative }
.s-card:hover { border-color: var(--primary-200); box-shadow: var(--shadow-lg); transform: translateY(-4px) }
.s-card-header { display: flex; align-items: flex-start; gap: 16px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--gray-100) }
.s-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 24px; flex-shrink: 0 }
.s-icon.blue { background: var(--primary-50); color: var(--primary) }
.s-icon.green { background: var(--accent-50); color: var(--accent) }
.s-icon.amber { background: #fffbeb; color: #d97706 }
.s-icon.purple { background: #f5f3ff; color: #7c3aed }
.s-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px }
.s-tags { display: flex; flex-wrap: wrap; gap: 5px }
.s-tag { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 6px; text-transform: uppercase; letter-spacing: .3px }
.s-tag.blue { background: var(--primary-100); color: var(--primary-dark) }
.s-tag.green { background: #d1fae5; color: #065f46 }
.s-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 8px }
.s-card p strong { color: var(--navy) }
.s-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px }
.s-card li { font-size: 14px; color: var(--gray-600); padding-left: 20px; position: relative; line-height: 1.5 }
.s-card li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; font-size: 13px }

/* ═══ PAGE-SPECIFIC: PROCESS ═══ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px }
.p-card { padding: 28px 22px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--gray-200); text-align: center; transition: all .3s; position: relative }
.p-card:hover { border-color: var(--primary-200); box-shadow: var(--shadow); transform: translateY(-3px) }
.p-num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 18px; margin-bottom: 14px }
.p-card h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px }
.p-card p { font-size: 13.5px; color: var(--gray-500); line-height: 1.6 }
.p-card:not(:last-child)::after { content: ''; position: absolute; top: 48px; right: -12px; width: 8px; height: 8px; border-top: 2px solid var(--gray-300); border-right: 2px solid var(--gray-300); transform: rotate(45deg); z-index: 2 }

/* ═══ PAGE-SPECIFIC: CONTACT ═══ */
.contact-section { background: radial-gradient(ellipse 60% 50% at 20% 30%, var(--primary-50), transparent), var(--gray-50); border-top: 1px solid var(--gray-100) }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start }
.contact-info h2 { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--navy); line-height: 1.12; margin-bottom: 16px; letter-spacing: -.3px }
.contact-info > p { font-size: 16px; color: var(--gray-500); line-height: 1.7; margin-bottom: 32px }
.contact-items { display: flex; flex-direction: column; gap: 20px }
.contact-item { display: flex; align-items: flex-start; gap: 14px }
.ci-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; background: var(--primary-50); color: var(--primary); font-size: 20px }
.ci-text { font-size: 14px; color: var(--gray-600) }
.ci-text strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: 2px }
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-lg); position: relative }
.form-card::before { content: ''; position: absolute; top: -1px; left: 40px; right: 40px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 0 0 3px 3px }
.form-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px }
.form-subtitle { font-size: 14px; color: var(--gray-500); margin-bottom: 24px }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
.form-group { margin-bottom: 16px }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; font-size: 14px; font-family: var(--font); color: var(--gray-700);
  border: 1.5px solid var(--gray-200); border-radius: 10px; background: var(--gray-50); transition: .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(26,86,219,.1) }
.form-group textarea { resize: vertical; min-height: 90px }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center }
.form-submit { width: 100%; min-height: 50px; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; font-weight: 700; font-size: 15px; border: none; cursor: pointer; font-family: var(--font); transition: all .25s }
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,86,219,.3) }
.form-note { margin-top: 12px; font-size: 12px; color: var(--gray-400); text-align: center }

/* ═══ PAGE HEADER (subpages) ═══ */
.page-header { padding: 56px 0 48px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200) }
.page-header h1 { font-family: var(--font-display); font-size: 42px; font-weight: 800; color: var(--navy); margin-bottom: 12px }
.page-header p { font-size: 17px; color: var(--gray-500); max-width: 600px; line-height: 1.7 }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr }
  .services-grid { grid-template-columns: 1fr }
  .process-grid { grid-template-columns: repeat(2, 1fr) }
  .p-card:not(:last-child)::after { display: none }
  .hero h1 { font-size: 40px }
  .section-heading { font-size: 32px }
  .hero-stats { gap: 24px }
}
@media (max-width: 760px) {
  .brand-label strong { font-size: 15px }
  .brand-label span { font-size: 9.5px; letter-spacing: .4px }
  .nav-links { display: none }
  .nav-links.mob-open {
    display: flex !important; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
    padding: 12px 24px 20px; gap: 2px;
    border-bottom: 1px solid var(--gray-200); box-shadow: 0 12px 32px rgba(0,0,0,.08);
  }
  .nav-links.mob-open a { padding: 12px 16px; width: 100%; border-radius: 10px }
  .nav-links.mob-open .btn { margin-top: 8px; justify-content: center }
  .menu-toggle { display: grid; place-items: center }
  .hero { padding: 56px 0 48px }
  .hero h1 { font-size: 32px }
  .hero-desc { font-size: 15px }
  .section-heading { font-size: 28px }
  .process-grid { grid-template-columns: 1fr }
  .areas-grid { grid-template-columns: 1fr }
  .norms-inner { gap: 16px }
  .norm-divider { display: none }
  .form-row { grid-template-columns: 1fr }
  .hero-stats { flex-wrap: wrap; gap: 20px }
  section { padding: 56px 0 }
  .contact-info h2 { font-size: 28px }
  .wa-cta h3 { font-size: 24px }
  .form-card, .hero-visual, .s-card { padding: 24px }
  .page-header h1 { font-size: 32px }
}
