/* ==========================================================================
   Qollins — Funky, colorful, AI-native web studio
   ========================================================================== */

:root{
  --pink: #ff2e8a;
  --purple: #7c3aff;
  --cyan: #00e0ff;
  --yellow: #ffd93d;
  --orange: #ff7a3d;
  --lime: #b6ff3d;
  --ink: #12081f;
  --ink-soft: #2b1a45;
  --paper: #fdf7ff;
  --paper-soft: #f4ecff;
  --white: #ffffff;

  --grad-main: linear-gradient(120deg, var(--pink) 0%, var(--purple) 50%, var(--cyan) 100%);
  --grad-warm: linear-gradient(120deg, var(--orange) 0%, var(--pink) 60%, var(--purple) 100%);

  --font-display: 'Space Grotesk', 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-hard: 8px 8px 0 var(--ink);
  --shadow-soft: 0 20px 50px rgba(124, 58, 255, 0.18);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; line-height:1.1; }
p{ margin:0; }

.container{
  width:100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ---------------- Decorative blobs ---------------- */
.blob-decor{
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.blob-1{ width: 480px; height: 480px; background: var(--pink); top: -160px; left: -140px; }
.blob-2{ width: 420px; height: 420px; background: var(--cyan); top: 30%; right: -160px; }
.blob-3{ width: 380px; height: 380px; background: var(--yellow); bottom: -140px; left: 20%; }

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--yellow);
  color: var(--ink);
  box-shadow: var(--shadow-hard);
}
.btn-primary:hover{ transform: translate(-3px,-3px); box-shadow: 11px 11px 0 var(--ink); }
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover{ background: var(--ink); color: var(--white); }
.btn-lg{ padding: 16px 30px; font-size: 1.05rem; }
.btn-sm{ padding: 8px 16px; font-size: 0.82rem; border-width:2px; }
.btn-nav{ padding: 10px 18px; box-shadow: 4px 4px 0 var(--ink); }
.btn-nav:hover{ transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }

/* ---------------- Header ---------------- */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(253, 247, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--ink);
}
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 24px;
}
.brand{ display:flex; align-items:center; font-family: var(--font-display); font-size:1.6rem; font-weight:800; }
.brand-mark{
  background: var(--grad-main);
  color: var(--white);
  width: 40px; height:40px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius: 12px;
  border: 3px solid var(--ink);
  margin-right: 6px;
  transform: rotate(-6deg);
}
.brand-text{ color: var(--ink); }
.nav-links{
  display:flex;
  align-items:center;
  gap: 28px;
  list-style:none;
}
.nav-links a{
  font-weight: 600;
  font-family: var(--font-display);
  position: relative;
}
.nav-links li > a:not(.btn-nav):after{
  content:'';
  position:absolute;
  left:0; bottom:-6px;
  width:0%; height:3px;
  background: var(--pink);
  transition: width .2s ease;
}
.nav-links li > a:not(.btn-nav):hover:after{ width:100%; }
.nav-toggle{
  display:none;
  background: none;
  border: 3px solid var(--ink);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1.1rem;
  cursor:pointer;
}

/* ---------------- Hero ---------------- */
.hero{
  position: relative;
  padding: 100px 0 60px;
  text-align:center;
  overflow: hidden;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.hero-title{
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.text-gradient{
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.underline-squiggle{
  position: relative;
  display: inline-block;
}
.underline-squiggle::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:-6px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='10' viewBox='0 0 100 10'%3E%3Cpath d='M0 5 Q 5 0, 10 5 T 20 5 T 30 5 T 40 5 T 50 5 T 60 5 T 70 5 T 80 5 T 90 5 T 100 5' fill='none' stroke='%23ff2e8a' stroke-width='3'/%3E%3C/svg%3E") repeat-x;
  background-size: 40px 10px;
}
.hero-sub{
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: 1.15rem;
  color: var(--ink-soft);
  font-weight: 400;
}
.hero-cta{
  display:flex;
  gap: 18px;
  justify-content:center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-tags{
  display:flex;
  gap: 14px;
  justify-content:center;
  flex-wrap: wrap;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  font-size:0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid var(--ink);
}
.tag-pink{ background: var(--pink); color:var(--white); }
.tag-cyan{ background: var(--cyan); color:var(--ink); }
.tag-orange{ background: var(--orange); color:var(--white); }

.hero-scroll-cue{
  display:flex;
  justify-content:center;
  margin-top: 40px;
}
.hero-scroll-cue span{
  width: 26px; height: 42px;
  border: 3px solid var(--ink);
  border-radius: 20px;
  display:block;
  position: relative;
}
.hero-scroll-cue span::before{
  content:'';
  position:absolute;
  top:8px; left:50%;
  width:6px; height:6px;
  background: var(--pink);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot{
  0%{ top:8px; opacity:1;}
  70%{ top:24px; opacity:0.3;}
  100%{ top:8px; opacity:1;}
}

/* ---------------- Marquee ---------------- */
.marquee{
  background: var(--ink);
  color: var(--white);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow:hidden;
  white-space: nowrap;
  padding: 14px 0;
}
.marquee-track{
  display:inline-flex;
  gap: 28px;
  animation: marquee 22s linear infinite;
  font-family: var(--font-display);
  font-weight:700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}
.marquee-track span:nth-child(odd){ color: var(--yellow); }
.marquee-track span:nth-child(even){ color: var(--cyan); }
@keyframes marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* ---------------- Sections ---------------- */
.section{ padding: 90px 0; position:relative; }
.section-alt{ background: var(--paper-soft); }
.section-eyebrow{
  display:inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.section-eyebrow-light{ color: var(--yellow); }
.section-title{
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  max-width: 760px;
}
.text-light{ color: var(--white); }

/* ---------------- Services cards ---------------- */
.cards-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}
.service-card{
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-hard);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{ transform: translate(-4px,-4px); box-shadow: 12px 12px 0 var(--ink); }
.card-icon{
  width: 56px; height:56px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  border: 3px solid var(--ink);
  color: var(--ink);
}
.card-1 .card-icon{ background: var(--pink); color:var(--white); }
.card-2 .card-icon{ background: var(--cyan); }
.card-3 .card-icon{ background: var(--yellow); }
.card-4 .card-icon{ background: var(--lime); }
.card-5 .card-icon{ background: var(--orange); color:var(--white); }
.card-6 .card-icon{ background: var(--purple); color:var(--white); }
.service-card h3{ font-size: 1.25rem; margin-bottom: 10px; }
.service-card p{ color: var(--ink-soft); line-height:1.55; }

/* ---------------- Process ---------------- */
.process-list{ list-style:none; margin-top: 48px; display:flex; flex-direction:column; gap:0; }
.process-step{
  display:flex;
  gap: 26px;
  align-items:flex-start;
  padding: 26px 0;
  border-bottom: 2px dashed rgba(18,8,31,0.2);
}
.process-step:last-child{ border-bottom:none; }
.step-num{
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  min-width: 90px;
}
.step-body h3{ font-size: 1.3rem; margin-bottom: 8px; }
.step-body p{ color: var(--ink-soft); max-width: 620px; line-height: 1.6; }

/* ---------------- Why AI ---------------- */
.why-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items:center;
}
.why-text{ color: var(--ink-soft); font-size: 1.05rem; line-height:1.7; margin-bottom: 26px; }
.why-list{ list-style:none; display:flex; flex-direction:column; gap:14px; }
.why-list li{ display:flex; align-items:flex-start; gap:10px; font-weight:600; }
.why-list i{ color: var(--lime); background: var(--ink); border-radius:50%; padding:4px; font-size:0.85rem; margin-top:2px; }
.why-visual{ display:flex; flex-direction:column; gap: 20px; }
.glow-card{
  display:flex; align-items:center; gap:16px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight:700;
  font-size: 1.05rem;
  box-shadow: var(--shadow-soft);
}
.glow-card i{ font-size: 1.6rem; color: var(--pink); }
.glow-card-2{ margin-left: 30px; }
.glow-card-2 i{ color: var(--cyan); }
.glow-card-3 i{ color: var(--orange); }

/* ---------------- Audience / market ---------------- */
.market-intro{ max-width: 760px; color: var(--ink-soft); font-size: 1.05rem; line-height:1.7; margin-bottom: 44px; }
.audience-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.audience-card{
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align:center;
}
.audience-card i{
  font-size: 1.8rem;
  color: var(--white);
  background: var(--grad-warm);
  width: 60px; height:60px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 16px;
  border: 3px solid var(--ink);
}
.audience-card h3{ font-size: 1.05rem; margin-bottom: 8px; }
.audience-card p{ font-size: 0.92rem; color: var(--ink-soft); line-height:1.5; }

/* ---------------- FAQ ---------------- */
.faq-list{ margin-top: 40px; display:flex; flex-direction:column; gap:14px; max-width: 800px; }
.faq-item{
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}
.faq-item summary{
  cursor:pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content: '+';
  font-size: 1.4rem;
  color: var(--pink);
  margin-left: 12px;
}
.faq-item[open] summary::after{ content: '−'; }
.faq-item p{ margin-top: 14px; color: var(--ink-soft); line-height:1.6; }

/* ---------------- Quote section ---------------- */
.section-quote{
  background: var(--ink);
  color: var(--white);
  border-top: 4px solid var(--ink);
}
.quote-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items:start;
}
.quote-text{ color: rgba(255,255,255,0.75); font-size:1.05rem; line-height:1.7; margin-bottom: 26px; }
.quote-points{ list-style:none; display:flex; flex-direction:column; gap:12px; }
.quote-points li{ display:flex; align-items:center; gap:10px; font-weight:600; }
.quote-points i{ color: var(--lime); }
.quote-points a{ color: var(--yellow); text-decoration: underline; }

.quote-form{
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  border: 3px solid var(--ink);
  padding: 34px;
  box-shadow: 10px 10px 0 var(--pink);
}
.form-row{ margin-bottom: 20px; }
.form-row-split{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label{
  display:block;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 8px;
  font-size: 0.92rem;
}
.form-row input,
.form-row textarea{
  width:100%;
  padding: 12px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--paper-soft);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-row input:focus,
.form-row textarea:focus{
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,255,0.2);
}
.form-row-consent{ display:flex; align-items:flex-start; }
.checkbox-label{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
  cursor:pointer;
}
.checkbox-label input{ margin-top:3px; width:18px; height:18px; accent-color: var(--pink); flex-shrink:0; }
.checkbox-label a{ color: var(--purple); font-weight:700; text-decoration:underline; }
.btn-submit{ width:100%; margin-top: 6px; }
.form-status{
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.92rem;
  min-height: 20px;
}
.form-status.success{ color: #1a9e4c; }
.form-status.error{ color: #d9314a; }

/* ---------------- Footer ---------------- */
.site-footer{ background: var(--paper-soft); border-top: 3px solid var(--ink); padding-top: 60px; }
.footer-inner{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p{ margin-top: 14px; color: var(--ink-soft); line-height:1.6; }
.footer-col h4{ font-size: 1rem; margin-bottom: 16px; }
.footer-col ul{ list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col a{ color: var(--ink-soft); font-weight:500; }
.footer-col a:hover{ color: var(--pink); }
.footer-col li{ font-size: 0.92rem; }
.footer-bottom{ border-top: 2px solid rgba(18,8,31,0.15); padding: 20px 0; }
.footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------------- Cookie banner ---------------- */
.cookie-banner{
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard);
  padding: 20px 24px;
  z-index: 200;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.cookie-banner.visible{ transform: translateY(0); opacity: 1; }
.cookie-banner-inner{ display:flex; align-items:center; gap: 20px; flex-wrap: wrap; justify-content: space-between; }
.cookie-banner p{ font-size: 0.9rem; color: var(--ink-soft); flex: 1; min-width: 220px; }
.cookie-banner a{ color: var(--purple); font-weight: 700; text-decoration: underline; }
.cookie-actions{ display:flex; gap: 10px; }

/* ---------------- Legal pages ---------------- */
.legal-page{ padding: 140px 0 100px; }
.legal-page h1{ font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
.legal-updated{ color: var(--purple); font-weight:700; margin-bottom: 40px; display:block; }
.legal-content{ max-width: 780px; }
.legal-content h2{ font-size: 1.4rem; margin: 36px 0 14px; }
.legal-content p, .legal-content li{ color: var(--ink-soft); line-height: 1.75; font-size: 1rem; margin-bottom: 12px; }
.legal-content ul{ padding-left: 22px; list-style: disc; margin-bottom: 16px; }
.legal-content a{ color: var(--purple); font-weight:700; text-decoration: underline; }
.back-home{
  display:inline-flex; align-items:center; gap:8px;
  margin-bottom: 30px;
  font-weight:700;
  font-family: var(--font-display);
  color: var(--pink);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 980px){
  .cards-grid{ grid-template-columns: repeat(2,1fr); }
  .why-grid{ grid-template-columns: 1fr; }
  .audience-grid{ grid-template-columns: repeat(2,1fr); }
  .quote-wrap{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  .nav-toggle{ display:inline-flex; }
  .nav-links{
    position: absolute;
    top: 100%; left:0; right:0;
    background: var(--paper);
    border-bottom: 3px solid var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 26px;
    gap: 18px;
    display: none;
  }
  .nav-links.open{ display:flex; }
  .cards-grid{ grid-template-columns: 1fr; }
  .audience-grid{ grid-template-columns: 1fr; }
  .form-row-split{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; text-align:left; }
  .hero{ padding-top: 120px; }
  .glow-card-2{ margin-left:0; }
  .process-step{ flex-direction:column; gap:10px; }
  .step-num{ min-width: unset; }
}
