/* ═══════════════════════════════════════
   RESET
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root { --radius: 12px; --max-w: 1000px; --nav-h: 64px; }

:root,
:root[data-theme="dark"] {
  --bg:         #080808;
  --bg2:        #0f0f0f;
  --surface:    #111111;
  --surface2:   #161616;
  --border:     #1e1e1e;
  --border2:    #2a2a2a;
  --text:       #f0efed;
  --text2:      #b0afad;
  --muted:      #555;
  --accent:     #7c6af7;
  --accent-h:   #9b8dfb;
  --accent-bg:  rgba(124,106,247,.1);
}

:root[data-theme="light"] {
  --bg:         #ffffff;
  --bg2:        #fafafa;
  --surface:    #f5f4f2;
  --surface2:   #eeede9;
  --border:     #e8e6e1;
  --border2:    #d0cec8;
  --text:       #0a0907;
  --text2:      #4a4845;
  --muted:      #aaa;
  --accent:     #5b4ecc;
  --accent-h:   #7c6af7;
  --accent-bg:  rgba(91,78,204,.08);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background .2s, color .2s;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.08;
}
h1 em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -1px;
}
h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.18;
}
h3 { font-weight: 600; }

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-h); border-color: var(--accent-h); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--border2); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 10px; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: var(--nav-h);
  padding: 0 32px;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.scrolled { border-color: var(--border); }

.nav-logo {
  font-size: 15px; font-weight: 700; letter-spacing: -0.4px;
  flex-shrink: 0;
}

.nav-links {
  display: flex; gap: 4px; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 13px; color: var(--muted);
  padding: 6px 12px; border-radius: 6px;
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }

.nav-end { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-cta { padding: 8px 18px; font-size: 13px; }

.theme-toggle {
  width: 34px; height: 34px;
  border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: border-color .15s, background .2s;
}
.theme-toggle:hover { border-color: var(--accent); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px 96px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
}

.hero-text { display: flex; flex-direction: column; }
.hero h1   { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 20px; }
.hero-sub  { font-size: 16px; color: var(--text2); line-height: 1.72; margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.stats-row { display: flex; align-items: center; }
.stat { flex: 1; }
.stat-num {
  font-size: 2.2rem; font-weight: 700; letter-spacing: -2px;
  line-height: 1; margin-bottom: 5px;
}
.stat-label { font-size: 12px; color: var(--muted); line-height: 1.45; }
.stat-sep { width: 1px; height: 44px; background: var(--border2); margin: 0 28px; flex-shrink: 0; }

.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-img {
  width: 100%; aspect-ratio: 3/4; max-height: 560px;
  background: #000;
  border-radius: 20px; border: none;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-placeholder { font-size: 52px; font-weight: 700; color: var(--border2); letter-spacing: -3px; }

.hero-float {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: color-mix(in srgb, var(--surface2) 96%, transparent);
  border: 1px solid var(--border2);
  border-radius: 12px; padding: 12px 16px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.hero-float--a { bottom: 40px; left: -28px; }
.hero-float--b { top: 44px;   right: -28px; }
.float-icon  { font-size: 22px; flex-shrink: 0; }
.float-title { font-size: 13px; font-weight: 600; }
.float-sub   { font-size: 11px; color: var(--muted); margin-top: 1px; }

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 18px 0;
  display: flex; align-items: center; gap: 0;
  overflow: hidden;
}
.marquee-label {
  font-size: 11px; font-weight: 600; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--muted);
  padding: 0 32px; white-space: nowrap; flex-shrink: 0;
  border-right: 1px solid var(--border);
  margin-right: 32px;
}
.marquee-track { overflow: hidden; flex: 1; }
.marquee-inner {
  display: flex; gap: 28px; align-items: center;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-inner span { font-size: 14px; font-weight: 500; color: var(--text2); white-space: nowrap; }
.marquee-inner .sep { color: var(--border2); font-size: 10px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   SECTION HEADER (shared)
═══════════════════════════════════════ */
.section-header { margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services {
  max-width: var(--max-w); margin: 0 auto; padding: 96px 24px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color .15s, transform .2s;
}
.service-card:hover { border-color: var(--border2); transform: translateY(-2px); }

.service-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.service-num   { font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 1px; }
.service-count { font-size: 11px; color: var(--muted); }

.service-img {
  width: 100%; height: 140px; border-radius: 10px; margin-bottom: 22px; overflow: hidden;
}
.service-img--video   { background: linear-gradient(135deg, #10082a 0%, #2b1565 55%, #4a1da8 100%); }
.service-img--photo   { background: linear-gradient(135deg, #081628 0%, #142e50 55%, #1a5080 100%); }
.service-img--consult { background: linear-gradient(135deg, #0a1a0c 0%, #163520 55%, #1a5028 100%); }
.service-img--digital { background: linear-gradient(135deg, #1a0e08 0%, #3a1c10 55%, #6a2e18 100%); }

.service-card h3 { font-size: 17px; margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--text2); line-height: 1.65; margin-bottom: 18px; }
.service-tags    { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tags span {
  font-size: 11px; color: var(--muted);
  background: var(--bg); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 20px;
}

/* ═══════════════════════════════════════
   WORK
═══════════════════════════════════════ */
.work {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px 96px;
}
.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.work-card {
  display: block; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color .15s, transform .2s;
}
.work-card:hover { border-color: var(--accent); transform: translateY(-4px); }

.work-thumb {
  width: 100%; aspect-ratio: 4/3;
  transition: transform .4s ease;
}
.work-card:hover .work-thumb { transform: scale(1.04); }

.work-thumb--nomad        { background: linear-gradient(155deg, #1c1008 0%, #3d2808 55%, #6b4010 100%); }
.work-thumb--moft         { background: linear-gradient(155deg, #08101e 0%, #142038 55%, #1a3058 100%); }
.work-thumb--lamborghini  { background: linear-gradient(155deg, #181400 0%, #3d3000 55%, #706000 100%); }
.work-thumb--evenrealities{ background: linear-gradient(155deg, #041410 0%, #0a2820 55%, #104038 100%); }
.work-thumb--plaud        { background: linear-gradient(155deg, #090818 0%, #141030 55%, #1e184a 100%); }
.work-thumb--esr          { background: linear-gradient(155deg, #0e0e0e 0%, #1c1c1c 55%, #2a2a2a 100%); }

.work-meta  { padding: 14px 16px 18px; }
.work-cat   { font-size: 11px; color: var(--muted); letter-spacing: .4px; display: block; margin-bottom: 5px; }
.work-meta h3 { font-size: 15px; font-weight: 600; }

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px 96px;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: start;
}
.pricing-card {
  position: relative;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 22px;
}
.pricing-card--featured { background: var(--accent-bg); border-color: var(--accent); }
.pricing-card--custom   { background: var(--bg2); }

.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.plan-name {
  font-size: 11px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1.2px;
}
.plan-price {
  font-size: 34px; font-weight: 700; letter-spacing: -1.5px;
  line-height: 1; margin-top: 6px;
}
.plan-per { font-size: 14px; font-weight: 400; color: var(--muted); letter-spacing: 0; }
.plan-desc { font-size: 13px; color: var(--text2); line-height: 1.65; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan-features li {
  font-size: 13px; color: var(--text2);
  display: flex; align-items: flex-start; gap: 10px;
}
.chk     { color: var(--accent); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.chk.off { color: var(--muted); }

.plan-btn { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px 96px;
}
.testi-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.testi-stars { color: var(--accent); font-size: 13px; letter-spacing: 3px; }
.testi-card p { font-size: 14px; color: var(--text2); line-height: 1.72; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 4px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-bg); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--accent); flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px 96px;
}
.faq-layout {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start;
}
.faq-left .label { display: block; }
.faq-left h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.faq-sub { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 28px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 0;
  background: none; border: none; color: var(--text);
  font-family: inherit; font-size: 15px; font-weight: 500;
  cursor: pointer; text-align: left;
  transition: color .15s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  font-size: 22px; font-weight: 300; color: var(--muted);
  flex-shrink: 0; line-height: 1;
  transition: transform .25s, color .15s;
}
.faq-item.open .faq-icon  { transform: rotate(45deg); color: var(--accent); }
.faq-item.open .faq-q     { color: var(--accent); }

.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { font-size: 14px; color: var(--text2); line-height: 1.75; padding-bottom: 22px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.footer-cta {
  max-width: var(--max-w); margin: 0 auto; padding: 96px 24px 72px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 20px;
}
.footer-cta h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.footer-cta-sub { font-size: 15px; color: var(--text2); line-height: 1.65; max-width: 400px; }

.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-size: 15px; font-weight: 700; }
.footer-nav  { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { font-size: 13px; color: var(--muted); transition: color .15s; }
.footer-nav a:hover { color: var(--text); }
.footer-social { display: flex; gap: 18px; }
.footer-social a { font-size: 13px; color: var(--muted); transition: color .15s; }
.footer-social a:hover { color: var(--text); }

.footer-cta-social {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px;
  margin-top: 8px;
}
.footer-cta-social a {
  font-size: 13px; color: var(--muted);
  transition: color .15s;
}
.footer-cta-social a:hover { color: var(--text); }

.footer-social { display: flex; flex-wrap: wrap; gap: 10px 18px; }

.footer-copy {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 24px 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy span { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 800px) {
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto; padding: 48px 24px 64px;
    gap: 40px;
  }
  .hero-visual { order: -1; }
  .hero-img    { max-height: 320px; aspect-ratio: 4/3; }
  .hero-float--a, .hero-float--b { display: none; }
  .services-grid  { grid-template-columns: 1fr; }
  .work-grid      { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid   { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .faq-layout     { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .work-grid { grid-template-columns: 1fr; }
  .hero h1   { font-size: 2.2rem; }
  .stat-sep  { margin: 0 16px; }
  .nav       { padding: 0 20px; }
}
