/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --light-gray:  #eaecf0;
  --mid-gray:    #d0d5dd;
  --text-muted:  #667085;
  --text-body:   #344054;
  --text-head:   #101828;
  --blue:        #0052cc;
  --blue-dark:   #003d99;
  --blue-light:  #e8f0fe;
  --blue-mid:    #ccdcff;
  --accent:      #e85d26;
  --border:      #e4e7ec;
  --shadow-sm:   0 1px 3px rgba(16,24,40,.08), 0 1px 2px rgba(16,24,40,.06);
  --shadow-md:   0 4px 16px rgba(16,24,40,.10);
  --shadow-lg:   0 12px 40px rgba(16,24,40,.14);
  --font-display: 'Manrope', sans-serif;
  --font-body:    'IBM Plex Sans', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;
  --radius:       6px;
  --radius-lg:    12px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-head);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

h1 { font-size: clamp(2.4rem, 4.5vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.75rem); }
h3 { font-size: 1.25rem; font-weight: 700; }

p { font-size: 1rem; line-height: 1.75; }

.label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 400;
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* ─── LAYOUT ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }
section.alt { background: var(--off-white); }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue-light); }

.btn-ghost {
  background: transparent;
  color: var(--text-body);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--off-white); }

.btn svg { flex-shrink: 0; }

/* ─── NAV ───────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.15s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.2s;
}

.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  padding: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 86vh;
  align-items: stretch;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 2rem;
  position: relative;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: 0; left: -60px;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--blue), transparent);
  opacity: 0.3;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-light);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--blue-mid);
  width: fit-content;
}

.hero-tagline::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.hero-left h1 { margin-bottom: 1.25rem; }

.hero-left h1 span {
  color: var(--blue);
  position: relative;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.trust-stat { text-align: left; }
.trust-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-head);
  line-height: 1;
}
.trust-num span { color: var(--blue); }
.trust-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--blue-light) 0%, transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      var(--border) 39px,
      var(--border) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      var(--border) 39px,
      var(--border) 40px
    );
  z-index: 0;
}

.hero-photo-wrap {
  position: relative;
  z-index: 1;
  width: 85%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--blue);
  color: white;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
  text-align: center;
  border: 3px solid var(--white);
}

.hero-badge strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.hero-badge span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  opacity: 0.85;
}

/* ─── MARQUEE ───────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--blue);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: scroll-left 28s linear infinite;
}

.marquee-item {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.marquee-item::before {
  content: '◆';
  font-size: 0.4rem;
  color: rgba(255,255,255,0.5);
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SERVICES ──────────────────────────────────────────────── */
.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.services-header p { color: var(--text-muted); margin-top: 1rem; font-size: 1.05rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-mid); transform: translateY(-2px); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg { stroke: var(--blue); }

.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { color: var(--text-muted); font-size: 0.925rem; line-height: 1.7; }

.service-tag {
  display: inline-flex;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.about-photo-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-content p { color: var(--text-muted); margin: 1rem 0 1.5rem; font-size: 1.02rem; }

.about-checklist {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--text-body);
  font-weight: 500;
}

.about-checklist li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--blue-light);
  border-radius: 50%;
  border: 2px solid var(--blue-mid);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%230052cc' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.testi-stars { display: flex; gap: 3px; }

.star {
  color: #f59e0b;
  font-size: 0.9rem;
}

.testi-quote {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  border: 2px solid var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}

.testi-name { font-size: 0.875rem; font-weight: 700; color: var(--text-head); }
.testi-role { font-size: 0.775rem; color: var(--text-muted); font-family: var(--font-mono); }

/* ─── CTA BAND ──────────────────────────────────────────────── */
.cta-band {
  background: var(--blue);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(255,255,255,0.04) 59px,
      rgba(255,255,255,0.04) 60px
    );
}

.cta-band h2 { color: var(--white); position: relative; }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 1rem auto 2.5rem; position: relative; font-size: 1.05rem; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  font-weight: 600;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--text-head);
  color: rgba(255,255,255,0.55);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.78rem;
  font-family: var(--font-mono);
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 2rem 3rem; }
  .hero-right { min-height: 360px; padding: 2rem; }
  .hero-photo-wrap { width: 90%; }
  .services-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  section { padding: 4rem 0; }
}
