/* ============================================================================
   WinnerPro Global Enterprises — Design System (wp.css)
   Clean · minimal · white. Built on Bootstrap 5.3 (grid + utilities + components).
   Single accent: blue. One shadow scale, one radius scale, 8px spacing rhythm.
   ~ Keep this file lean. If a rule feels one-off, it probably belongs inline. ~
   ============================================================================ */

/* ── 1. Design tokens ────────────────────────────────────────────────────── */
:root {
  /* Brand blue */
  --wp-primary:    #0B4A9B;
  --wp-primary-d:  #08386F;
  --wp-primary-l:  #2E74D6;
  --wp-primary-05: rgba(11, 74, 155, .05);
  --wp-primary-10: rgba(11, 74, 155, .10);

  /* Neutrals */
  --wp-ink:    #16233F;
  --wp-body:   #47566F;
  --wp-muted:  #8793A6;
  --wp-border: #E7EBF2;
  --wp-bg:     #FFFFFF;
  --wp-bg-alt: #F5F8FC;
  --wp-navy:   #0D1B30;

  /* Shape + depth */
  --wp-radius:    16px;
  --wp-radius-sm: 10px;
  --wp-shadow:    0 6px 24px rgba(16, 33, 63, .06);
  --wp-shadow-md: 0 12px 34px rgba(16, 33, 63, .10);
  --wp-shadow-lg: 0 24px 60px rgba(16, 33, 63, .14);

  /* Rhythm */
  --wp-section: 92px;

  /* Fonts */
  --wp-serif: 'Space Grotesk', system-ui, sans-serif;
  --wp-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Bootstrap theming */
  --bs-primary: #0B4A9B;
  --bs-primary-rgb: 11, 74, 155;
  --bs-body-font-family: 'Inter', system-ui, sans-serif;
  --bs-body-color: #47566F;
  --bs-link-color: #0B4A9B;
  --bs-link-hover-color: #08386F;

  /* Back-compat aliases: legacy inline styles in detail views reference these. */
  --su-blue: var(--wp-primary);
  --su-blue-dark: var(--wp-primary-d);
  --su-teal: var(--wp-primary-l);
  --su-green: var(--wp-primary-l);
  --su-dark-2: var(--wp-ink);
  --su-gray-700: var(--wp-body);
  --su-gray-500: var(--wp-muted);
  --su-gray-200: var(--wp-border);
  --font-serif: var(--wp-serif);
  --shadow-xs: var(--wp-shadow);
  --shadow-md: var(--wp-shadow-md);
  --border-color: var(--wp-border);
}

/* ── 2. Base ─────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--wp-sans);
  color: var(--wp-body);
  background: var(--wp-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: var(--wp-primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--wp-primary-d); }
::selection { background: var(--wp-primary); color: #fff; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wp-serif);
  color: var(--wp-ink);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.container { max-width: 1180px; }

/* ── 3. Section rhythm + headings ───────────────────────────────────────── */
.section-py { padding-top: var(--wp-section); padding-bottom: var(--wp-section); }
.section-pt { padding-top: var(--wp-section); }
.section-pb { padding-bottom: var(--wp-section); }
.bg-su-light { background: var(--wp-bg-alt); }
.bg-su-gray  { background: var(--wp-bg-alt); }
.bg-su-dark, .bg-su-darkest { background: var(--wp-navy); }

.section-header { max-width: 720px; margin-bottom: 56px; }
.section-header.text-center { margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-block;
  font-family: var(--wp-sans); font-weight: 600; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--wp-primary);
  margin-bottom: 16px;
  padding: .35rem .8rem; border-radius: 999px;
  background: var(--wp-primary-10);
}
.section-label.light { color: #8FB7EC; background: rgba(143,183,236,.14); }

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  color: var(--wp-ink); margin-bottom: 18px; letter-spacing: -0.03em;
}
.section-title.light { color: #fff; }

.section-subtitle { font-size: 1.06rem; color: var(--wp-muted); max-width: 620px; margin: 0; }
.section-subtitle.centered { margin-inline: auto; text-align: center; }

.section-body { font-size: 1.04rem; color: var(--wp-body); margin-bottom: 16px; line-height: 1.75; }
.section-body.light { color: rgba(255,255,255,.75); }

/* ── 4. Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--wp-sans); font-weight: 600; font-size: .96rem; line-height: 1;
  padding: .8rem 1.6rem; border-radius: var(--wp-radius-sm); border: 1.5px solid transparent;
  cursor: pointer; transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--wp-primary-l); outline-offset: 2px; }
.btn-lg { padding: .95rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1.05rem 2.3rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }

.btn-primary { background: var(--wp-primary); color: #fff; border-color: var(--wp-primary); box-shadow: 0 8px 20px -10px rgba(11,74,155,.7); }
.btn-primary:hover { background: var(--wp-primary-d); border-color: var(--wp-primary-d); color: #fff; }
.btn-gradient { background: linear-gradient(135deg, var(--wp-primary-d), var(--wp-primary-l)); color: #fff; box-shadow: 0 8px 22px -10px rgba(11,74,155,.75); }
.btn-gradient:hover { color: #fff; box-shadow: 0 14px 30px -10px rgba(11,74,155,.9); }
.btn-outline-dark { background: transparent; color: var(--wp-ink); border-color: var(--wp-border); }
.btn-outline-dark:hover { background: var(--wp-ink); color: #fff; border-color: var(--wp-ink); }
.btn-white { background: #fff; color: var(--wp-primary-d); border-color: #fff; }
.btn-white:hover { background: #eef3fb; color: var(--wp-primary-d); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: #fff; color: var(--wp-ink); border-color: #fff; }

/* ── 5. Navbar (Bootstrap .navbar, themed) ──────────────────────────────── */
.wp-nav {
  background: rgba(255,255,255,.85); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent; transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
  padding-top: .55rem; padding-bottom: .55rem;
}
.wp-nav.scrolled { box-shadow: 0 6px 24px -18px rgba(16,33,63,.6); border-bottom-color: var(--wp-border); background: rgba(255,255,255,.95); }
.wp-brand { display: inline-flex; align-items: center; gap: .6rem; }
.wp-brand-logo { height: 62px; width: auto; display: block; }
.wp-nav .nav-link { font-weight: 500; font-size: .95rem; color: var(--wp-body); padding: .5rem .9rem !important; border-radius: 8px; }
.wp-nav .nav-link:hover { color: var(--wp-ink); background: var(--wp-primary-05); }
.wp-nav .nav-link.active { color: var(--wp-primary); background: var(--wp-primary-10); }
.wp-nav .navbar-toggler { border: 1px solid var(--wp-border); padding: .4rem .55rem; }
.wp-nav .navbar-toggler:focus { box-shadow: none; }

/* ── 6. Hero (home) ─────────────────────────────────────────────────────── */
.wp-hero { position: relative; padding: 132px 0 92px; background: var(--wp-bg-alt); overflow: hidden; }
.wp-hero::before {
  content: ''; position: absolute; top: -20%; right: -8%; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,116,214,.14), transparent 62%); pointer-events: none;
}
.wp-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--wp-border);
  color: var(--wp-primary-d); font-weight: 600; font-size: .82rem; padding: .45rem 1rem; border-radius: 999px;
  box-shadow: var(--wp-shadow); margin-bottom: 22px;
}
.wp-hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wp-primary-l); }
.wp-hero h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); letter-spacing: -0.04em; color: var(--wp-ink); margin-bottom: 20px; }
.wp-hero h1 span { color: var(--wp-primary); }
.wp-hero-sub { font-size: 1.14rem; color: var(--wp-body); max-width: 520px; line-height: 1.7; margin-bottom: 32px; }
.wp-hero-media { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--wp-shadow-lg); aspect-ratio: 4 / 3.4; }
.wp-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wp-hero-badge {
  position: absolute; left: 18px; bottom: 18px; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px); border-radius: 14px; padding: 12px 16px; box-shadow: var(--wp-shadow-md);
}
.wp-hero-badge i { color: var(--wp-primary); font-size: 1.3rem; }
.wp-hero-badge b { display: block; font-family: var(--wp-serif); color: var(--wp-ink); font-size: 1rem; line-height: 1; }
.wp-hero-badge span { font-size: .78rem; color: var(--wp-muted); }
.wp-hero-stats { display: flex; gap: 34px; margin-top: 30px; }
.wp-hero-stats b { display: block; font-family: var(--wp-serif); font-size: 1.7rem; color: var(--wp-ink); line-height: 1; }
.wp-hero-stats span { font-size: .82rem; color: var(--wp-muted); }

/* ── 7. Stats bar ───────────────────────────────────────────────────────── */
.stats-bar { background: var(--wp-navy); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 40px 16px; border-right: 1px solid rgba(255,255,255,.08); }
.stat-item:last-child { border-right: 0; }
.stat-number { font-family: var(--wp-serif); font-weight: 700; font-size: 2.6rem; color: #fff; line-height: 1; }
.stat-label { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 8px; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat-item:nth-child(2) { border-right: 0; } }

/* ── 8. Service cards ───────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--wp-border); border-radius: var(--wp-radius);
  padding: 30px; box-shadow: var(--wp-shadow); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column; height: 100%;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--wp-shadow-md); border-color: rgba(46,116,214,.4); }
.service-card-num { position: absolute; top: 22px; right: 26px; font-family: var(--wp-serif); font-weight: 700; font-size: 1.5rem; color: var(--wp-border); }
.service-icon { width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center; font-size: 1.35rem; color: var(--wp-primary); background: var(--wp-primary-10); margin-bottom: 18px; }
.service-title { font-size: 1.2rem; margin-bottom: 10px; color: var(--wp-ink); }
.service-desc { color: var(--wp-body); font-size: .95rem; line-height: 1.65; margin-bottom: 16px; flex: 1; }
.service-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .9rem; color: var(--wp-primary); }
.service-link:hover { gap: 11px; color: var(--wp-primary-d); }
@media (max-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* ── 9. Portfolio ───────────────────────────────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-item { position: relative; border-radius: var(--wp-radius); overflow: hidden; }
.portfolio-item--wide { grid-column: span 2; }
.portfolio-img { position: relative; height: 300px; }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.portfolio-item:hover .portfolio-img img { transform: scale(1.05); }
.portfolio-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 26px; background: linear-gradient(to top, rgba(13,27,48,.9) 6%, rgba(13,27,48,.15) 60%, transparent); }
.portfolio-info { color: #fff; width: 100%; }
.portfolio-category { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; background: rgba(255,255,255,.16); padding: .28rem .7rem; border-radius: 999px; margin-bottom: 10px; }
.portfolio-info h4 { color: #fff; font-size: 1.18rem; margin: 0; }
.portfolio-arrow { position: absolute; top: 22px; right: 22px; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.15); display: grid; place-items: center; color: #fff; opacity: 0; transition: opacity .2s ease, background .2s ease; }
.portfolio-item:hover .portfolio-arrow { opacity: 1; }
.portfolio-arrow:hover { background: #fff; color: var(--wp-ink); }
@media (max-width: 992px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } .portfolio-item--wide { grid-column: span 2; } }
@media (max-width: 640px) { .portfolio-grid { grid-template-columns: 1fr; } .portfolio-item--wide { grid-column: span 1; } }

/* ── 10. Why (dark split) ───────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: stretch; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin: 26px 0 30px; }
.why-feature { display: flex; align-items: flex-start; gap: 11px; }
.why-check { width: 24px; height: 24px; border-radius: 7px; background: rgba(255,255,255,.1); color: #8FB7EC; display: grid; place-items: center; font-size: .72rem; flex: none; margin-top: 2px; }
.why-feature-text { color: rgba(255,255,255,.82); font-size: .94rem; line-height: 1.5; }
.why-img-wrap { position: relative; display: flex; flex-direction: column; height: 100%; min-height: 420px; }
.why-img-main { flex: 1; width: 100%; height: 100%; min-height: 420px; border-radius: var(--wp-radius); overflow: hidden; box-shadow: var(--wp-shadow-lg); position: relative; }
.why-img-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.why-float-card { position: absolute; left: -18px; bottom: -18px; z-index: 2; display: flex; align-items: center; gap: 13px; background: #fff; border-radius: 14px; padding: 16px 20px; box-shadow: var(--wp-shadow-md); }
.why-float-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--wp-primary-10); color: var(--wp-primary); display: grid; place-items: center; font-size: 1.2rem; }
.why-float-label { font-family: var(--wp-serif); font-weight: 700; color: var(--wp-ink); line-height: 1; }
.why-float-sub { font-size: .8rem; color: var(--wp-muted); }
@media (max-width: 992px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } .why-features { grid-template-columns: 1fr; } .why-img-wrap, .why-img-main { min-height: 320px; height: 360px; } }

/* ── 11. Blog / insights ────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { background: #fff; border: 1px solid var(--wp-border); border-radius: var(--wp-radius); overflow: hidden; box-shadow: var(--wp-shadow); transition: transform .2s ease, box-shadow .2s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--wp-shadow-md); }
.blog-img { position: relative; height: 210px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-cat-tag { position: absolute; top: 14px; left: 14px; background: #fff; color: var(--wp-primary-d); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; padding: .3rem .7rem; border-radius: 999px; box-shadow: var(--wp-shadow); }
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 16px; color: var(--wp-muted); font-size: .82rem; margin-bottom: 12px; }
.blog-meta i { color: var(--wp-primary); margin-right: 4px; }
.blog-title { font-size: 1.12rem; line-height: 1.35; margin-bottom: 10px; }
.blog-excerpt { color: var(--wp-body); font-size: .92rem; line-height: 1.6; margin-bottom: 16px; }
.blog-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .9rem; color: var(--wp-primary); }
.blog-link:hover { gap: 11px; }
@media (max-width: 992px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── 12. Page banner + breadcrumb ───────────────────────────────────────── */
.page-banner { position: relative; padding: 150px 0 66px; background: var(--wp-navy); overflow: hidden; }
.page-banner-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.page-banner-content { position: relative; z-index: 1; }
.page-banner-label { color: #8FB7EC; font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3rem); letter-spacing: -0.03em; margin: 0; }
.breadcrumb-su { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: .9rem; flex-wrap: wrap; }
.breadcrumb-su a { color: rgba(255,255,255,.7); }
.breadcrumb-su a:hover { color: #fff; }
.breadcrumb-su .sep { color: rgba(255,255,255,.35); }
.breadcrumb-su .current { color: #8FB7EC; }

/* ── 13. CTA banner ─────────────────────────────────────────────────────── */
.cta-banner { position: relative; padding: 84px 0; background: var(--wp-navy); overflow: hidden; text-align: center; }
.cta-banner-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,56,111,.55), rgba(13,27,48,.75)); }
.cta-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-content h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 14px; }
.cta-content p { color: rgba(255,255,255,.78); font-size: 1.06rem; margin-bottom: 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── 14. About grid + values ────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: stretch; }
.about-img-wrap { position: relative; display: flex; flex-direction: column; height: 100%; min-height: 440px; }
.about-img-main { flex: 1; width: 100%; height: 100%; min-height: 440px; border-radius: var(--wp-radius); overflow: hidden; box-shadow: var(--wp-shadow-lg); position: relative; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.about-img-accent { position: absolute; right: -18px; bottom: -20px; width: 44%; aspect-ratio: 4 / 3; z-index: 2; border-radius: 14px; overflow: hidden; border: 5px solid #fff; box-shadow: var(--wp-shadow-md); }
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-badge { position: absolute; left: -16px; top: 26px; z-index: 2; background: var(--wp-primary); color: #fff; border-radius: 14px; padding: 16px 18px; box-shadow: var(--wp-shadow-md); }
.about-badge-number { font-family: var(--wp-serif); font-weight: 700; font-size: 1.4rem; line-height: 1; }
.about-badge-text { font-size: .74rem; opacity: .85; margin-top: 4px; }
.about-values { display: flex; flex-direction: column; gap: 16px; margin: 26px 0 30px; }
.about-value { display: flex; gap: 14px; }
.about-value-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--wp-primary-10); color: var(--wp-primary); display: grid; place-items: center; flex: none; }
.about-value-title { font-weight: 600; color: var(--wp-ink); margin: 0 0 2px; }
.about-value-desc { color: var(--wp-body); font-size: .9rem; margin: 0; line-height: 1.55; }
@media (max-width: 992px) { .about-grid { grid-template-columns: 1fr; gap: 56px; } .about-img-wrap, .about-img-main { min-height: 340px; height: 380px; } }

/* ── 15. Forms ──────────────────────────────────────────────────────────── */
.su-form-group { margin-bottom: 4px; }
.su-label { display: block; font-size: .85rem; font-weight: 600; color: var(--wp-ink); margin-bottom: 7px; }
.su-input, .su-select, .su-textarea {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--wp-border); border-radius: var(--wp-radius-sm);
  font-family: var(--wp-sans); font-size: .96rem; color: var(--wp-ink); background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.su-textarea { min-height: 140px; resize: vertical; }
.su-input:focus, .su-select:focus, .su-textarea:focus { outline: none; border-color: var(--wp-primary); box-shadow: 0 0 0 3px var(--wp-primary-10); }
.su-input.is-invalid, .su-textarea.is-invalid { border-color: #dc3545; }
.su-field-error { color: #dc3545; font-size: .82rem; margin: 6px 0 0; }
.su-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-info-panel { background: var(--wp-bg-alt); border: 1px solid var(--wp-border); border-radius: var(--wp-radius); }
.footer-contact { display: flex; flex-direction: column; }
.footer-contact-item { display: flex; gap: 14px; align-items: flex-start; }
.footer-contact-item i { margin-top: 3px; }

/* ── 16. Footer ─────────────────────────────────────────────────────────── */
.su-footer { background: var(--wp-navy); color: rgba(255,255,255,.66); padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.wp-wordmark { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 18px; }
.wp-wordmark-logo { height: 68px; width: auto; display: block; }
.footer-tagline { font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 320px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); color: #fff; display: grid; place-items: center; transition: background .18s ease; }
.social-btn:hover { background: var(--wp-primary); color: #fff; }
.footer-col-title { color: #fff; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a, .footer-link { color: rgba(255,255,255,.6); font-size: .92rem; }
.footer-links a:hover, .footer-link:hover { color: #8FB7EC; }
.footer-link { display: block; margin-bottom: 11px; }
.footer-contact a, .footer-contact span { color: rgba(255,255,255,.66); font-size: .9rem; }
.footer-contact a:hover { color: #8FB7EC; }
.footer-contact i { color: #8FB7EC; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p, .footer-bottom-left p { font-size: .84rem; color: rgba(255,255,255,.5); margin: 0; }
.footer-bottom-right { display: flex; gap: 20px; }
.footer-bottom-right a { color: rgba(255,255,255,.5); font-size: .84rem; }
.footer-bottom-right a:hover { color: #fff; }
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── 17. Prose + detail helpers ─────────────────────────────────────────── */
.wp-prose { max-width: 760px; }
.wp-prose p { font-size: 1.05rem; line-height: 1.85; color: var(--wp-body); margin-bottom: 1.3rem; }
.wp-prose h2, .wp-prose h3 { margin: 2rem 0 .9rem; color: var(--wp-ink); }
.wp-prose ul { margin: 0 0 1.3rem; padding-left: 1.1rem; color: var(--wp-body); line-height: 1.8; }
.wp-scope-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; }
.wp-scope-list li { position: relative; padding-left: 28px; color: var(--wp-body); font-size: .97rem; line-height: 1.6; }
.wp-scope-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--wp-primary); font-size: .8rem; }
@media (max-width: 640px) { .wp-scope-list { grid-template-columns: 1fr; } }
.wp-spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--wp-border); }
.wp-spec-row:last-child { border-bottom: 0; }
.wp-spec-row .k { color: var(--wp-muted); font-size: .9rem; }
.wp-spec-row .v { font-weight: 600; color: var(--wp-ink); font-size: .92rem; text-align: right; }

/* ── 18. Floating helpers ───────────────────────────────────────────────── */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; font-size: 1.5rem; box-shadow: var(--wp-shadow-md); transition: transform .2s ease; }
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
.whatsapp-tooltip { display: none; }
.back-to-top { position: fixed; right: 22px; bottom: 88px; z-index: 900; width: 46px; height: 46px; border-radius: 12px; background: var(--wp-ink); color: #fff; border: 0; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; cursor: pointer; }
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }

/* ── 19. Flash toast ────────────────────────────────────────────────────── */
.wp-toast-wrap { position: fixed; top: 90px; right: 20px; z-index: 1100; display: flex; flex-direction: column; gap: 10px; }
.wp-toast { background: #fff; border-left: 4px solid var(--wp-primary); border-radius: 10px; box-shadow: var(--wp-shadow-md); padding: 14px 18px; font-size: .92rem; color: var(--wp-ink); max-width: 340px; animation: wpToastIn .3s ease; }
.wp-toast.is-success { border-left-color: #16a34a; }
.wp-toast.is-error { border-left-color: #dc3545; }
@keyframes wpToastIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }

/* ── 20. Reveal on scroll ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-2 { transition-delay: .12s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ── 21. Responsive rhythm ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --wp-section: 60px; }
  .page-banner { padding: 120px 0 50px; }
  .about-img-accent { position: static; width: 60%; margin-top: 16px; border-width: 0; }
  .about-badge { left: 12px; }
  .wp-hero { padding: 108px 0 64px; }
}

/* ── 22. Interactivity & motion polish ──────────────────────────────────── */
/* Hero: subtle blueprint grid + floating badge */
.wp-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--wp-border) 1px, transparent 1px), linear-gradient(90deg, var(--wp-border) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000, transparent 68%);
          mask-image: radial-gradient(ellipse at 70% 30%, #000, transparent 68%);
}
.wp-hero .container { position: relative; z-index: 1; }
.wp-hero-badge { animation: wpFloat 4s ease-in-out infinite; }
@keyframes wpFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Buttons: soft light sweep on hover */
.btn { position: relative; overflow: hidden; }
.btn-primary::after, .btn-gradient::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-20deg); transition: left .5s ease;
}
.btn-primary:hover::after, .btn-gradient:hover::after { left: 130%; }

/* Service icon reacts to card hover */
.service-card .service-icon { transition: background .25s ease, color .25s ease, transform .25s ease; }
.service-card:hover .service-icon { background: var(--wp-primary); color: #fff; transform: rotate(-6deg) scale(1.05); }

/* Animated link arrows already shift gap; add underline grow on section links */
.service-link, .blog-link { position: relative; }

/* Stat numbers use the brand gradient for a graphical touch */
.stat-number { background: linear-gradient(120deg, #fff, #9cc2f0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Nav link animated underline */
.wp-nav .nav-link { position: relative; }
.wp-nav .nav-link::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--wp-primary); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.wp-nav .nav-link:hover::after, .wp-nav .nav-link.active::after { transform: scaleX(1); }

/* Reveal: gentle stagger for grids */
.services-grid .service-card:nth-child(2), .blog-grid .blog-card:nth-child(2) { transition-delay: .08s; }
.services-grid .service-card:nth-child(3), .blog-grid .blog-card:nth-child(3) { transition-delay: .16s; }

/* ── 23. Anticipation / coming-soon states ──────────────────────────────── */
.wp-soon {
  position: relative; border: 1px dashed var(--wp-border); border-radius: var(--wp-radius);
  background: var(--wp-bg-alt); padding: 64px 32px; text-align: center; overflow: hidden;
}
.wp-soon::before {
  content: ''; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: linear-gradient(var(--wp-border) 1px, transparent 1px), linear-gradient(90deg, var(--wp-border) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000, transparent 72%);
          mask-image: radial-gradient(ellipse at 50% 40%, #000, transparent 72%);
}
.wp-soon > * { position: relative; z-index: 1; }
.wp-soon-icon {
  width: 68px; height: 68px; border-radius: 18px; margin: 0 auto 20px; display: grid; place-items: center;
  font-size: 1.7rem; color: #fff; background: linear-gradient(135deg, var(--wp-primary-d), var(--wp-primary-l));
  box-shadow: var(--wp-shadow-md); animation: wpFloat 4s ease-in-out infinite;
}
.wp-soon h3 { font-size: 1.6rem; margin-bottom: 12px; color: var(--wp-ink); }
.wp-soon p { color: var(--wp-body); max-width: 520px; margin: 0 auto 26px; font-size: 1.02rem; }
.wp-soon-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--wp-primary); background: var(--wp-primary-10); padding: .4rem .9rem; border-radius: 999px; margin-bottom: 22px;
}
.wp-soon-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--wp-primary-l); animation: wpPulse 1.6s ease-in-out infinite; }
@keyframes wpPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }

@media (prefers-reduced-motion: reduce) {
  .wp-hero-badge, .wp-soon-icon, .wp-soon-badge .pulse { animation: none; }
  .btn-primary::after, .btn-gradient::after { display: none; }
}

/* ── 24. Gallery + photo band + lightbox ────────────────────────────────── */
.wp-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.wp-gallery.is-preview { grid-template-columns: repeat(3, 1fr); }
.wp-gallery-item {
  position: relative; border-radius: var(--wp-radius); overflow: hidden; aspect-ratio: 4 / 3;
  cursor: pointer; box-shadow: var(--wp-shadow);
}
.wp-gallery-item.tall { aspect-ratio: 3 / 4; }
.wp-gallery-item.wide { grid-column: span 2; aspect-ratio: 16 / 9; }
.wp-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.wp-gallery-item:hover img { transform: scale(1.07); }
.wp-gallery-cap {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px;
  padding: 20px; color: #fff; opacity: 0; transition: opacity .3s ease;
  background: linear-gradient(to top, rgba(8,17,32,.85) 8%, rgba(8,17,32,.1) 55%, transparent);
}
.wp-gallery-item:hover .wp-gallery-cap, .wp-gallery-item:focus-visible .wp-gallery-cap { opacity: 1; }
.wp-gallery-cap .tag { align-self: flex-start; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--wp-primary); padding: .25rem .6rem; border-radius: 999px; }
.wp-gallery-cap .cap { font-size: .95rem; font-weight: 500; line-height: 1.35; }
.wp-gallery-item .zoom-ico { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--wp-ink); display: grid; place-items: center; opacity: 0; transform: scale(.8); transition: opacity .25s ease, transform .25s ease; }
.wp-gallery-item:hover .zoom-ico { opacity: 1; transform: scale(1); }
@media (max-width: 900px) { .wp-gallery, .wp-gallery.is-preview { grid-template-columns: repeat(2, 1fr); } .wp-gallery-item.wide { grid-column: span 2; } }
@media (max-width: 560px) { .wp-gallery, .wp-gallery.is-preview { grid-template-columns: 1fr; } .wp-gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; } }

/* Full-width photo band with parallax feel + overlay statement */
.wp-band { position: relative; min-height: 420px; display: flex; align-items: center; overflow: hidden; }
.wp-band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wp-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(8,56,111,.82), rgba(13,27,48,.62)); }
.wp-band-inner { position: relative; z-index: 1; color: #fff; max-width: 640px; }
.wp-band-inner h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 14px; letter-spacing: -0.03em; }
.wp-band-inner p { color: rgba(255,255,255,.82); font-size: 1.08rem; margin: 0; }
@media (min-width: 992px) { .wp-band { background-attachment: fixed; } }

/* Lightbox */
.wp-lightbox { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; background: rgba(6,13,26,.94); padding: 24px; }
.wp-lightbox.open { display: flex; animation: wpFade .2s ease; }
@keyframes wpFade { from { opacity: 0; } to { opacity: 1; } }
.wp-lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.wp-lb-cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-size: .95rem; }
.wp-lb-btn { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; width: 52px; height: 52px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: grid; place-items: center; transition: background .2s ease; }
.wp-lb-btn:hover { background: rgba(255,255,255,.25); }
.wp-lb-close { top: 22px; right: 22px; }
.wp-lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.wp-lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) { .wp-lb-prev { left: 10px; } .wp-lb-next { right: 10px; } .wp-lb-btn { width: 44px; height: 44px; } }
