/* ══════════════════════════════════════════════
   DESIGN TOKEN SYSTEM
══════════════════════════════════════════════ */
:root {
    --c-bg: #080808;
    --c-surface: #0f0f0f;
    --c-surface2: #161616;
    --c-surface3: #1e1e1e;
    --c-border: #1f1f1f;
    --c-border2: #2a2a2a;
    --c-accent: #f5e642;
    --c-accent2: #e0ff4f;
    --c-text: #f0f0f0;
    --c-muted: #888888;
    --c-muted2: #555;
    --c-white: #ffffff;
    --r: 10px;
    --r-lg: 18px;
    --r-xl: 28px;
    --ff-display: 'Space Grotesk', sans-serif;
    --ff-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--ff-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }

.display-hero { font-size: clamp(3rem, 8vw, 8.5rem); font-weight: 700; line-height: 1.0; letter-spacing: -0.045em; }
.display-section { font-size: clamp(2rem, 5vw, 4.2rem); font-weight: 700; letter-spacing: -0.03em; }
.eyebrow { font-family: var(--ff-display); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-accent); }
.text-muted-custom { color: var(--c-muted); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-accent); }

/* ── NAVBAR ── */
.navbar-mudaber { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background 0.4s, border-bottom 0.4s, backdrop-filter 0.4s; }
.navbar-mudaber.scrolled { background: rgba(8,8,8,0.96); border-bottom: 1px solid var(--c-border); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 2rem; max-width: 1440px; margin: 0 auto; }

.nav-logo-wrap { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.nav-logo-text { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700; color: var(--c-white); letter-spacing: -0.04em; }
.nav-logo-text span { color: var(--c-accent); }

.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a { font-family: var(--ff-display); font-size: 0.85rem; font-weight: 500; color: var(--c-muted); text-decoration: none; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px; background: var(--c-accent); transition: width 0.25s; }
.nav-links a:hover { color: var(--c-white); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.btn-nav-ghost { font-family: var(--ff-display); font-size: 0.82rem; font-weight: 600; color: var(--c-muted); background: transparent; border: none; cursor: pointer; text-decoration: none; transition: color 0.2s; }
.btn-nav-ghost:hover { color: var(--c-white); }

.btn-primary-mudaber { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--c-accent); color: #080808; font-family: var(--ff-display); font-size: 0.85rem; font-weight: 700; padding: 0.6rem 1.4rem; border-radius: 100px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.18s, box-shadow 0.2s; white-space: nowrap; }
.btn-primary-mudaber:hover { background: var(--c-accent2); color: #080808; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,230,66,0.35); }

.btn-outline-mudaber { display: inline-flex; align-items: center; gap: 0.4rem; background: transparent; color: var(--c-white); font-family: var(--ff-display); font-size: 0.85rem; font-weight: 600; padding: 0.6rem 1.4rem; border-radius: 100px; text-decoration: none; border: 1.5px solid var(--c-border2); cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.18s; }
.btn-outline-mudaber:hover { border-color: rgba(245,230,66,0.5); background: rgba(245,230,66,0.06); color: var(--c-white); transform: translateY(-2px); }

.nav-toggle { display: none; background: none; border: none; color: var(--c-white); font-size: 1.5rem; cursor: pointer; }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; inset: 0; background: rgba(8,8,8,0.99); z-index: 999; flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem; backdrop-filter: blur(30px); }
.mobile-menu.open { display: flex; }
.mobile-menu .mobile-nav-link { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--c-white); text-decoration: none; transition: color 0.2s; letter-spacing: -0.03em; }
.mobile-menu .mobile-nav-link:hover { color: var(--c-accent); }
.mobile-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: var(--c-white); font-size: 1.8rem; cursor: pointer; }

/* ── HERO ── */
#hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 9rem 2rem 5rem; position: relative; overflow: hidden; }

.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 90% 80% at 50% -5%, rgba(245,230,66,0.14) 0%, transparent 55%), radial-gradient(ellipse 60% 50% at 85% 65%, rgba(245,230,66,0.07) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 10% 85%, rgba(245,230,66,0.05) 0%, transparent 60%), var(--c-bg); z-index: 0; }

.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(245,230,66,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(245,230,66,0.025) 1px, transparent 1px); background-size: 70px 70px; z-index: 0; animation: grid-move 20s linear infinite; }

@keyframes grid-move { 0% { transform: translateY(0); } 100% { transform: translateY(70px); } }

.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; pointer-events: none; }
.hero-orb-1 { width: 400px; height: 400px; background: rgba(245,230,66,0.07); top: -100px; left: -100px; animation: orb-float 8s ease-in-out infinite alternate; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(245,230,66,0.05); bottom: 0; right: -50px; animation: orb-float 12s ease-in-out infinite alternate-reverse; }
@keyframes orb-float { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(30px,-40px) scale(1.1); } }

.hero-content { position: relative; z-index: 2; max-width: 1440px; margin: 0 auto; width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }

.hero-tag { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(245,230,66,0.08); border: 1px solid rgba(245,230,66,0.22); border-radius: 100px; padding: 0.35rem 1rem; margin-bottom: 2.5rem; font-family: var(--ff-display); font-size: 0.72rem; font-weight: 600; color: var(--c-accent); letter-spacing: 0.1em; text-transform: uppercase; animation: fade-down 0.8s ease both; }
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.6); } }
@keyframes fade-down { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }

.hero-title { color: var(--c-white); animation: fade-up-hero 0.9s 0.1s ease both; }
.line2 { display: block; background: linear-gradient(135deg, var(--c-accent), var(--c-accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

@keyframes fade-up-hero { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

.hero-sub { font-size: 1.1rem; color: var(--c-muted); max-width: 560px; margin-top: 2rem; margin-bottom: 2.8rem; line-height: 1.75; text-align: center; animation: fade-up-hero 0.9s 0.25s ease both; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; justify-content: center; animation: fade-up-hero 0.9s 0.4s ease both; }
.hero-cta .btn-primary-mudaber { font-size: 0.95rem; padding: 0.75rem 2rem; }
.hero-cta .btn-outline-mudaber { font-size: 0.95rem; padding: 0.75rem 2rem; }

.hero-stats { display: flex; gap: 0; margin-top: 5rem; padding: 2rem 3rem; border: 1px solid var(--c-border); border-radius: var(--r-lg); background: rgba(255,255,255,0.02); backdrop-filter: blur(10px); animation: fade-up-hero 0.9s 0.55s ease both; flex-wrap: wrap; justify-content: center; }
.hero-stat-item { padding: 0 2.5rem; text-align: center; position: relative; }
.hero-stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 40px; background: var(--c-border); }
.stat-val { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 700; color: var(--c-white); line-height: 1; }
.stat-label { font-size: 0.72rem; color: var(--c-muted); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── TICKER ── */
.ticker-wrap { overflow: hidden; padding: 1.2rem 0; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); background: var(--c-surface); position: relative; }
.ticker-wrap::before,.ticker-wrap::after { content:''; position:absolute; top:0; bottom:0; width:150px; z-index:2; pointer-events:none; }
.ticker-wrap::before { left:0; background:linear-gradient(to right,var(--c-surface),transparent); }
.ticker-wrap::after { right:0; background:linear-gradient(to left,var(--c-surface),transparent); }
.ticker-inner { display: flex; gap: 2.5rem; width: max-content; animation: ticker 30s linear infinite; }
.ticker-item { font-family: var(--ff-display); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-muted2); white-space: nowrap; display: flex; align-items: center; gap: 1rem; }
.ticker-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--c-accent); flex-shrink: 0; }
@keyframes ticker { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

/* ── SECTIONS ── */
section { position: relative; }
.section-pad { padding: 7rem 2rem; }
.section-pad-lg { padding: 9rem 2rem; }
.container-mudaber { max-width: 1440px; margin: 0 auto; }
.bg-surface { background: var(--c-surface); }
.bg-default { background: var(--c-bg); }
.divider { border: none; border-top: 1px solid var(--c-border); margin: 0; }
.accent-line { display: block; width: 40px; height: 3px; background: linear-gradient(90deg, var(--c-accent), var(--c-accent2)); border-radius: 2px; margin-bottom: 1.2rem; }
.accent-line.mx-auto { margin-left: auto; margin-right: auto; }

/* ── PLATFORM CARDS ── */
.platform-card { background: var(--c-surface2); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 2.8rem; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; height: 100%; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.platform-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--c-accent), var(--c-accent2)); transform: scaleX(0); transition: transform 0.35s; transform-origin: left; }
.platform-card:hover { border-color: rgba(245,230,66,0.3); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(245,230,66,0.08); }
.platform-card:hover::before { transform: scaleX(1); }
.platform-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(245,230,66,0.1); border: 1px solid rgba(245,230,66,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--c-accent); margin-bottom: 1.8rem; transition: background 0.25s; }
.platform-card:hover .platform-icon { background: rgba(245,230,66,0.18); }
.platform-card h4 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--c-white); }
.platform-card p { font-size: 0.88rem; color: var(--c-muted); flex: 1; margin-bottom: 1.8rem; line-height: 1.75; }
.platform-badge { display: inline-flex; align-items: center; gap: 0.3rem; background: rgba(245,230,66,0.06); border: 1px solid rgba(245,230,66,0.15); border-radius: 6px; padding: 0.2rem 0.65rem; font-size: 0.68rem; font-family: var(--ff-display); font-weight: 600; color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.platform-link { font-family: var(--ff-display); font-size: 0.82rem; font-weight: 700; color: var(--c-accent); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.platform-link:hover { gap: 0.8rem; color: var(--c-accent); }

/* ── SERVICES ── */
.service-item { padding: 2rem 0; border-bottom: 1px solid var(--c-border); transition: padding-left 0.25s; }
.service-item:first-child { padding-top: 0; }
.service-item:hover { padding-left: 0.5rem; }
.service-item h4 { font-size: 1.05rem; color: var(--c-white); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.75rem; }
.svc-num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; color: var(--c-accent); font-family: var(--ff-display); background: rgba(245,230,66,0.1); border-radius: 4px; padding: 0.15rem 0.4rem; }
.service-item p { font-size: 0.88rem; color: var(--c-muted); line-height: 1.75; }

/* ── DISTRIBUTION HIGHLIGHT ── */
.feature-highlight { background: var(--c-accent); border-radius: var(--r-xl); padding: 4.5rem 3.5rem; color: #080808; position: relative; overflow: hidden; }
.feature-highlight::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.feature-highlight::after { content: ''; position: absolute; bottom: -60px; left: 20%; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.feature-highlight h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); color: #080808; letter-spacing: -0.035em; }
.feature-highlight p { color: rgba(8,8,8,0.68); }
.feat-eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; color: rgba(8,8,8,0.5); }

.btn-dark-mudaber { display: inline-flex; align-items: center; gap: 0.4rem; background: #080808; color: var(--c-accent); font-family: var(--ff-display); font-size: 0.88rem; font-weight: 700; padding: 0.75rem 1.8rem; border-radius: 100px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.18s; }
.btn-dark-mudaber:hover { background: #161616; color: var(--c-accent); transform: translateY(-2px); }

.feature-checklist { list-style: none; margin-top: 1.8rem; }
.feature-checklist li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; color: rgba(8,8,8,0.72); margin-bottom: 0.75rem; }
.feature-checklist li i { color: #080808; margin-top: 3px; flex-shrink: 0; font-size: 1rem; }

.stat-box { background: rgba(8,8,8,0.1); border-radius: 14px; padding: 1.8rem; position: relative; z-index: 1; }
.stat-box-num { font-size: 2.8rem; font-weight: 700; font-family: var(--ff-display); color: #080808; line-height: 1; }
.stat-box-label { font-size: 0.8rem; color: rgba(8,8,8,0.6); margin-top: 0.3rem; }
.platform-pills-wrap { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.dsp-pill { background: rgba(8,8,8,0.12); border-radius: 100px; padding: 0.28rem 0.75rem; font-size: 0.72rem; font-weight: 600; color: rgba(8,8,8,0.75); font-family: var(--ff-display); }

/* ── ARTISTS ── */
.artists-strip { overflow: hidden; position: relative; }
.artists-strip::before,.artists-strip::after { content:''; position:absolute; top:0; bottom:0; width:100px; z-index:2; pointer-events:none; }
.artists-strip::before { left:0; background:linear-gradient(to right,var(--c-surface),transparent); }
.artists-strip::after { right:0; background:linear-gradient(to left,var(--c-surface),transparent); }
.artists-inner { display: flex; gap: 1rem; width: max-content; animation: scroll-artists 40s linear infinite; }
.artists-inner:hover { animation-play-state: paused; }
@keyframes scroll-artists { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
.artist-card { width: 210px; flex-shrink: 0; border-radius: var(--r); overflow: hidden; position: relative; aspect-ratio: 1; background: var(--c-surface2); border: 1px solid var(--c-border); cursor: pointer; }
.artist-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.2rem 1rem 0.9rem; background: linear-gradient(transparent,rgba(0,0,0,0.9)); }
.artist-name { font-family: var(--ff-display); font-size: 0.88rem; font-weight: 700; color: var(--c-white); }
.artist-stat { font-size: 0.72rem; color: var(--c-accent); font-weight: 600; margin-top: 0.15rem; }

.tag-pill { display: inline-flex; align-items: center; background: rgba(245,230,66,0.07); border: 1px solid rgba(245,230,66,0.18); border-radius: 100px; padding: 0.35rem 0.9rem; font-family: var(--ff-display); font-size: 0.72rem; font-weight: 600; color: var(--c-accent); letter-spacing: 0.04em; cursor: default; transition: background 0.2s, border-color 0.2s; }
.tag-pill:hover { background: rgba(245,230,66,0.14); border-color: rgba(245,230,66,0.4); }

/* ── PRICING ── */
.pricing-card { background: var(--c-surface2); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 2.8rem; height: 100%; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.pricing-card:hover { border-color: rgba(245,230,66,0.25); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.pricing-card.featured { background: var(--c-accent); border-color: var(--c-accent); }
.pricing-card.featured:hover { transform: translateY(-8px); }
.pricing-card.featured * { color: #080808 !important; }
.most-popular-label { font-size:.68rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; margin-bottom:.3rem; color:rgba(8,8,8,0.5); }
.price-amount { font-family: var(--ff-display); font-size: 3.2rem; font-weight: 700; line-height: 1; color: var(--c-white); margin-bottom: 0.2rem; }
.price-period { font-size: 0.82rem; color: var(--c-muted); }
.pricing-features { list-style: none; margin-top: 1.8rem; margin-bottom: 2.2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.87rem; color: var(--c-muted); margin-bottom: 0.7rem; }
.pricing-features li i { color: var(--c-accent); flex-shrink: 0; margin-top: 2px; }
.pricing-card.featured .pricing-features li i { color: #080808; }

/* ── ABOUT ── */
.company-badge { background: var(--c-surface2); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 2rem 2.5rem; display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; }
.badge-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-muted); margin-bottom: 0.3rem; }
.badge-value { font-family: var(--ff-display); font-size: 0.9rem; font-weight: 600; color: var(--c-white); }
.info-stat-box { background: var(--c-surface2); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 1.8rem 1.4rem; }
.info-stat-label { font-size: .72rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: .1em; margin-top: .4rem; }
.number-big { font-family: var(--ff-display); font-size: clamp(3rem,5vw,5rem); font-weight: 700; color: var(--c-white); line-height: 1; letter-spacing: -0.04em; }
.value-card { background: var(--c-surface2); border: 1px solid var(--c-border); border-radius: var(--r); padding: 1.4rem; transition: border-color 0.25s, background 0.25s; }
.value-card:hover { border-color: rgba(245,230,66,0.25); background: var(--c-surface3); }
.value-card i { color: var(--c-accent); font-size: 1.3rem; }
.value-card h6 { font-family: var(--ff-display); font-size: 0.9rem; font-weight: 600; color: var(--c-white); margin-top: 0.6rem; margin-bottom: 0.2rem; }
.value-card p { font-size: 0.78rem; color: var(--c-muted); line-height: 1.6; margin: 0; }

/* ── TESTIMONIALS ── */
.testimonial-card { background: var(--c-surface2); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 2.2rem; height: 100%; transition: border-color 0.25s, transform 0.25s; }
.testimonial-card:hover { border-color: rgba(245,230,66,0.2); transform: translateY(-4px); }
.testimonial-card p { font-size: 0.92rem; color: var(--c-text); line-height: 1.78; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 0.85rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(245,230,66,0.12); border: 1.5px solid rgba(245,230,66,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 700; font-size: 0.82rem; color: var(--c-accent); flex-shrink: 0; }
.author-name { font-family: var(--ff-display); font-size: 0.88rem; font-weight: 600; color: var(--c-white); }
.author-role { font-size: 0.75rem; color: var(--c-muted); margin-top: 0.1rem; }
.stars { color: var(--c-accent); font-size: 0.85rem; margin-bottom: 1.2rem; letter-spacing: 0.05em; }

/* ── NEWSLETTER ── */
.newsletter-section { background: var(--c-surface); }
.newsletter-form { display: flex; gap: 0.75rem; max-width: 460px; }
.newsletter-form input { flex: 1; background: var(--c-surface2); border: 1px solid var(--c-border2); border-radius: 100px; padding: 0.75rem 1.3rem; color: var(--c-white); font-family: var(--ff-body); font-size: 0.88rem; outline: none; transition: border-color 0.2s; }
.newsletter-form input:focus { border-color: var(--c-accent); }
.newsletter-form input::placeholder { color: var(--c-muted); }

/* ── CONTACT ── */
.contact-input { width: 100%; background: var(--c-surface); border: 1px solid var(--c-border2); border-radius: var(--r); padding: 0.75rem 1.1rem; color: var(--c-white); font-family: var(--ff-body); font-size: 0.88rem; outline: none; transition: border-color 0.2s; }
.contact-input:focus { border-color: var(--c-accent); }
.contact-input::placeholder { color: var(--c-muted); }
select.contact-input { color: var(--c-muted); }
select.contact-input option { background: var(--c-surface2); color: var(--c-white); }
.contact-label { font-size: 0.72rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 0.5rem; }
.contact-form-wrap { background: var(--c-surface2); border: 1px solid var(--c-border); border-radius: var(--r-xl); padding: 3rem; }
.contact-form-title { font-family: var(--ff-display); font-size: 1.15rem; color: var(--c-white); margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(245,230,66,0.1); border: 1px solid rgba(245,230,66,0.15); display: flex; align-items: center; justify-content: center; color: var(--c-accent); font-size: 1rem; flex-shrink: 0; }
.contact-info-label { font-size: .72rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .2rem; }
.contact-info-val { font-size: .9rem; color: var(--c-white); }

/* ── FOOTER ── */
footer { background: var(--c-surface); border-top: 1px solid var(--c-border); padding: 5rem 2rem 2.5rem; }
.footer-inner { max-width: 1440px; margin: 0 auto; }
.footer-logo { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--c-white); letter-spacing: -0.035em; text-decoration: none; }
.footer-logo span { color: var(--c-accent); }
.footer-desc { font-size: 0.85rem; color: var(--c-muted); max-width: 300px; margin-top: 0.85rem; line-height: 1.75; }
.footer-col-title { font-family: var(--ff-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 1.3rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.88rem; color: var(--c-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--c-white); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--c-surface2); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; color: var(--c-muted); font-size: 0.9rem; text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s; }
.social-btn:hover { background: rgba(245,230,66,0.12); border-color: var(--c-accent); color: var(--c-accent); transform: translateY(-3px); }
.footer-bottom { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--c-border); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.5rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--c-muted); }

/* ── SCROLL REVEAL ── */
.fade-up { opacity: 0; transform: translateY(35px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-35px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(35px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .nav-links,.nav-right { display: none; }
    .nav-toggle { display: block; }
    .hero-stat-item { padding: 1rem 1.5rem; }
    .hero-stat-item:not(:last-child)::after { display: none; }
    .hero-stats { flex-wrap: wrap; justify-content: center; }
    .feature-highlight { padding: 3rem 2rem; }
}

@media (max-width: 767px) {
    .display-hero { font-size: clamp(2.5rem,10vw,5rem); }
    .hero-stats { padding: 1.5rem; }
    .hero-stat-item { width: 50%; }
}

@media (max-width: 575px) {
    .section-pad { padding: 4.5rem 1.25rem; }
    .section-pad-lg { padding: 5.5rem 1.25rem; }
    .newsletter-form { flex-direction: column; }
    .company-badge { flex-direction: column; gap: 1.2rem; }
    .hero-stat-item { width: 50%; padding: 1rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .feature-highlight { padding: 2.5rem 1.5rem; }
    .contact-form-wrap { padding: 2rem 1.5rem; }
}
