@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0D1B2A;
  --teal: #00B4D8;
  --teal-dark: #0090AD;
  --white: #F8FAFC;
  --navy: #1E3A5F;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --border: #E2E8F0;
  --surface: #F1F5F9;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
  font-weight: 800;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.bp-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
.bp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.bp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bp-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.bp-logo-mark span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.bp-logo-mark::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 3px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-top: 10px solid rgba(13,27,42,0.35);
}

.bp-logo-text { display: flex; flex-direction: column; }

.bp-logo-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #F8FAFC;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.bp-logo-sub {
  font-size: 9px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bp-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.bp-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-light);
  transition: color 0.2s;
}

.bp-nav-links a:hover { color: #F8FAFC; }

.bp-nav-cta {
  background: var(--teal) !important;
  color: var(--ink) !important;
  padding: 9px 20px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s !important;
}

.bp-nav-cta:hover { background: var(--teal-dark) !important; color: #fff !important; }

.bp-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.bp-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ── HERO ── */
.bp-hero {
  background: var(--ink);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

.bp-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.05;
}

.bp-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.6;
}

.bp-hero-inner { position: relative; z-index: 1; max-width: 760px; }

.bp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.bp-hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
}

.bp-hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  color: #F8FAFC;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}

.bp-hero h1 em { font-style: normal; color: var(--teal); }

.bp-hero-sub {
  font-size: 18px;
  color: var(--slate-light);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.65;
}

.bp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.bp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s, transform 0.15s;
}

.bp-btn-primary:hover { background: var(--teal-dark); color: #fff; transform: translateY(-1px); }

.bp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #F8FAFC;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}

.bp-btn-secondary:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.05); }

.bp-hero-stats {
  margin-top: 72px;
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 40px;
}

.bp-hero-stat { flex: 1; padding-right: 32px; border-right: 1px solid rgba(255,255,255,0.07); margin-right: 32px; }
.bp-hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.bp-hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}

.bp-hero-stat-label { font-size: 13px; color: var(--slate); }

/* ── SECTIONS ── */
.bp-section { padding: 88px 0; }

.bp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bp-section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--teal);
}

.bp-section-heading {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  color: var(--ink);
}

.bp-section-sub {
  font-size: 17px;
  color: var(--slate);
  max-width: 540px;
  line-height: 1.7;
}

/* ── SERVICES ── */
.bp-services { background: var(--white); }

.bp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.bp-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.bp-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.bp-service-card:hover { border-color: var(--teal); transform: translateY(-3px); }
.bp-service-card:hover::before { transform: scaleX(1); }

.bp-service-icon {
  width: 48px;
  height: 48px;
  background: #E0F7FC;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bp-service-icon svg { width: 22px; height: 22px; stroke: var(--teal-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bp-service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.bp-service-card p { font-size: 14px; color: var(--slate); line-height: 1.65; }

/* ── ABOUT ── */
.bp-about { background: var(--ink); }
.bp-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.bp-about .bp-section-heading { color: #F8FAFC; }
.bp-about .bp-section-sub { color: var(--slate-light); max-width: 100%; }
.bp-about-body { font-size: 15px; color: var(--slate-light); line-height: 1.75; margin-top: 20px; }
.bp-about-feature { display: flex; align-items: flex-start; gap: 14px; margin-top: 28px; }
.bp-about-feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 8px; }
.bp-about-feature p { font-size: 14px; color: var(--slate-light); }
.bp-about-feature strong { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; color: #F8FAFC; display: block; margin-bottom: 3px; }
.bp-about-visual { background: var(--navy); border-radius: 16px; padding: 40px; border: 1px solid rgba(255,255,255,0.06); }
.bp-about-visual-label { font-size: 11px; font-weight: 600; color: var(--teal); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px; }
.bp-about-stat-row { display: flex; flex-direction: column; gap: 20px; }
.bp-about-stat-item { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.bp-about-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
.bp-about-stat-item span:first-child { font-size: 14px; color: var(--slate-light); }
.bp-about-stat-item span:last-child { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 800; color: var(--teal); }

/* ── HOW ── */
.bp-how { background: var(--surface); }
.bp-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; margin-top: 56px; position: relative; }
.bp-steps::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px); height: 1px; background: var(--border); }
.bp-step { padding: 0 24px; text-align: center; }
.bp-step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: var(--teal); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; z-index: 1; border: 3px solid var(--surface); }
.bp-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.bp-step p { font-size: 13px; color: var(--slate); line-height: 1.6; }

/* ── BLOG ── */
.bp-blog { background: var(--white); }
.bp-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 56px; }
.bp-blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform 0.2s, border-color 0.2s; }
.bp-blog-card:hover { transform: translateY(-3px); border-color: var(--teal); }
.bp-blog-img { height: 180px; background: var(--ink); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.bp-blog-img-accent { position: absolute; bottom: -20px; right: -20px; width: 100px; height: 100px; border-radius: 50%; background: var(--teal); opacity: 0.15; }
.bp-blog-img-tag { position: absolute; top: 16px; left: 16px; background: var(--teal); color: var(--ink); font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px; letter-spacing: 1px; text-transform: uppercase; }
.bp-blog-body { padding: 24px; }
.bp-blog-date { font-size: 12px; color: var(--slate-light); margin-bottom: 10px; }
.bp-blog-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.35; }
.bp-blog-card p { font-size: 13px; color: var(--slate); line-height: 1.6; margin-bottom: 18px; }
.bp-blog-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--teal-dark); }
.bp-blog-read-more svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; }
.bp-blog-card:hover .bp-blog-read-more svg { transform: translateX(3px); }

/* ── CONTACT ── */
.bp-contact { background: var(--ink); }
.bp-contact .bp-section-heading { color: #F8FAFC; }
.bp-contact .bp-section-sub { color: var(--slate-light); }
.bp-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 56px; align-items: start; }
.bp-contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.bp-contact-icon { width: 40px; height: 40px; background: rgba(0,180,216,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bp-contact-icon svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bp-contact-item strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 600; color: var(--slate-light); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 1px; }
.bp-contact-item span { font-size: 15px; color: #F8FAFC; }

/* CF7 form overrides */
.wpcf7-form { display: flex; flex-direction: column; gap: 16px; }
.bp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bp-form-group { display: flex; flex-direction: column; gap: 6px; }
.bp-form-group label { font-size: 12px; font-weight: 600; color: var(--slate-light); text-transform: uppercase; letter-spacing: 1px; }
.bp-form-group .wpcf7-form-control-wrap { display: block; }
.bp-form-group input[type="text"],
.bp-form-group input[type="email"],
.bp-form-group select,
.bp-form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #F8FAFC;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.bp-form-group input::placeholder, .bp-form-group textarea::placeholder { color: var(--slate); }
.bp-form-group input:focus, .bp-form-group select:focus, .bp-form-group textarea:focus { border-color: var(--teal); }
.bp-form-group select option { background: var(--ink); }
.bp-form-group textarea { resize: vertical; min-height: 120px; }
.wpcf7-submit {
  background: var(--teal);
  color: var(--ink);
  border: none;
  padding: 15px 32px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
  width: auto !important;
}
.wpcf7-submit:hover { background: var(--teal-dark); color: #fff; transform: translateY(-1px); }
.wpcf7-response-output { margin-top: 12px !important; border-radius: 8px !important; padding: 12px 16px !important; font-size: 14px !important; border: none !important; }
.wpcf7-mail-sent-ok { background: rgba(0,180,216,0.12) !important; color: #7FDEEF !important; border: 1px solid rgba(0,180,216,0.25) !important; }
.wpcf7-validation-errors, .wpcf7-mail-sent-ng { background: rgba(220,38,38,0.1) !important; color: #FCA5A5 !important; border: 1px solid rgba(220,38,38,0.2) !important; }

/* ── FOOTER ── */
.bp-footer { background: #080F17; padding: 48px 0 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.bp-footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.bp-footer-brand p { font-size: 13px; color: var(--slate); margin-top: 16px; max-width: 300px; line-height: 1.65; }
.bp-footer-col h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; color: #F8FAFC; margin-bottom: 16px; letter-spacing: 0.5px; }
.bp-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bp-footer-col ul li a { font-size: 13px; color: var(--slate); transition: color 0.2s; }
.bp-footer-col ul li a:hover { color: var(--teal); }
.bp-footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.bp-footer-bottom p { font-size: 12px; color: var(--slate); }
.bp-footer-bottom a { color: var(--teal); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .bp-nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--ink); padding: 24px; gap: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
  .bp-nav-links.open { display: flex; }
  .bp-nav-toggle { display: flex; }
  .bp-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .bp-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .bp-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .bp-form-row { grid-template-columns: 1fr; }
  .bp-steps::before { display: none; }
  .bp-hero-stats { flex-direction: column; gap: 28px; }
  .bp-hero-stat { border-right: none; margin-right: 0; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 28px; }
  .bp-hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .bp-section { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } }
