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

:root {
  --magenta: #cf008c;
  --magenta-dark: #a3006e;
  --magenta-light: #f7e6f3;
  --navy: #17183b;
  --navy-mid: #2a2c5a;
  --gray-dark: #3b3b3b;
  --gray-mid: #6b6b6b;
  --gray-light: #a6a6a6;
  --warm-white: #f4efd9;
  --white: #ffffff;
  --off-white: #f0f0f0;
  --border: #e8e4dc;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; font-size: 16px; color: var(--gray-dark); background: var(--white); line-height: 1.7; overflow-x: hidden; }
h1, h2, h3, h4, h5 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.15; color: var(--navy); letter-spacing: 0.01em; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo svg { height: 44px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--gray-dark); font-size: 14px; font-weight: 500; transition: color 0.2s; padding-bottom: 2px; border-bottom: 2px solid transparent; }
.nav-links a:hover { color: var(--magenta); }
.nav-links a.active { color: var(--magenta); border-bottom: 2px solid var(--magenta); }
.nav-cta { background: var(--magenta) !important; color: white !important; padding: 10px 22px !important; border-radius: 4px !important; border-bottom: none !important; }
.nav-cta:hover { background: var(--magenta-dark) !important; }
.nav-cta.active { border-bottom: none !important; }

/* BUTTONS */
.btn-primary { background: var(--magenta); color: white; padding: 13px 30px; border-radius: 4px; font-size: 15px; font-weight: 500; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.1s; }
.btn-primary:hover { background: var(--magenta-dark); transform: translateY(-1px); }
.btn-outline-dark { border: 1.5px solid var(--navy); color: var(--navy); padding: 13px 30px; border-radius: 4px; font-size: 15px; font-weight: 500; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-outline-dark:hover { background: var(--navy); color: white; }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.4); color: white; padding: 13px 30px; border-radius: 4px; font-size: 15px; font-weight: 500; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* SECTIONS */
.section { padding: 100px 10%; }
.section-label { font-size: 22px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--magenta); margin-bottom: 12px; }
.section-heading { font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: var(--navy); margin-bottom: 20px; line-height: 1.1; }
.section-sub { font-size: 17px; color: var(--gray-mid); max-width: 560px; line-height: 1.75; margin-bottom: 48px; }

/* PAGE HERO (inner pages) */
.page-hero { background: var(--navy); padding: 140px 10% 80px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 35%; background: var(--magenta); clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%); opacity: 0.08; }
.page-hero .section-label { color: #f472c8; }
.page-hero h1 { font-size: clamp(40px, 5vw, 68px); font-weight: 800; color: white; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 580px; line-height: 1.75; }

/* STATS STRIP */
.stats-strip { background: var(--magenta); padding: 52px 10%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 56px; font-weight: 700; color: white; line-height: 1; }
.stat-num span { color: var(--navy); }
.stat-label { font-size: 15px; color: rgba(255,255,255,0.85); margin-top: 6px; font-weight: 400; }

/* PILLAR CARDS */
.pillars { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--off-white); border-radius: 8px; border-left: 3px solid var(--magenta); }
.pillar-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--magenta-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.pillar-icon svg { width: 18px; height: 18px; stroke: var(--magenta); fill: none; stroke-width: 2; }
.pillar h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 4px; color: var(--navy); }
.pillar p { font-size: 14px; color: var(--gray-mid); }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 32px 28px; transition: border-color 0.2s, transform 0.2s; }
.service-card:hover { border-color: var(--magenta); transform: translateY(-4px); }
.service-icon { width: 48px; height: 48px; background: var(--magenta-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { width: 22px; height: 22px; stroke: var(--magenta); fill: none; stroke-width: 1.8; }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.7; }

/* TWO COL GRID */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col-top { align-items: start; }

/* IMAGE PLACEHOLDER */
.img-placeholder { width: 100%; aspect-ratio: 4/3; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: rgba(255,255,255,0.2); font-size: 13px; position: relative; overflow: hidden; }
.img-placeholder::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 140px; height: 140px; background: var(--magenta); opacity: 0.1; border-radius: 50%; }
.img-badge { position: absolute; bottom: -16px; left: 28px; background: var(--magenta); color: white; padding: 12px 20px; border-radius: 6px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; }
.img-badge small { display: block; font-size: 11px; font-weight: 400; opacity: 0.85; margin-top: 2px; }

/* CLIENT PILLS */
.client-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 52px; }
.client-pill { background: white; border: 1.5px solid var(--border); border-radius: 32px; padding: 10px 24px; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; }

/* CASE STUDY */
.case-study { background: white; border-radius: 10px; border: 1px solid var(--border); padding: 40px; margin-bottom: 24px; }
.case-study-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; flex-wrap: wrap; gap: 16px; }
.case-client { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); }
.case-tag { background: var(--magenta-light); color: var(--magenta); font-size: 12px; font-weight: 600; padding: 4px 14px; border-radius: 20px; border: 1px solid rgba(207,0,140,0.2); }
.case-body { font-size: 15px; color: var(--gray-mid); margin-bottom: 28px; line-height: 1.75; }
.case-metrics { display: flex; gap: 40px; flex-wrap: wrap; }
.case-metric-val { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 800; color: var(--magenta); }
.case-metric-label { font-size: 13px; color: var(--gray-light); margin-top: 2px; }

/* FOUNDER */
.founder-photo { width: 100%; aspect-ratio: 3/4; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: rgba(255,255,255,0.2); font-size: 13px; position: relative; overflow: hidden; }
.founder-photo::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, rgba(207,0,140,0.25), transparent); }
.founder-name { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.founder-title { font-size: 15px; color: var(--magenta); font-weight: 600; margin-bottom: 28px; letter-spacing: 0.02em; }
.founder-bio { font-size: 16px; color: var(--gray-mid); margin-bottom: 18px; line-height: 1.8; }
.founder-quote { margin: 32px 0; border-left: 3px solid var(--magenta); padding-left: 24px; font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 600; color: var(--navy); line-height: 1.4; font-style: italic; }
.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.credential { background: var(--off-white); border: 1px solid var(--border); border-radius: 4px; padding: 7px 16px; font-size: 13px; font-weight: 500; color: var(--gray-dark); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(207,0,140,0.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 18px; height: 18px; stroke: var(--magenta); fill: none; stroke-width: 2; }
.contact-item-label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-item-val { font-size: 15px; color: white; font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 6px; font-weight: 500; letter-spacing: 0.03em; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 12px 16px; color: white; font-size: 15px; font-family: 'Barlow', sans-serif; outline: none; transition: border-color 0.2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--magenta); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy); color: white; }
.btn-form { width: 100%; background: var(--magenta); color: white; border: none; padding: 14px; border-radius: 6px; font-size: 15px; font-weight: 600; font-family: 'Barlow', sans-serif; cursor: pointer; transition: background 0.2s; letter-spacing: 0.02em; }
.btn-form:hover { background: var(--magenta-dark); }

/* FOOTER */
footer { background: #0e0f20; color: rgba(255,255,255,0.4); padding: 36px 10%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; }
footer a { color: var(--magenta); text-decoration: none; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--magenta); }

/* PSIRA BADGE */
.psira-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(207,0,140,0.1); border: 1px solid rgba(207,0,140,0.25); border-radius: 4px; padding: 8px 16px; margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.6); }
.psira-dot { width: 8px; height: 8px; background: var(--magenta); border-radius: 50%; flex-shrink: 0; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .section { padding: 64px 6%; }
  .page-hero { padding: 120px 6% 60px; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 40px 6%; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .nav-links li:nth-child(-n+4) { display: none; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}