/* ============================================================
   ALLORA MEDIA GROUP — style.css
   ============================================================ */

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

:root {
  --bg:        #080c14;
  --bg-card:   #0d1422;
  --bg-card2:  #111827;
  --border:    rgba(255,255,255,.07);
  --accent:    #4f8ef7;
  --accent-2:  #7c3aed;
  --accent-g:  linear-gradient(135deg, #4f8ef7, #7c3aed);
  --text:      #e8edf5;
  --text-muted:#8a95a8;
  --white:     #ffffff;
  --radius:    14px;
  --shadow:    0 4px 40px rgba(0,0,0,.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79,142,247,.12);
  border: 1px solid rgba(79,142,247,.25);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

.gradient-text {
  background: var(--accent-g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
}
.btn-primary {
  background: var(--accent-g);
  color: #fff;
  box-shadow: 0 4px 24px rgba(79,142,247,.35);
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 6px 30px rgba(79,142,247,.45); }
.btn-ghost {
  background: rgba(255,255,255,.05);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-nav {
  background: var(--accent-g);
  color: #fff;
  padding: 10px 22px;
  font-size: .88rem;
  border-radius: 7px;
}
.btn-nav:hover { opacity: .88; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; margin-top: 4px; }

/* ============================================================
   NAV
   ============================================================ */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.nav-wrap.scrolled {
  background: rgba(8,12,20,.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--accent-g);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.logo-text span { color: var(--text-muted); font-weight: 400; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,142,247,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,142,247,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: rgba(79,142,247,.15);
  top: -200px; left: -100px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: rgba(124,58,237,.12);
  top: -100px; right: -150px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .4; }
}
.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 40px;
  max-width: 680px;
  margin: 0 auto;
}
.stat { text-align: center; padding: 0 32px; }
.stat-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--accent-g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: .78rem; color: var(--text-muted); margin-top: 4px; display: block; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* ============================================================
   LOGOS
   ============================================================ */
.logos-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logos-label {
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.logos-track { overflow: hidden; }
.logos-slide {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll-logos 28s linear infinite;
}
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.logo-pill:hover { border-color: var(--accent); color: var(--text); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color .25s, transform .25s;
}
.service-card:hover { border-color: rgba(79,142,247,.35); transform: translateY(-4px); }
.service-card--featured {
  background: linear-gradient(135deg, rgba(79,142,247,.12), rgba(124,58,237,.1));
  border-color: rgba(79,142,247,.3);
}
.service-card--featured:hover { border-color: rgba(79,142,247,.6); }
.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79,142,247,.15);
  border: 1px solid rgba(79,142,247,.3);
  border-radius: 100px;
  padding: 3px 10px;
}
.service-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(79,142,247,.1);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--accent);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.service-card p  { color: var(--text-muted); font-size: .93rem; line-height: 1.7; margin-bottom: 20px; }
.card-link {
  color: var(--accent);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  transition: gap .2s;
}
.card-link:hover { opacity: .8; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--bg-card2); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 0 20px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-g);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 0 0 8px rgba(79,142,247,.1);
}
.step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-content p   { color: var(--text-muted); font-size: .9rem; }
.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  margin-top: 28px;
  opacity: .4;
}

/* ============================================================
   RESULTS
   ============================================================ */
.results { background: var(--bg); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: border-color .25s, transform .25s;
}
.result-card:hover { border-color: rgba(79,142,247,.35); transform: translateY(-4px); }
.result-num {
  font-size: 2.6rem;
  font-weight: 900;
  background: var(--accent-g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}
.result-label { color: var(--text-muted); font-size: .9rem; line-height: 1.5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-card2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .25s, transform .25s;
}
.testimonial-card:hover { border-color: rgba(79,142,247,.3); transform: translateY(-4px); }
.testimonial-card--highlight {
  background: linear-gradient(145deg, rgba(79,142,247,.1), rgba(124,58,237,.08));
  border-color: rgba(79,142,247,.3);
}
.stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-muted); font-size: .93rem; line-height: 1.75; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent-g);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .92rem; color: var(--white); }
.testimonial-author span  { font-size: .8rem; color: var(--text-muted); }

/* ============================================================
   VERTICALS
   ============================================================ */
.verticals { background: var(--bg); }
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vertical-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color .25s, transform .25s;
}
.vertical-card:hover { border-color: rgba(79,142,247,.35); transform: translateY(-4px); }
.vertical-icon { font-size: 2rem; margin-bottom: 14px; }
.vertical-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.vertical-card p  { color: var(--text-muted); font-size: .88rem; line-height: 1.65; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628, #0d0f1f);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-glow {
  position: absolute;
  width: 800px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,142,247,.18) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-inner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.contact-copy .section-tag { margin-bottom: 16px; }
.contact-copy h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.contact-copy > p { color: var(--text-muted); margin-bottom: 32px; font-size: .97rem; }
.contact-bullets { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .93rem;
  color: var(--text-muted);
}
.contact-bullets li svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: .92rem;
  transition: border-color .2s;
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(138,149,168,.5); }
.form-group select option { background: var(--bg-card2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-disclaimer {
  font-size: .75rem;
  color: rgba(138,149,168,.6);
  text-align: center;
  line-height: 1.5;
}
.form-disclaimer a { color: var(--accent); text-decoration: none; }

/* form success state */
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success .success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(34,197,94,.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}
.form-success h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.form-success p  { color: var(--text-muted); font-size: .93rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-card2); padding-top: 80px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand > p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: background .2s, color .2s;
  text-decoration: none;
}
.social-links a svg { width: 16px; height: 16px; }
.social-links a:hover { background: rgba(79,142,247,.15); color: var(--accent); border-color: rgba(79,142,247,.3); }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h5 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom { padding: 24px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .82rem; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--text); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .results-grid       { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .verticals-grid     { grid-template-columns: repeat(2, 1fr); }
  .contact-inner      { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner       { grid-template-columns: 1fr; gap: 40px; }
  .steps              { gap: 24px; }
  .step-connector     { display: none; }
  .step               { min-width: 160px; }
}

@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(8,12,20,.97); backdrop-filter: blur(20px); padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .services-grid     { grid-template-columns: 1fr; }
  .results-grid      { grid-template-columns: 1fr 1fr; }
  .verticals-grid    { grid-template-columns: 1fr 1fr; }
  .footer-links      { grid-template-columns: repeat(2, 1fr); }
  .hero-stats        { padding: 20px 12px; gap: 4px; }
  .stat              { padding: 12px 16px; }
  .stat-divider      { display: none; }
  .form-row          { grid-template-columns: 1fr; }
  .contact-form      { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .results-grid    { grid-template-columns: 1fr; }
  .verticals-grid  { grid-template-columns: 1fr; }
  .footer-links    { grid-template-columns: 1fr; }
}
