@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --yellow:        #F5C842;
  --black:         #0a0a0a;
  --surface:       #0d0d0d;
  --card:          #111111;
  --white:         #fafafa;
  --muted:         #666666;
  --border:        rgba(255,255,255,0.07);
  --yellow-border: rgba(245,200,66,0.2);
  --radius:        0px;
  --font-display:  'Playfair Display', serif;
  --font-body:     'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
nav#dma-nav {
  position: sticky; top: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 5rem;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--yellow-border);
  transition: border-color 0.3s, padding 0.3s;
}
nav#dma-nav.scrolled { padding: 0.9rem 5rem; }
.logo { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: -0.5px; }
.logo .accent { color: var(--yellow); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: #777; font-size: 0.8rem; text-decoration: none; letter-spacing: 0.8px; text-transform: uppercase; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-cta { background: var(--yellow); color: var(--black); border: none; padding: 0.65rem 1.5rem; font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; border-radius: var(--radius); }
.nav-cta:hover { background: #fff; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; display: block; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--black); z-index: 499; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--white); text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--yellow); }
.mobile-menu .mobile-cta { background: var(--yellow); color: var(--black); padding: 1rem 3rem; font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-top: 1rem; }

/* ── SECTIONS ── */
section { padding: 7rem 5rem; }
.section-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 1rem; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.6rem); font-weight: 700; line-height: 1.08; letter-spacing: -1.5px; }
.section-title em { font-style: italic; color: var(--yellow); }
.section-sub { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-top: 1rem; max-width: 560px; }

/* ── BUTTONS ── */
.btn-primary { background: var(--yellow); color: var(--black); padding: 0.9rem 2.6rem; font-weight: 600; font-family: var(--font-body); font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; border-radius: var(--radius); }
.btn-primary:hover { background: #fff; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--white); padding: 0.9rem 2.6rem; font-weight: 500; font-family: var(--font-body); font-size: 0.95rem; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; border-radius: var(--radius); }
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-dark { background: var(--black); color: var(--yellow); border: none; padding: 1rem 2.5rem; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; border-radius: var(--radius); white-space: nowrap; }
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--yellow); border: 1px solid var(--yellow); padding: 0.9rem 2.6rem; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block; border-radius: var(--radius); }
.btn-outline:hover { background: var(--yellow); color: var(--black); }

/* ── HERO ── */
.hero { min-height: 92vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 7rem 5rem 5rem; position: relative; overflow: hidden; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(245,200,66,0.035) 1px,transparent 1px),linear-gradient(90deg,rgba(245,200,66,0.035) 1px,transparent 1px); background-size: 64px 64px; pointer-events: none; -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,black,transparent); mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,black,transparent); }
.hero-glow { position: absolute; width: 700px; height: 700px; background: radial-gradient(circle,rgba(245,200,66,0.06) 0%,transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid rgba(245,200,66,0.4); padding: 0.45rem 1.3rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase; color: var(--yellow); margin-bottom: 2.5rem; position: relative; z-index: 1; animation: fadeDown 0.8s ease both; }
.hero h1 { font-family: var(--font-display); font-size: clamp(3.8rem,9vw,8rem); font-weight: 900; line-height: 0.92; letter-spacing: -3px; position: relative; z-index: 1; animation: fadeUp 0.9s 0.1s ease both; max-width: 950px; }
.hero h1 em { font-style: italic; color: var(--yellow); }
.hero-sub { font-size: 1.05rem; color: #888; line-height: 1.8; margin: 2.2rem auto 3rem; max-width: 530px; font-weight: 300; position: relative; z-index: 1; animation: fadeUp 0.9s 0.2s ease both; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; animation: fadeUp 0.9s 0.3s ease both; }

/* ── STATS BAR ── */
.stats-bar { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item { padding: 3rem 2rem; border-right: 1px solid var(--border); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 3.8rem; font-weight: 700; color: var(--yellow); line-height: 1; display: block; }
.stat-label { font-size: 0.75rem; color: #555; text-transform: uppercase; letter-spacing: 1.2px; margin-top: 0.6rem; display: block; }

/* ── TICKER ── */
.ticker { overflow: hidden; white-space: nowrap; padding: 0.95rem 0; border-bottom: 1px solid rgba(0,0,0,0.15); background: var(--yellow); }
.ticker-track { display: inline-flex; animation: ticker 22s linear infinite; }
.ticker-item { font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(0,0,0,0.7); padding: 0 3rem; }
.ticker-item .sep { color: rgba(0,0,0,0.35); margin-left: 3rem; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--surface); padding: 2.5rem 5rem; border-bottom: 1px solid var(--border); }
.trust-bar-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #333; text-align: center; margin-bottom: 1.5rem; display: block; }
.trust-bar-items { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.trust-item { padding: 0.6rem 1.8rem; font-size: 0.82rem; font-weight: 600; color: #333; letter-spacing: 0.5px; border-right: 1px solid var(--border); transition: color 0.2s; }
.trust-item:last-child { border-right: none; }
.trust-item:hover { color: var(--yellow); }

/* ── WHY SECTION ── */
.why-section { background: var(--surface); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.why-manifesto { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2.5rem; }
.why-manifesto p { font-size: 1rem; color: #666; line-height: 1.85; font-weight: 300; }
.belief-pillars { display: flex; flex-direction: column; margin-top: 0.5rem; }
.belief-item { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.belief-item:first-child { padding-top: 0; }
.belief-item:last-child { border-bottom: none; padding-bottom: 0; }
.belief-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 0.6rem; display: block; }
.belief-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.5rem; }
.belief-body { font-size: 0.84rem; color: #555; line-height: 1.7; }

/* ── PROCESS ── */
.process-section { background: var(--black); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 5rem; position: relative; }
.process-connector { position: absolute; top: 22px; left: 12.5%; width: 75%; height: 1px; background: linear-gradient(90deg,var(--yellow),rgba(245,200,66,0.15)); }
.process-step { padding: 0 2rem; text-align: center; }
.process-dot { width: 46px; height: 46px; border: 2px solid var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.8rem; font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--yellow); background: var(--black); position: relative; z-index: 1; }
.process-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.6rem; }
.process-desc { font-size: 0.82rem; color: #555; line-height: 1.7; }

/* ── RESULTS ── */
.results-section { background: var(--yellow); color: var(--black); }
.results-section .section-tag { color: rgba(0,0,0,0.45); }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 4rem; }
.big-metric { display: flex; flex-direction: column; }
.metric-row { display: flex; align-items: flex-end; gap: 1.2rem; padding: 2rem 0; border-bottom: 1px solid rgba(0,0,0,0.12); }
.metric-row:first-child { padding-top: 0; }
.metric-row:last-child { border-bottom: none; padding-bottom: 0; }
.metric-big { font-family: var(--font-display); font-size: 4.5rem; font-weight: 900; line-height: 1; flex-shrink: 0; }
.metric-info h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.metric-info p { font-size: 0.82rem; opacity: 0.55; line-height: 1.5; }
.testimonials { display: flex; flex-direction: column; gap: 1.25rem; }
.testimonial { background: rgba(0,0,0,0.08); padding: 2rem 2.2rem; border-radius: var(--radius); }
.testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.testimonial-meta h4 { font-size: 0.88rem; font-weight: 600; }
.testimonial-meta p { font-size: 0.75rem; opacity: 0.55; }
.testimonial-text { font-size: 0.9rem; line-height: 1.8; font-style: italic; opacity: 0.75; }
.stars { color: var(--black); font-size: 0.75rem; opacity: 0.5; margin-bottom: 0.5rem; letter-spacing: 2px; }

/* ── CASE STUDIES ── */
.case-studies-section { background: var(--surface); }
.case-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; margin-bottom: 4rem; }
.case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.case-card { background: var(--card); padding: 2.5rem; position: relative; overflow: hidden; transition: background 0.3s; }
.case-card:hover { background: #1a1a1a; }
.case-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent-color, var(--yellow)); }
.case-category { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 0.75rem; display: block; }
.case-client { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; line-height: 1.1; }
.case-location { font-size: 0.78rem; color: #444; margin-bottom: 1.5rem; }
.case-challenge { font-size: 0.83rem; color: #555; line-height: 1.65; margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border); }
.case-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; margin-bottom: 1.5rem; }
.case-metric { text-align: center; }
.case-metric-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--yellow); line-height: 1; display: block; }
.case-metric-label { font-size: 0.65rem; color: #444; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 0.2rem; display: block; }
.case-summary { font-size: 0.8rem; color: #555; line-height: 1.65; }

/* ── PRICING ── */
/* ── PRICING — CUSTOM QUOTE ── */
.pricing-section { background: var(--black); }
.custom-pricing-section { padding: 7rem 5rem; }
.custom-pricing-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.custom-pricing-left .section-tag { margin-bottom: 1.25rem; }
.custom-pricing-left .section-title { margin-bottom: 1.5rem; text-align: left; }
.custom-pricing-sub { font-size: 1rem; color: #555; line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px; }
.custom-pricing-card { background: var(--card); border: 1px solid rgba(255,255,255,0.06); padding: 2.5rem; }
.cpc-item { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.25rem 0; }
.cpc-icon { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: var(--yellow); line-height: 1; flex-shrink: 0; width: 2.5rem; }
.cpc-title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; letter-spacing: 0.2px; }
.cpc-body { font-size: 0.82rem; color: #555; line-height: 1.65; }
.cpc-divider { height: 1px; background: rgba(255,255,255,0.05); }
.cpc-bottom { padding-top: 1.5rem; }
.cpc-badge { display: inline-block; background: rgba(245,200,66,0.08); border: 1px solid rgba(245,200,66,0.2); color: var(--yellow); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.5rem 1.1rem; }
.pricing-note { display: none; }

/* ── INDUSTRIES ── */
.industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-top: 4rem; border: 1px solid var(--border); background: var(--border); }
.industry-item { background: var(--card); padding: 2.2rem 1.5rem; text-align: center; transition: background 0.3s; cursor: default; }
.industry-item:hover { background: #1c1c1c; }
.industry-item:hover .industry-name { color: var(--yellow); }
.industry-icon { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }
.industry-name { font-size: 0.84rem; font-weight: 500; transition: color 0.3s; color: #aaa; }

/* ── WHY US ── */
.why-us-section { background: var(--surface); }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-top: 4rem; }
.why-features { display: flex; flex-direction: column; }
.why-feature { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.why-feature:first-child { padding-top: 0; }
.why-feature:last-child { border-bottom: none; padding-bottom: 0; }
.why-check { width: 22px; height: 22px; flex-shrink: 0; border: 1px solid var(--yellow); display: flex; align-items: center; justify-content: center; color: var(--yellow); font-size: 0.7rem; margin-top: 2px; border-radius: var(--radius); }
.why-feature-text h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
.why-feature-text p { font-size: 0.82rem; color: #555; line-height: 1.65; }
.why-highlight { background: var(--card); border: 1px solid var(--yellow-border); padding: 3rem; border-radius: var(--radius); }
.why-highlight-num { font-family: var(--font-display); font-size: 5rem; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 1rem; }
.why-highlight p { font-size: 0.9rem; color: #666; line-height: 1.75; margin-bottom: 2rem; }

/* ── FAQ ── */
.faq-section { background: var(--black); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; cursor: pointer; font-size: 0.95rem; font-weight: 500; color: var(--white); transition: color 0.2s; line-height: 1.4; }
.faq-q:hover { color: var(--yellow); }
.faq-q .faq-icon { font-size: 1.1rem; color: var(--yellow); flex-shrink: 0; transition: transform 0.3s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a.open { max-height: 300px; }
.faq-a-inner { padding: 0 0 1.5rem; font-size: 0.88rem; color: #555; line-height: 1.8; }
.faq-right { display: flex; flex-direction: column; justify-content: center; }
.faq-right h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }
.faq-right h3 em { font-style: italic; color: var(--yellow); }
.faq-right p { font-size: 0.88rem; color: #555; line-height: 1.8; margin-bottom: 2rem; }

/* ── CONTACT ── */
.contact-section { background: var(--surface); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-info p { font-size: 0.95rem; color: #555; line-height: 1.9; margin: 1.5rem 0 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; font-size: 0.88rem; color: #777; }
.contact-detail-icon { width: 36px; height: 36px; flex-shrink: 0; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; border-radius: var(--radius); }
.contact-detail a { color: var(--yellow); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: #444; }
.form-input, .form-select, .form-textarea { background: #111; border: 1px solid rgba(255,255,255,0.1); color: var(--white); padding: 0.85rem 1.1rem; font-family: var(--font-body); font-size: 0.9rem; outline: none; transition: border-color 0.2s; width: 100%; appearance: none; border-radius: var(--radius); }
.form-input::placeholder, .form-textarea::placeholder { color: #333; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--yellow); }
.form-select { cursor: pointer; 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='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-select option { background: #111; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit { background: var(--yellow); color: var(--black); border: none; padding: 1rem 2.2rem; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; align-self: flex-start; margin-top: 0.5rem; border-radius: var(--radius); }
.form-submit:hover { background: #fff; transform: translateY(-2px); }
.form-note { font-size: 0.75rem; color: #333; margin-top: 0.5rem; }

/* ── SERVICES HERO ── */
.services-hero { min-height: 88vh; padding: 8rem 5rem 5rem; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.services-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(245,200,66,0.035) 1px,transparent 1px),linear-gradient(90deg,rgba(245,200,66,0.035) 1px,transparent 1px); background-size: 72px 72px; pointer-events: none; -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 0%,black 40%,transparent 100%); mask-image: radial-gradient(ellipse 100% 100% at 50% 0%,black 40%,transparent 100%); }
.orbit-container { position: absolute; top: 0; left: 0; right: 0; height: 100%; pointer-events: none; z-index: 1; }
.pill { position: absolute; background: var(--yellow); color: var(--black); font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 0.5rem 1.1rem; white-space: nowrap; opacity: 0; animation: floatPill var(--duration) var(--delay) ease-in-out infinite, fadeInPill 0.8s var(--delay) ease forwards; border-radius: var(--radius); }
@keyframes floatPill { 0%{transform:translateY(0) rotate(var(--rot))} 33%{transform:translateY(-14px) rotate(calc(var(--rot) + 1deg))} 66%{transform:translateY(6px) rotate(calc(var(--rot) - 1deg))} 100%{transform:translateY(0) rotate(var(--rot))} }
@keyframes fadeInPill { from{opacity:0;transform:translateY(20px) rotate(var(--rot))} to{opacity:1;transform:translateY(0) rotate(var(--rot))} }
.pill-1{--rot:-3deg;--duration:6.2s;--delay:0.2s;top:11%;left:6%}
.pill-2{--rot:2deg;--duration:7.1s;--delay:0.5s;top:8%;left:27%}
.pill-3{--rot:-1.5deg;--duration:5.8s;--delay:0.8s;top:14%;left:52%}
.pill-4{--rot:3deg;--duration:6.8s;--delay:0.3s;top:9%;right:8%}
.pill-5{--rot:-2deg;--duration:7.4s;--delay:1.0s;top:30%;left:3%}
.pill-6{--rot:1.5deg;--duration:6.0s;--delay:0.6s;top:28%;right:4%}
.pill-7{--rot:-2.5deg;--duration:6.6s;--delay:1.3s;top:46%;left:8%}
.pill-8{--rot:2deg;--duration:7.8s;--delay:0.4s;top:44%;right:6%}
.hero-eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 1.4rem; display: block; animation: fadeUp 0.8s ease both; }
.services-hero-content { position: relative; z-index: 2; max-width: 820px; }
.services-hero-content h1 { font-family: var(--font-display); font-size: clamp(3.5rem,7vw,6.5rem); font-weight: 900; line-height: 0.94; letter-spacing: -2.5px; animation: fadeUp 0.9s 0.1s ease both; }
.services-hero-content h1 em { font-style: italic; color: var(--yellow); }
.services-hero-sub { font-size: 1rem; color: #666; line-height: 1.8; margin: 2rem 0 0; max-width: 500px; font-weight: 300; animation: fadeUp 0.9s 0.2s ease both; }
.divider { width: 100%; height: 1px; background: linear-gradient(90deg,var(--yellow),rgba(245,200,66,0.1),transparent); }
.services-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 4rem; margin-bottom: 5rem; }
.services-intro-right { font-size: 0.9rem; color: #555; line-height: 1.8; max-width: 360px; flex-shrink: 0; }
.service-list { display: flex; flex-direction: column; gap: 1px; }
.service-item { background: var(--card); display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 2.5rem; padding: 2.5rem 3rem; cursor: pointer; position: relative; overflow: hidden; transition: background 0.3s; }
.service-item::after { content:''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--yellow); transform: scaleY(0); transform-origin: bottom; transition: transform 0.35s ease; }
.service-item:hover { background: #161616; }
.service-item:hover::after { transform: scaleY(1); }
.service-item:hover .service-arrow, .service-item:hover .service-name { color: var(--yellow); }
.service-index { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: rgba(245,200,66,0.12); line-height: 1; }
.service-name { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.4rem; transition: color 0.3s; }
.service-desc { font-size: 0.84rem; color: #555; line-height: 1.65; }
.service-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; }
.service-arrow { font-size: 1.1rem; color: #333; transition: all 0.3s; }
.service-tags-right { display: flex; flex-wrap: wrap; gap: 0.35rem; justify-content: flex-end; }
.stag { font-size: 0.65rem; letter-spacing: 0.5px; padding: 0.22rem 0.6rem; border: 1px solid rgba(255,255,255,0.08); color: #444; border-radius: var(--radius); }
.service-detail { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; background: #0f0f0f; border-left: 2px solid var(--yellow); }
.service-detail.open { max-height: 400px; }
.service-detail-inner { padding: 2.5rem 3rem 2.5rem calc(80px + 3rem + 2.5rem); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; }
.detail-col h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow); margin-bottom: 0.8rem; }
.detail-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.detail-col ul li { font-size: 0.83rem; color: #666; line-height: 1.5; padding-left: 1rem; position: relative; }
.detail-col ul li::before { content:'◆'; position: absolute; left: 0; color: rgba(245,200,66,0.4); font-size: 0.45rem; top: 5px; }
.cta-strip { background: var(--yellow); padding: 5rem; display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.cta-strip h2 { font-family: var(--font-display); font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; color: var(--black); letter-spacing: -1px; line-height: 1.1; }
.cta-strip h2 em { font-style: italic; }
.cta-strip p { font-size: 0.95rem; color: rgba(0,0,0,0.5); margin-top: 0.75rem; max-width: 440px; line-height: 1.7; }

/* ── FOOTER ── */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); }
.footer-top { padding: 4rem 5rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; }
.footer-brand .footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; text-decoration: none; color: var(--white); display: block; margin-bottom: 0.75rem; }
.footer-brand .footer-logo .accent { color: var(--yellow); }
.footer-brand p { font-size: 0.84rem; color: #444; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 1.25rem; }
.footer-col a { display: block; font-size: 0.84rem; color: #444; text-decoration: none; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding: 1.5rem 5rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.76rem; color: #333; }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9990; background: #111; border-top: 1px solid var(--yellow-border); padding: 1.25rem 5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; transform: translateY(100%); transition: transform 0.4s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 0.83rem; color: #777; }
.cookie-text a { color: var(--yellow); text-decoration: none; }
.cookie-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-accept { background: var(--yellow); color: var(--black); border: none; padding: 0.55rem 1.4rem; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; cursor: pointer; border-radius: var(--radius); }
.cookie-decline { background: transparent; color: #555; border: 1px solid #333; padding: 0.55rem 1.4rem; font-family: var(--font-body); font-size: 0.8rem; cursor: pointer; border-radius: var(--radius); }

/* ── SCROLL TO TOP ── */
.scroll-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 9989; width: 44px; height: 44px; background: var(--yellow); color: var(--black); border: none; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(10px); transition: all 0.3s; pointer-events: none; border-radius: var(--radius); }
.scroll-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: #fff; transform: translateY(-3px); }

/* ── EDITOR HIGHLIGHT ── */
[data-editable]:hover:not([contenteditable="true"]) { outline: 1px dashed rgba(245,200,66,0.4); outline-offset: 3px; cursor: text; }
[data-editable][contenteditable="true"] { outline: 2px solid var(--yellow); outline-offset: 3px; }

/* ── ANIMATIONS ── */
@keyframes fadeDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(35px)}  to{opacity:1;transform:translateY(0)} }
@keyframes ticker   { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.animate-in { opacity:0; transform:translateY(28px); transition:opacity .7s ease,transform .7s ease; }
.animate-in.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav#dma-nav { padding: 1.2rem 2rem; }
  nav#dma-nav.scrolled { padding: 1rem 2rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 5rem 2rem; }
  .hero { padding: 5rem 2rem 4rem; }
  .hero h1 { font-size: clamp(3rem,10vw,5rem); letter-spacing: -2px; }
  .stats-bar { grid-template-columns: repeat(3,1fr); }
  .stat-item { padding: 2rem 1rem; }
  .stat-num { font-size: 2.5rem; }
  .trust-bar { padding: 2rem; }
  .why-grid, .why-us-grid, .contact-wrapper, .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .process-connector { display: none; }
  .results-grid { grid-template-columns: 1fr; gap: 3rem; }
  .case-grid { grid-template-columns: 1fr; }
  .custom-pricing-inner { grid-template-columns: 1fr; gap: 3rem; }
  .custom-pricing-section { padding: 5rem 2rem; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 2rem; }
  .footer-bottom { padding: 1.5rem 2rem; flex-direction: column; text-align: center; }
  .pill { display: none; }
  .services-intro { flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
  .service-item { grid-template-columns: 60px 1fr; padding: 2rem; gap: 1.5rem; }
  .service-right { display: none; }
  .service-detail-inner { grid-template-columns: 1fr; padding: 2rem; }
  .cta-strip { padding: 3rem 2rem; flex-direction: column; gap: 2rem; }
  .cookie-banner { padding: 1.25rem 2rem; }
  .scroll-top { bottom: 1.5rem; right: 1.5rem; }
}
@media (max-width: 600px) {
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .services-hero { padding: 5rem 2rem 3rem; }
}
