/* =============================================
   DAGEAR — Main Stylesheet
   Design: Bold tech-meets-organic, dark/white
   Colors: #0a0a0a (black), #FF4500 (orange), #f5f5f0 (off-white)
   Fonts: Space Grotesk (body), Space Mono (labels/code)
   ============================================= */

:root {
  --black: #0a0a0a;
  --orange: #FF4500;
  --orange-dark: #cc3700;
  --white: #ffffff;
  --off-white: #f5f5f0;
  --gray-100: #f0f0eb;
  --gray-200: #e0e0d8;
  --gray-400: #999990;
  --gray-600: #555550;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --nav-h: 72px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.text--orange { color: var(--orange); }
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '///';
  opacity: 0.5;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,69,0,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--ghost:hover {
  background: var(--black);
  color: var(--white);
}
.btn--lg { padding: 16px 32px; font-size: 15px; }
.btn--xl { padding: 20px 40px; font-size: 16px; }
.btn--sm { padding: 8px 16px; font-size: 13px; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
.nav.scrolled {
  box-shadow: var(--shadow);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo { flex-shrink: 0; }
.nav__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.nav__logo-img--sm { height: 28px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--black); }
.nav__cta-link {
  color: var(--orange) !important;
  font-weight: 600 !important;
}
.nav__btn { margin-left: 8px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: rgba(255,69,0,0.08);
  border: 1px solid rgba(255,69,0,0.2);
  padding: 6px 12px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.dot--orange { background: var(--orange); }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero__headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat__num {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}
.stat__label {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* TERMINAL */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.terminal {
  background: var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,69,0,0.15);
  font-family: var(--font-mono);
}
.terminal__bar {
  background: #1a1a1a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #2a2a2a;
}
.terminal__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.terminal__dot.red { background: #ff5f57; }
.terminal__dot.yellow { background: #febc2e; }
.terminal__dot.green { background: #28c840; }
.terminal__title {
  font-size: 11px;
  color: #666;
  margin-left: 8px;
  letter-spacing: 0.08em;
}
.terminal__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.terminal__body p {
  font-size: 14px;
  color: #ccc;
  letter-spacing: 0.02em;
}
.t-green { color: #28c840; }
.t-orange { color: var(--orange); font-weight: 700; }
.t-blink {
  color: var(--orange);
  animation: blink 1.2s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ===== PROBLEM SECTION ===== */
.problem {
  padding: 100px 0;
  background: var(--off-white);
}
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.problem__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.2s;
}
.problem__card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.problem__icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.problem__card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.problem__card p {
  color: var(--gray-600);
  line-height: 1.7;
}
.problem__cta {
  text-align: center;
  padding: 40px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius-lg);
}
.problem__cta-text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 40px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--off-white); }
.service-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.service-card__link:hover { gap: 8px; }

/* ===== PROCESS ===== */
.process {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}
.process .section-label { color: var(--orange); }
.process .section-title { color: var(--white); }
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 56px;
}
.process__step {
  flex: 1;
  background: #111;
  border: 1px solid #222;
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s;
}
.process__step:hover { border-color: var(--orange); }
.process__step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.process__step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.process__step p {
  color: #999;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 16px;
}
.process__step-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.process__arrow {
  font-size: 24px;
  color: var(--orange);
  margin-top: 60px;
  flex-shrink: 0;
}
.process__cta { text-align: center; }
.process .btn--primary {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.process .btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--off-white);
}
.testimonial-hero {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 48px;
  position: relative;
}
.quote-mark {
  font-size: 80px;
  line-height: 0.8;
  color: var(--orange);
  font-family: Georgia, serif;
  margin-bottom: 16px;
}
.testimonial-hero__quote p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 32px;
}
.testimonial-hero__quote p strong { color: var(--black); }
.testimonial-hero__author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-hero__avatar {
  flex-shrink: 0;
}
.avatar-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-mono);
}
.testimonial-hero__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.testimonial-hero__title {
  font-size: 14px;
  color: var(--gray-600);
}
.testimonial-hero__company {
  font-size: 12px;
  color: var(--orange);
  font-family: var(--font-mono);
  margin-top: 2px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.2s;
}
.testimonial-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.testimonial-card__stars {
  color: var(--orange);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.testimonial-card p strong { color: var(--black); }
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar-sm {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  font-family: var(--font-mono);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-size: 14px;
  font-weight: 700;
}
.testimonial-card__role {
  font-size: 12px;
  color: var(--gray-400);
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 120px 0;
  background: var(--black);
  text-align: center;
}
.final-cta .section-label { justify-content: center; color: var(--orange); }
.final-cta__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.final-cta__sub {
  font-size: 18px;
  color: #999;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.final-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta .btn--primary {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.final-cta .btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 8px 32px rgba(255,69,0,0.4);
}
.final-cta .btn--ghost {
  color: var(--white);
  border-color: #333;
}
.final-cta .btn--ghost:hover {
  background: #1a1a1a;
  border-color: #555;
}
.final-cta__reassurance {
  margin-top: 20px;
  font-size: 13px;
  color: #555;
  font-family: var(--font-mono);
}

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  border-top: 1px solid #1a1a1a;
  padding: 48px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
}
.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: 12px;
}
.footer__brand p {
  font-size: 13px;
  color: #555;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 14px;
  color: #666;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__contact a {
  font-size: 14px;
  color: #666;
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--orange); }
.footer__bottom {
  border-top: 1px solid #1a1a1a;
  padding: 20px 24px;
  text-align: center;
}
.footer__bottom p {
  font-size: 12px;
  color: #333;
  font-family: var(--font-mono);
}

/* ===== LANDING PAGE SPECIFIC ===== */
.lp-body { background: var(--white); }
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.lp-hero {
  padding: 80px 0 100px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.lp-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.lp-hero__headline {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.lp-hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 32px;
}
.lp-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.lp-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.check-icon {
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.lp-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lp-meta__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
  background: var(--off-white);
  padding: 10px 14px;
  border-radius: var(--radius);
}
.lp-meta__icon { font-size: 16px; }

/* FORM CARD */
.lp-form-card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lp-form-card__header {
  padding: 28px 28px 0;
}
.lp-form-card__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--orange);
  background: rgba(255,69,0,0.08);
  border: 1px solid rgba(255,69,0,0.2);
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 12px;
}
.lp-form-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.lp-form-card__sub {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 16px;
}

/* LP LEARN */
.lp-learn {
  padding: 100px 0;
  background: var(--off-white);
}
.lp-learn__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lp-learn__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.2s;
}
.lp-learn__item:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.lp-learn__time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.lp-learn__item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.lp-learn__item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* LP ABOUT */
.lp-about {
  padding: 100px 0;
  background: var(--white);
}
.lp-about__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}
.lp-about__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lp-about__avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 700;
  font-family: var(--font-mono);
  border: 4px solid var(--orange);
}
.lp-about__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: rgba(255,69,0,0.08);
  border: 1px solid rgba(255,69,0,0.2);
  padding: 6px 12px;
  border-radius: 2px;
  text-align: center;
}
.lp-about__bio {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.lp-about__creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.lp-cred {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* LP TESTIMONIALS */
.lp-testimonials {
  padding: 100px 0;
  background: var(--off-white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .lp-hero__inner { grid-template-columns: 1fr; }
  .lp-about__inner { grid-template-columns: 1fr; }
  .lp-about__visual { flex-direction: row; justify-content: flex-start; }
  .lp-learn__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { flex-direction: column; }
  .process__arrow { transform: rotate(90deg); margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__btn { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    gap: 20px;
  }
  .problem__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat__divider { width: 40px; height: 1px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .lp-meta { grid-template-columns: 1fr; }
  .lp-learn__grid { grid-template-columns: 1fr; }
  .lp-about__creds { grid-template-columns: 1fr; }
  .final-cta__actions { flex-direction: column; align-items: center; }
  .section-title { margin-bottom: 32px; }
}
