/* ============================================================
   NEXUS — Shared Stylesheet
   Import order: reset → tokens → base → layout → components → pages
   ============================================================ */

/* ------------------------------------------------------------
   1. RESET
   ------------------------------------------------------------ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote::before, blockquote::after,
q::before, q::after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }


/* ------------------------------------------------------------
   2. DESIGN TOKENS
   ------------------------------------------------------------ */
:root {
  --ink:        #0f0f0f;
  --ink-soft:   #1a1a1a;
  --ink-mid:    #2b2b2b;
  --border:     #353535;
  --border-lt:  #e0dfd8;
  --accent:     #c8f135;
  --accent-dk:  #a8d020;
  --surface:    #f7f6f2;
  --white:      #ffffff;
  --muted:      #888888;
  --muted-dk:   #555555;
  --muted-lt:   #666666;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --nav-h: 60px;
  --radius: 2px;
  --section-pad: 100px;
}


/* ------------------------------------------------------------
   3. BASE
   ------------------------------------------------------------ */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
  line-height: 1;
}

a { text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}


/* ------------------------------------------------------------
   4. LAYOUT HELPERS
   ------------------------------------------------------------ */
.section-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 60px;
}

.section-title em,
.section-title span.dim {
  font-style: normal;
  color: var(--muted);
}

.section-title span.accent {
  color: var(--accent);
}


/* ------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------ */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 36px;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 1px solid #414141;
  color: #dfdfdf;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 36px;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

.btn-dark {
  display: inline-block;
  background: var(--ink);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-dark:hover { background: #222; }

.btn-accent-outline {
  display: inline-block;
  border: 1px solid rgba(200,241,53,0.3);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.btn-accent-outline:hover { border-color: var(--accent); }

.btn-submit {
  display: block;
  width: 100%;
  background: var(--ink);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: #222; transform: translateY(-1px); }


/* ------------------------------------------------------------
   6. NAV
   ------------------------------------------------------------ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: var(--ink);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 98%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: #dfdfdf;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover        { color: #fff; background: var(--ink-mid); }
.nav-links a.active       { color: var(--accent); }

.nav-links a.nav-cta {
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
}
.nav-links a.nav-cta:hover,
.nav-links a.nav-cta.active { background: var(--accent-dk); color: var(--ink); }

/* Mobile nav */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #dfdfdf;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--ink);
  border-bottom: 1px solid var(--border);
  z-index: 9998;
  padding: 16px;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  color: #dfdfdf;
  text-decoration: none;
  padding: 12px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  display: block;
  transition: background 0.2s;
}

.mobile-menu a:hover    { background: var(--ink-mid); }
.mobile-menu a.cta-mob  { background: var(--accent); color: var(--ink); margin-top: 8px; }


/* ------------------------------------------------------------
   7. PAGE HERO (shared across inner pages)
   ------------------------------------------------------------ */
.page-hero {
  background: var(--ink);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,241,53,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,241,53,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-tag {
  display: inline-block;
  background: rgba(200,241,53,0.1);
  border: 1px solid rgba(200,241,53,0.25);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.page-hero p {
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.65;
}


/* ------------------------------------------------------------
   8. FOOTER
   ------------------------------------------------------------ */
footer {
  background: #080808;
  border-top: 1px solid #1a1a1a;
  padding: 48px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 28px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--muted-dk);
  font-size: 0.88rem;
  line-height: 1.6;
  font-weight: 300;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dk);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #444;
  font-size: 0.8rem;
}


/* ------------------------------------------------------------
   9. CTA SECTION (shared dark band)
   ------------------------------------------------------------ */
.cta-section {
  background: var(--ink);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,241,53,0.06) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  position: relative;
}

.cta-section h2 em {
  font-style: normal;
  color: var(--accent);
}

.cta-section p {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}


/* ------------------------------------------------------------
   10. MARQUEE BAND
   ------------------------------------------------------------ */
.marquee-band {
  background: var(--ink);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #444;
  padding: 0 32px;
}

.marquee-item span { color: var(--accent); margin-right: 12px; }

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


/* ------------------------------------------------------------
   11. CARDS GRID (shared service preview style)
   ------------------------------------------------------------ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border-lt);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  overflow: hidden;
}

.card {
  background: var(--surface);
  padding: 40px 36px;
  transition: background 0.2s;
  position: relative;
}
.card:hover                       { background: var(--ink); }
.card:hover .card-num,
.card:hover .card-desc            { color: #fff; }
.card:hover .card-title           { color: var(--accent); }

.card-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 24px;
  transition: color 0.2s;
}
.card-icon   { font-size: 1.8rem; margin-bottom: 20px; }
.card-title  { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; transition: color 0.2s; }
.card-desc   { color: #666; font-size: 0.92rem; line-height: 1.65; font-weight: 300; transition: color 0.2s; }


/* ============================================================
   PAGE-SPECIFIC STYLES
   ============================================================ */

/* ------------------------------------------------------------
   HOME — Hero
   ------------------------------------------------------------ */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,241,53,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,241,53,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-blob {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,241,53,0.12) 0%, transparent 70%);
  top: -100px; right: -150px;
  pointer-events: none;
}

.hero-inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background: rgba(200,241,53,0.1);
  border: 1px solid rgba(200,241,53,0.25);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero h1 em { font-style: normal; color: var(--accent); display: block; }

.hero p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid #222;
  flex-wrap: wrap;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-num span  { color: var(--accent); }
.stat-label     { color: var(--muted); font-size: 0.85rem; margin-top: 4px; letter-spacing: 0.04em; text-transform: uppercase; }


/* HOME — Services Strip */
.services-strip {
  background: var(--surface);
  padding: var(--section-pad) 0;
}


/* HOME — About Teaser */
.about-teaser {
  padding: var(--section-pad) 0;
  background: var(--ink);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-box {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 50%, #1a1a1a 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.about-img-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(200,241,53,0.03) 0px, rgba(200,241,53,0.03) 1px, transparent 1px, transparent 20px);
}

.about-img-box::after {
  content: '✦';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: rgba(200,241,53,0.15);
}

.about-img-wrap { position: relative; }

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 20px;
  width: 120px; height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  border-radius: var(--radius);
}
.about-badge strong { font-size: 2rem; display: block; line-height: 1; }

.about-text h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about-text p { color: var(--muted); font-size: 1rem; line-height: 1.75; font-weight: 300; margin-bottom: 20px; }

.about-features { margin: 32px 0; display: flex; flex-direction: column; gap: 14px; }

.about-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #bbb;
  font-size: 0.9rem;
}

.about-feat-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }


/* HOME — Testimonials */
.testimonial-section {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

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

.testi-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  padding: 36px;
  border-radius: var(--radius);
}

.testi-quote { font-size: 2.5rem; color: var(--accent); font-family: var(--font-display); font-weight: 800; line-height: 0.5; margin-bottom: 20px; }
.testi-text  { color: #444; font-size: 0.95rem; line-height: 1.7; font-weight: 300; margin-bottom: 24px; }

.testi-author { display: flex; align-items: center; gap: 12px; }

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

.testi-name { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; }
.testi-role { color: var(--muted); font-size: 0.8rem; }


/* ------------------------------------------------------------
   ABOUT PAGE
   ------------------------------------------------------------ */
.mission { padding: var(--section-pad) 0; background: var(--surface); }

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 24px; }
.mission p  { color: var(--muted-dk); font-size: 1rem; line-height: 1.75; font-weight: 300; margin-bottom: 16px; }

.mission-visual {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.mission-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(200,241,53,0.03) 0px, rgba(200,241,53,0.03) 1px, transparent 1px, transparent 20px);
}

.mission-big   { font-family: var(--font-display); font-size: 6rem; font-weight: 800; color: rgba(200,241,53,0.08); line-height: 1; }
.mission-quote { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: #fff; line-height: 1.3; margin-top: 20px; position: relative; }
.mission-quote em { font-style: normal; color: var(--accent); }
.mission-cite  { color: var(--muted); font-size: 0.85rem; margin-top: 16px; position: relative; }

/* Values */
.values { padding: var(--section-pad) 0; background: var(--ink); }
.values-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1; margin-bottom: 60px; }
.values-title em { font-style: normal; color: var(--accent); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #222;
  border: 1px solid #222;
  border-radius: var(--radius);
  overflow: hidden;
}

.value-item { background: #0f0f0f; padding: 44px 40px; transition: background 0.2s; }
.value-item:hover { background: #161616; }
.value-num   { font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; color: #333; margin-bottom: 20px; }
.value-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--accent); margin-bottom: 12px; }
.value-desc  { color: #666; font-size: 0.9rem; line-height: 1.65; font-weight: 300; }

/* Team */
.team { padding: var(--section-pad) 0; background: var(--surface); }
.team-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 0; }
.team-title span { color: var(--muted); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--border-lt);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 60px;
}

.team-card { background: var(--surface); padding: 36px 32px; transition: background 0.2s; }
.team-card:hover { background: var(--white); }

.team-avatar {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.team-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; font-family: var(--font-display); }
.team-bio  { color: #666; font-size: 0.88rem; line-height: 1.6; font-weight: 300; }

/* Timeline */
.timeline-section { padding: var(--section-pad) 0; background: var(--ink); }
.timeline-title   { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 60px; }
.timeline-title span { color: var(--accent); }

.timeline {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #222;
  margin-left: 20px;
}

.timeline-item          { position: relative; padding: 0 0 48px 40px; }
.timeline-item::before  { content: ''; position: absolute; left: -5px; top: 6px; width: 9px; height: 9px; background: var(--accent); border-radius: 50%; }
.timeline-year          { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 8px; }
.timeline-event         { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.timeline-desc          { color: #666; font-size: 0.88rem; line-height: 1.6; font-weight: 300; max-width: 480px; }

/* About CTA variant */
.cta-section.light {
  background: var(--surface);
  border-top: 1px solid var(--border-lt);
}
.cta-section.light::before { display: none; }
.cta-section.light h2 { color: var(--ink); }
.cta-section.light h2 em { color: var(--muted); }
.cta-section.light p  { color: #888; }


/* ------------------------------------------------------------
   SERVICES PAGE
   ------------------------------------------------------------ */
.services-main { padding: var(--section-pad) 0; background: var(--surface); }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2px;
  transition: box-shadow 0.2s;
}
.service-block:hover { box-shadow: 0 4px 40px rgba(0,0,0,0.08); }

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

.service-num-panel {
  background: var(--ink);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-num-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(200,241,53,0.03) 0px, rgba(200,241,53,0.03) 1px, transparent 1px, transparent 22px);
}

.service-big-num { font-family: var(--font-display); font-size: 8rem; font-weight: 800; color: rgba(200,241,53,0.08); line-height: 1; position: relative; }
.service-icon    { font-size: 2.5rem; color: var(--accent); position: relative; }
.service-content { background: var(--white); padding: 60px; }

.service-tag {
  display: inline-block;
  background: rgba(200,241,53,0.12);
  color: #5a6a00;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.service-title { font-family: var(--font-display); font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 16px; }
.service-desc  { color: var(--muted-dk); font-size: 1rem; line-height: 1.75; font-weight: 300; margin-bottom: 32px; }

.service-list      { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.service-list-item { display: flex; align-items: flex-start; gap: 10px; color: #444; font-size: 0.9rem; line-height: 1.5; }
.service-list-item::before { content: '→'; color: var(--accent); font-family: var(--font-display); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Process */
.process       { padding: var(--section-pad) 0; background: var(--ink); }
.process-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 60px; }
.process-title span { color: var(--accent); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #222;
  border: 1px solid #222;
  border-radius: var(--radius);
  overflow: hidden;
}

.process-step  { background: #0f0f0f; padding: 40px 32px; }
.step-arrow    { font-family: var(--font-display); font-weight: 800; color: var(--accent); font-size: 1.4rem; margin-bottom: 20px; }
.step-num      { font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; color: #333; margin-bottom: 16px; }
.step-title    { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-desc     { color: #666; font-size: 0.88rem; line-height: 1.6; font-weight: 300; }

/* Pricing */
.pricing { padding: var(--section-pad) 0; background: var(--surface); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-lt);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 60px;
}

.pricing-card          { background: var(--surface); padding: 48px 36px; transition: background 0.2s; }
.pricing-card.featured { background: var(--ink); }

.pricing-label  { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.pricing-card.featured .pricing-label { color: #555; }
.pricing-name   { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--ink); margin-bottom: 16px; }
.pricing-card.featured .pricing-name { color: var(--accent); }
.pricing-price  { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 6px; }
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-period { color: var(--muted); font-size: 0.85rem; margin-bottom: 32px; }
.pricing-card.featured .pricing-period { color: #555; }

.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.pricing-feat     { font-size: 0.9rem; color: var(--muted-dk); display: flex; gap: 8px; align-items: flex-start; }
.pricing-feat span { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.pricing-card.featured .pricing-feat { color: #aaa; }


/* ------------------------------------------------------------
   CONTACT PAGE
   ------------------------------------------------------------ */
.contact-main { padding: var(--section-pad) 0; background: var(--surface); }

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

.info-label { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.info-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; color: var(--ink); margin-bottom: 20px; }
.info-desc  { color: #666; font-size: 0.95rem; line-height: 1.75; font-weight: 300; margin-bottom: 48px; }

.contact-items {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border-lt);
  transition: background 0.2s;
  text-decoration: none;
}
.contact-item:last-child { border-bottom: none; }
.contact-item:hover { background: var(--ink); }
.contact-item:hover .ci-icon,
.contact-item:hover .ci-value  { color: #fff; }
.contact-item:hover .ci-icon   { color: var(--accent); }
.contact-item:hover .ci-label  { color: #666; }

.ci-icon  { font-size: 1.2rem; width: 36px; flex-shrink: 0; color: var(--ink); transition: color 0.2s; }
.ci-label { font-family: var(--font-display); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; transition: color 0.2s; }
.ci-value { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--ink); transition: color 0.2s; }

.availability { background: var(--ink); border-radius: var(--radius); padding: 28px; }
.avail-title  { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #555; margin-bottom: 16px; }
.avail-item   { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #1a1a1a; }
.avail-item:last-child { border-bottom: none; }
.avail-day    { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.avail-time   { font-size: 0.82rem; color: #555; }

.avail-badge  { font-family: var(--font-display); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--radius); }
.badge-open   { background: rgba(200,241,53,0.12); color: var(--accent); }
.badge-closed { background: #1a1a1a; color: #444; }

/* Form */
.contact-form-wrap { background: var(--white); border: 1px solid var(--border-lt); border-radius: var(--radius); padding: 52px 48px; }
.form-title    { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.form-subtitle { color: var(--muted); font-size: 0.9rem; margin-bottom: 36px; font-weight: 300; }

.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-label { font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #666; display: block; margin-bottom: 8px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--accent); background: var(--white); }

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.checkbox-group { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 28px; }
.checkbox-group input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--ink); flex-shrink: 0; cursor: pointer; }
.checkbox-label { color: var(--muted); font-size: 0.85rem; line-height: 1.5; cursor: pointer; }
.form-note      { text-align: center; color: #bbb; font-size: 0.8rem; margin-top: 16px; }

.success-msg   { display: none; text-align: center; padding: 40px 20px; }
.success-icon  { font-size: 3rem; margin-bottom: 16px; }
.success-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.success-desc  { color: var(--muted); font-size: 0.95rem; }

/* FAQ */
.faq       { padding: var(--section-pad) 0; background: var(--ink); }
.faq-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 60px; }
.faq-title em { font-style: normal; color: var(--accent); }

.faq-list  { display: flex; flex-direction: column; gap: 1px; }
.faq-item  { background: #0f0f0f; border: 1px solid #1a1a1a; border-radius: var(--radius); overflow: hidden; }

.faq-question {
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: background 0.2s;
}
.faq-question:hover { background: #161616; }

.faq-icon { color: var(--accent); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; font-family: var(--font-display); font-weight: 800; }
.faq-answer   { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 28px 24px; color: #666; font-size: 0.9rem; line-height: 1.7; font-weight: 300; }

.faq-item.open .faq-answer { max-height: 200px; }
.faq-item.open .faq-icon   { transform: rotate(45deg); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links       { display: none; }
  .mobile-menu-btn { display: block; }

  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .about-badge   { bottom: 10px; right: 10px; width: 90px; height: 90px; }
  .mission-grid  { grid-template-columns: 1fr; gap: 40px; }
  .values-grid   { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats    { gap: 28px; }
}

@media (max-width: 480px) {
  .footer-top      { grid-template-columns: 1fr; }
  .process-steps   { grid-template-columns: 1fr; }
  .service-num-panel,
  .service-content { padding: 36px; }
}
