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

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

:root {
  --navy:   #0B1D33;
  --blue:   #2563EB;
  --teal:   #00C2A8;
  --green:  #22C55E;
  --white:  #ffffff;
  --light:  #F4F7FF;
  --gray:   #64748B;
  --grad:   linear-gradient(90deg, #2563EB, #00C2A8, #22C55E);
  --grad-v: linear-gradient(135deg, #2563EB, #00C2A8, #22C55E);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-logo-text span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--grad);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: opacity .2s !important;
}

.nav-cta:hover { opacity: .85; }

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

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

/* ── GRADIENT LINE (signature element) ── */
.grad-line {
  height: 3px;
  background: var(--grad);
  border-radius: 2px;
}

.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1600&q=80');
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,29,51,.82);
  z-index: 0;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.3);
  color: var(--teal);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin: 0 auto 28px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 .grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  background: var(--grad);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: .3px;
  transition: opacity .2s, transform .2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { opacity: .88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.25);
  transition: border-color .2s, background .2s;
  cursor: pointer;
}

.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.05); }

.hero-stats {
  margin-top: 48px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ── SECTIONS ── */
section { padding: 90px 5%; }

.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.7;
}

/* ── SERVICES STRIP ── */
.services-strip {
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(11,29,51,.08);
  transition: box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}

.service-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.service-card-body {
  padding: 28px 32px 32px;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.service-card:hover { box-shadow: 0 8px 32px rgba(11,29,51,.12); transform: translateY(-2px); }
.service-card:hover::after { transform: scaleX(1); }

.service-card-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card-body p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.7;
}
.roi-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.roi-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter---spacing: -.5px;
  margin-bottom: 16px;
}

.roi-section h2 .grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roi-section p {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: steps;
}

.process-step {
  position: relative;
  padding-left: 24px;
  border-left: 3px solid transparent;
  border-image: var(--grad) 1;
}

.process-step-num {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.process-step p {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-strip { grid-template-columns: 1fr; gap: 40px; }
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-team {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

.team-badge {
  background: var(--white);
  border: 1px solid rgba(11,29,51,.1);
  border-radius: 8px;
  padding: 20px 24px;
  flex: 1;
}

.team-badge strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-badge span {
  font-size: .78rem;
  color: var(--gray);
  font-weight: 600;
}

.about-visual {
  background: var(--navy);
  border-radius: 12px;
  padding: 48px 40px;
  color: var(--white);
}

.about-visual h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 32px;
}

.about-stat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-stat-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-stat-list .num {
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 70px;
}

.about-stat-list .label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  line-height: 1.4;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}

.contact-info p {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color .2s;
}

.contact-detail a:hover { color: var(--blue); }

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── FORM ── */
.contact-form {
  background: var(--light);
  border-radius: 12px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(11,29,51,.15);
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 48px 5% 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.footer-logo span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  letter-spacing: 1px;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  transition: color .2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 80px 5% 70px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.5px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SERVICES PAGE ── */
.services-full {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .service-block,
  .service-block.reverse { grid-template-columns: 1fr; direction: ltr; }
}

.service-block-visual {
  background: var(--navy);
  border-radius: 12px;
  padding: 48px 40px;
  color: var(--white);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-block-visual .big-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-block-visual h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-block-visual p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

.service-block-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.3px;
}

.service-block-text p {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}

.check-list li::before {
  content: '✓';
  font-weight: 800;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── ABOUT PAGE ── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 600px) {
  .founders-grid { grid-template-columns: 1fr; }
}

.founder-card {
  background: var(--light);
  border-radius: 12px;
  padding: 40px 36px;
  border: 1px solid rgba(11,29,51,.08);
}

.founder-initial {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-v);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}

.founder-photo {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center top;
  border-radius: 8px;
  margin-bottom: 24px;
}

.founder-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.founder-card .title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.founder-card p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  padding: 32px 28px;
  border: 1px solid rgba(11,29,51,.1);
  border-radius: 8px;
  transition: border-color .2s;
}

.value-card:hover { border-color: var(--teal); }

.value-card .icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.value-card p {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px 5%;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 28px; }
  .about-team { flex-direction: column; }
}

/* ── FORM SUCCESS ── */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success .icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.form-success p { color: var(--gray); font-size: .9rem; }
