/* ============================================
   BEATUS DIGITAL — Stylesheet
   beatusdigital.au
   ============================================ */

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

:root {
  --bg:       #0a0a0a;
  --bg-2:     #111111;
  --bg-3:     #1a1a1a;
  --fg:       #f5f5f5;
  --fg-2:     #999999;
  --fg-3:     #555555;
  --border:   #1f1f1f;
  --border-2: #2a2a2a;
  --font:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ============================================
   LOGO
   ============================================ */

.logo {
  display: inline-flex;
  align-items: baseline;
  cursor: pointer;
  gap: 0;
}

.logo-b {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.logo-ud {
  font-size: 26px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  line-height: 1;
  letter-spacing: -2px;
}

.logo-name {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3.5px;
  color: var(--fg-3);
  margin-left: 12px;
  align-self: center;
}

.logo-sm .logo-b,
.logo-sm .logo-ud {
  font-size: 22px;
}

/* ============================================
   NAV
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}

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

.nav-links a {
  font-size: 13px;
  color: var(--fg-2);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.btn-nav {
  background: #fff !important;
  color: #000 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  padding: 10px 20px;
  color: #000 !important;
  transition: opacity 0.2s !important;
}

.btn-nav:hover { opacity: 0.85 !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 2px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px 24px;
  position: sticky;
  top: 62px;
  z-index: 190;
}

.mobile-menu a {
  font-size: 15px;
  color: var(--fg-2);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: #fff; }
.mobile-menu a.btn-primary { margin-top: 16px; border: none; text-align: center; }
.mobile-menu.open { display: flex; }

/* ============================================
   TICKER
   ============================================ */

.ticker {
  background: #fff;
  color: #000;
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.ticker-track {
  display: inline-block;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  margin: 0 20px;
}

.ticker-track .dot {
  letter-spacing: 0;
  margin: 0;
  color: #aaa;
}

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

/* ============================================
   HERO
   ============================================ */

.hero {
  padding: 80px 0 64px;
}

.hero-tag {
  display: inline-block;
  border: 1px solid var(--border-2);
  color: var(--fg-3);
  font-size: 11px;
  letter-spacing: 3.5px;
  padding: 7px 16px;
  margin-bottom: 32px;
}

.hero-headline {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 24px;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-block;
  background: #fff;
  color: #000;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.88; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border: 1px solid var(--border-2);
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-secondary:hover { border-color: #555; }

.btn-dark {
  display: inline-block;
  background: #000;
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border: 2px solid #000;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.btn-dark:hover { opacity: 0.85; }

/* ============================================
   STATS
   ============================================ */

.stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-num {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  color: var(--fg-3);
  letter-spacing: 1.5px;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-2);
  flex-shrink: 0;
}

/* ============================================
   SECTION SHARED
   ============================================ */

.section-label {
  display: block;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--fg-3);
  font-weight: 400;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #fff;
  line-height: 1.1;
}

.section-sub {
  font-size: 15px;
  color: var(--fg-2);
  margin-top: 14px;
  line-height: 1.7;
}

.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }

/* ============================================
   SERVICES
   ============================================ */

.services {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--bg);
  padding: 36px 28px;
  transition: background 0.25s;
}

.service-card:hover { background: var(--bg-2); }

.service-num {
  font-size: 10px;
  color: var(--fg-3);
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.service-tag {
  font-size: 10px;
  color: var(--fg-3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.service-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  margin-bottom: 24px;
}

.service-list li {
  font-size: 13px;
  color: var(--fg-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li::before {
  content: '—';
  color: var(--fg-3);
  font-size: 12px;
  flex-shrink: 0;
}

.service-outcome {
  border-top: 1px solid var(--border-2);
  padding-top: 16px;
}

.outcome-label {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--fg-3);
  margin-bottom: 8px;
}

.service-outcome p {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
}

.pricing-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--fg-2);
  text-align: center;
  padding: 18px 24px;
  border: 1px solid var(--border);
}

.pricing-note strong { color: #fff; }

/* ============================================
   PROCESS
   ============================================ */

.process {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  background: var(--bg);
  text-align: center;
}

.step-num {
  font-size: 10px;
  color: var(--fg-3);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.step-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}

.process-arrow {
  font-size: 22px;
  color: var(--fg-3);
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIAL
   ============================================ */

.testimonial {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.quote-mark {
  font-size: 100px;
  font-weight: 900;
  color: var(--border-2);
  line-height: 0.7;
  margin-bottom: 24px;
  font-family: Georgia, 'Times New Roman', serif;
}

.quote-text {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  color: #ccc;
  line-height: 1.8;
  font-style: normal;
  max-width: 820px;
}

.quote-author {
  display: block;
  font-size: 11px;
  color: var(--fg-3);
  margin-top: 28px;
  letter-spacing: 2px;
  font-style: normal;
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text .section-title { margin-bottom: 28px; }

.about-text p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-list {
  list-style: none;
  margin: 28px 0 36px;
}

.about-list li {
  font-size: 14px;
  color: var(--fg-2);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-list li::before {
  content: '✓';
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.about-photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-3);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.about-photo:hover { filter: grayscale(60%); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  align-self: start;
}

.about-stat-card {
  background: var(--bg-2);
  padding: 32px 24px;
}

.about-stat-full { grid-column: 1 / -1; }

.about-stat-num {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 10px;
}

.about-stat-label {
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* ============================================
   FOOTER CTA
   ============================================ */

.footer-cta {
  background: #fff;
  padding: 72px 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-cta-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  color: #000;
  line-height: 1;
  margin-bottom: 12px;
}

.footer-cta-sub {
  font-size: 14px;
  color: #666;
  max-width: 400px;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 40px 0 0;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-3);
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--fg-3);
  transition: color 0.2s;
}

.footer-nav a:hover { color: #fff; }

.footer-copy {
  font-size: 12px;
  color: var(--fg-3);
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */

@media (max-width: 960px) {
  .container { padding: 0 32px; }

  .nav { padding: 18px 32px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 56px 0 48px; }
  .hero-headline { letter-spacing: -2px; }

  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
    padding-top: 36px;
  }

  .stat-divider { display: none; }

  .services { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .process { padding: 56px 0; }
  .process-steps { flex-direction: column; align-items: stretch; gap: 24px; }
  .process-step { max-width: 100%; text-align: left; }
  .process-arrow { transform: rotate(90deg); text-align: center; font-size: 18px; }

  .testimonial { padding: 56px 0; }

  .about { padding: 56px 0; }
  .about-content { grid-template-columns: 1fr; gap: 48px; }

  .footer-cta { padding: 56px 0; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }

  .footer { padding: 32px 0 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { flex-wrap: wrap; }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */

@media (max-width: 600px) {
  .container { padding: 0 20px; }

  .nav { padding: 16px 20px; }
  .mobile-menu { padding: 8px 20px 20px; }

  .hero { padding: 40px 0 36px; }
  .hero-headline { font-size: 40px; letter-spacing: -1.5px; }
  .outline-text { -webkit-text-stroke-width: 1.2px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }

  .stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-num { font-size: 30px; }

  .service-card { padding: 28px 20px; }

  .section-title { letter-spacing: -1px; }

  .about-stats { grid-template-columns: 1fr; }
  .about-stat-full { grid-column: auto; }

  .footer-cta-title { font-size: 32px; }
  .btn-dark { width: 100%; text-align: center; }

  .footer-brand { flex-direction: column; align-items: flex-start; gap: 8px; }
}
