/* ===== Oxdit Technology — Design Tokens ===== */
:root {
  --color-black: #0A0A0A;
  --color-black-soft: #1A1816;
  --color-orange: #FF6A00;
  --color-orange-light: #FF8A33;
  --color-white: #FFFFFF;
  --color-bg: #F9F8F6;
  --color-border: #E3E1DD;
  --color-text: #1A1816;
  --color-text-muted: #6B6862;
  --radius: 12px;
  --radius-lg: 16px;
  --container: 1140px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}




.hero-image {
  position: relative;
  background-image: url('https://res.cloudinary.com/woqn5dlu/image/upload/v1786455099/oxdit-landing_g3qjgq.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  color: #fff;
}

.hero-content p.lead {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .hero-image {
    min-height: 460px;
  }
  .hero-overlay {
    background: rgba(0, 0, 0, 0.6);
  }
}





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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-black);
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { color: var(--color-text-muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--color-orange);
}

.text-gradient {
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--color-orange); color: var(--color-white); }
.btn-primary:hover { background: var(--color-orange-light); }
.btn-dark { background: var(--color-black); color: var(--color-white); }
.btn-dark:hover { background: var(--color-black-soft); }
.btn-outline { background: transparent; color: var(--color-black); border-color: var(--color-black); }
.btn-outline:hover { background: var(--color-black); color: var(--color-white); }
.btn-outline-white { background: transparent; color: var(--color-white); border-color: var(--color-white); }
.btn-outline-white:hover { background: var(--color-white); color: var(--color-black); }

/* ===== Header ===== */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-black);
  letter-spacing: -0.02em;
}
.logo span { color: var(--color-orange); }
.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-black);
  position: relative;
}
.nav-desktop a:hover { color: var(--color-orange); }
.nav-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle-label {
  display: none;
  cursor: pointer;
  font-size: 1.6rem;
  font-family: var(--font-heading);
}
#nav-toggle { display: none; }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--color-black);
  padding: 16px 24px 24px;
}
.nav-mobile a {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #2A2825;
}

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .nav-toggle-label { display: block; }
  #nav-toggle:checked ~ .nav-mobile { display: flex; }
}

/* ===== Hero (dark) ===== */
.hero-dark {
  background: var(--color-black);
  color: var(--color-white);
  padding: 90px 0 70px;
}
.hero-dark h1 { color: var(--color-white); }
.hero-dark p.lead {
  color: #C9C6C0;
  font-size: 1.1rem;
  max-width: 620px;
  margin: 20px 0 32px;
}

/* ===== Service hero band (used on service pages) ===== */
.hero-band {
  background: var(--color-black);
  color: var(--color-white);
  padding: 64px 0;
  text-align: center;
}
.hero-band .badge {
  display: inline-block;
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.hero-band h1 { color: var(--color-white); max-width: 760px; margin: 0 auto 16px; }
.hero-band p { color: #C9C6C0; max-width: 560px; margin: 0 auto 28px; }

/* ===== Sections ===== */
section { padding: 64px 0; }
.section-white { background: var(--color-white); }

/* ===== Feature strip (3-up, homepage) ===== */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}
.feature-strip .item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}
.feature-strip .item .dot {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--color-orange);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
}
@media (max-width: 760px) { .feature-strip { grid-template-columns: 1fr; } }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }

.about-img, .hero-img-frame {
  background: var(--color-black);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-orange);
  font-family: var(--font-heading);
  font-weight: 700;
  overflow: hidden;
}
.about-img img, .hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Services grid (homepage signature) ===== */
.services-panel {
  background: var(--color-black);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--color-white);
}
.services-panel h2 { color: var(--color-white); }
.services-panel .eyebrow { color: var(--color-orange); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #151412;
  border: 1px solid #2A2825;
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s ease;
}
.service-card:hover { border-color: var(--color-orange); }
.service-card .icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--color-orange);
  color: var(--color-black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 16px;
}
.service-card h3 { color: var(--color-white); margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; margin-bottom: 12px; }
.service-card .learn-more { color: var(--color-orange); font-weight: 600; font-size: 0.85rem; }

/* ===== Benefits row (service pages) ===== */
.benefits-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .benefits-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .benefits-row { grid-template-columns: 1fr; } }
.benefit-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
}
.benefit-card .check {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: #FFF1E6;
  color: var(--color-orange);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ===== Capabilities list ===== */
.capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 24px 0;
}
@media (max-width: 600px) { .capabilities { grid-template-columns: 1fr; } }
.capabilities li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}
.capabilities li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--color-orange);
  flex-shrink: 0;
}

/* ===== Pills (editorial capability list — About page) ===== */
.pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 32px 0; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-border);
  border-radius: 40px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--color-white);
}
.pill .sub { color: var(--color-text-muted); font-size: 0.78rem; font-weight: 400; }

/* ===== Step list (About — Getting Started) ===== */
.step-list { max-width: 640px; margin: 0 auto; }
.step {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 40px;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}
.step:last-child::before { display: none; }
.step-num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-orange);
  color: var(--color-orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}
.step-content h4 { font-family: var(--font-heading); margin-bottom: 6px; }

/* ===== Team grid ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card { }
.team-photo {
  background: var(--color-black);
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 14px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-family: var(--font-heading); font-size: 1rem; margin-bottom: 2px; }
.team-card .role { color: var(--color-text-muted); font-size: 0.85rem; margin-bottom: 8px; }
.team-card .linkedin { color: var(--color-orange); font-weight: 600; font-size: 0.85rem; }

/* ===== FAQ (JS-free via details/summary) ===== */
.faq-list { max-width: 760px; margin: 32px auto 0; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--color-orange); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 22px 18px; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form { display: grid; gap: 16px; }
.contact-form label { font-weight: 600; font-size: 0.9rem; display: block; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info-item .icon-box {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--color-black);
  color: var(--color-orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.map-frame { border-radius: var(--radius); overflow: hidden; margin-top: 24px; border: 1px solid var(--color-border); }
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ===== Footer ===== */
.site-footer { background: var(--color-black); color: #C9C6C0; padding: 56px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; } }
.footer-logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--color-white); margin-bottom: 12px; }
.footer-logo span { color: var(--color-orange); }
.footer-col h5 { color: var(--color-white); font-family: var(--font-heading); margin-bottom: 14px; font-size: 0.95rem; }
.footer-col a, .footer-col p { display: block; color: #C9C6C0; font-size: 0.9rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--color-orange); }
.footer-bottom {
  border-top: 1px solid #2A2825;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #8A8781;
}

/* ===== Privacy/Cookies policy text pages ===== */
.policy-content h3 { margin: 32px 0 12px; }
.policy-content h5 { font-family: var(--font-heading); margin: 20px 0 10px; }
.policy-content p, .policy-content li { color: var(--color-text-muted); margin-bottom: 10px; }
.policy-content ul { padding-left: 20px; margin-bottom: 14px; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.policy-content table th, .policy-content table td {
  border: 1px solid var(--color-border);
  padding: 10px 12px;
  text-align: left;
  font-size: 0.9rem;
  vertical-align: top;
}
.policy-content table th { background: #F1EFEB; font-family: var(--font-heading); }
.placeholder-note { color: var(--color-orange); font-weight: 600; }
