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

:root {
  --red:        #cc0d0d;
  --red-dark:   #900909;
  --red-light:  #e82525;
  --red-glow:   rgba(204, 13, 13, 0.35);
  --bg:         #080808;
  --bg-surface: #101010;
  --bg-card:    #181818;
  --border:     #272727;
  --white:      #f2f2f2;
  --text-mid:   #bbbbbb;
  --text-dim:   #777777;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 5%;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  font-family: 'Rajdhani', 'Segoe UI', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.nav-logo-img {
  height: 58px;
  width: auto;
  display: block;
  margin-top: 8px;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover { color: var(--red-light); }

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: var(--bg);
  padding: 5% 10%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 50%, rgba(204,13,13,.16) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content { position: relative; flex: 1; max-width: 580px; }

.hero-visual {
  position: relative;
  flex: 0 0 auto;
  width: min(420px, 42vw);
}

.hero-logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--red);
}

.hero h1 {
  font-family: 'Rajdhani', 'Segoe UI', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  color: var(--white);
  line-height: 1.0;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: .02em;
}

.hero h1 span { color: var(--red-light); }

.hero p {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 2.2rem;
  line-height: 1.75;
}

.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .15s, box-shadow .15s, background .15s;
  cursor: pointer;
  border: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 22px var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-light);
  box-shadow: 0 4px 30px rgba(204,13,13,.55);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
  margin-left: 1rem;
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red-light);
}

/* ── SECTIONS ── */
section { padding: 6rem 10%; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--red);
}

.section-title {
  font-family: 'Rajdhani', 'Segoe UI', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: .02em;
  color: var(--white);
}

.section-subtitle {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ── ABOUT ── */
.about { background: var(--bg-surface); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 1.25rem 1.5rem;
  border-radius: 3px;
}

.stat-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: .78rem;
  color: var(--text-dim);
  margin-top: .3rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.about-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(204,13,13,.25) 0%, transparent 70%);
  pointer-events: none;
}

.about-logo-img { width: 100%; max-width: 260px; margin: 0 auto 1.5rem; display: block; }

.about-visual h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .75rem;
  letter-spacing: .08em;
  color: var(--white);
}

.about-visual p { color: var(--text-mid); font-size: .95rem; }

/* ── DATA PHILOSOPHY ── */
.philosophy {
  background: var(--bg-surface);
  padding: 3rem 10%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.philosophy-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex: 1;
}

.philosophy-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.philosophy-item strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: .35rem;
}

.philosophy-item p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

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

@media (max-width: 700px) {
  .philosophy-inner { flex-direction: column; gap: 2rem; }
  .philosophy-divider { width: 100%; height: 1px; }
}

/* ── FOUNDERS / TEAM ── */
.founders { background: var(--bg); }

.founders .section-title span { color: var(--red-light); }

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.founder-card {
  display: flex;
  gap: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: border-color .2s;
}

.founder-card:hover { border-color: var(--red); }

.founder-avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red-dark);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
}

.founder-info h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: .2rem;
}

.founder-title {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}

.founder-info p {
  color: var(--text-mid);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.founder-tags span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  background: rgba(204,13,13,.1);
  border: 1px solid rgba(204,13,13,.22);
  color: var(--text-mid);
  padding: .25rem .65rem;
  border-radius: 3px;
}

/* ── SERVICES ── */
#services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.service-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(204,13,13,.14);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(204,13,13,.1);
  border: 1px solid rgba(204,13,13,.22);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .5rem;
  letter-spacing: .04em;
  color: var(--white);
}

.service-card p { color: var(--text-dim); font-size: .9rem; line-height: 1.65; }

/* ── CONTACT ── */
.contact { background: var(--bg-surface); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: .06em;
  color: var(--white);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(204,13,13,.12);
  border: 1px solid rgba(204,13,13,.28);
  color: var(--red-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: .78rem;
  color: var(--text-dim);
  margin-bottom: .15rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-item-text span { font-size: .95rem; color: var(--white); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--text-mid);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  background: var(--bg-surface);
  color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group select option { background: var(--bg-surface); color: var(--white); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: .9rem; font-size: .9rem; }

.form-message {
  display: none;
  padding: .9rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: .9rem;
  font-weight: 500;
}

.form-message.success { background: rgba(39,174,96,.1); color: #5ddb8e; border: 1px solid rgba(39,174,96,.25); }
.form-message.error   { background: rgba(204,13,13,.1);  color: #ff6b6b; border: 1px solid rgba(204,13,13,.3); }

/* ── FOOTER ── */
footer {
  background: #000;
  color: var(--text-dim);
  text-align: center;
  padding: 2.5rem 5%;
  font-size: .875rem;
  border-top: 1px solid var(--border);
}

footer strong { color: var(--white); }
footer .footer-links { margin-top: .5rem; }
footer .footer-links a { color: var(--text-dim); text-decoration: none; margin: 0 .75rem; transition: color .2s; }
footer .footer-links a:hover { color: var(--red-light); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding: 6rem 6% 4rem; }
  .hero-visual { width: 75vw; max-width: 300px; }
  .hero p { margin: 0 auto 2.2rem; }
  .hero-eyebrow { justify-content: center; }
  .about-grid, .contact-wrapper, .founders-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { order: -1; }
  nav { flex-direction: column; gap: 1rem; }
  .nav-links { gap: 1.25rem; }
  .btn-outline { margin-left: 0; margin-top: .75rem; }
  section { padding: 4rem 6%; }
}

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