/* ============================================
   Quietwork — Main Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

:root {
  --color-accent: #4A5EDA;
  --color-accent-hover: #3a4dc4;
  --color-pink: #D48CB7;
  --color-pink-hover: #c47aa6;
  --color-dark: #0a0d16;
  --color-text: #BEBEBE;
  --color-text-light: #BEBEBE;
  --color-bg: #0e1220;
  --color-bg-alt: #131728;
  --color-border: rgba(255, 255, 255, 0.08);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #BEBEBE;
  max-width: 600px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::after {
  left: 100%;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(74, 94, 218, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn-secondary:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn-pink {
  background: var(--color-pink);
  color: #fff;
}
.btn-pink:hover {
  background: var(--color-pink-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 140, 183, 0.3);
}

.btn-pink-outline {
  background: transparent;
  color: var(--color-pink);
  border: 2px solid var(--color-pink);
}
.btn-pink-outline:hover {
  background: var(--color-pink);
  color: #fff;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 10000;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: visible;
}

.nav.scrolled {
  background: rgba(18, 19, 22, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

/* Nav always on dark */
.nav-links a {
  color: rgba(255, 255, 255, 0.7) !important;
}
.nav-links a:hover {
  color: #ffffff !important;
}
.nav-toggle span {
  background: #ffffff !important;
}
.nav-logo img {
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img {
  height: 21px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-dark);
}

.nav-cta {
  padding: 10px 22px !important;
  font-size: 0.85rem !important;
  color: #fff !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Hero background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(18, 19, 22, 0.94) 0%,
    rgba(18, 19, 22, 0.82) 35%,
    rgba(18, 19, 22, 0.45) 70%,
    rgba(18, 19, 22, 0.3) 100%
  );
}

/* Blue glow accent */
.hero-glow {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 94, 218, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .accent {
  background: linear-gradient(135deg, #4A5EDA, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #BEBEBE;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  box-shadow: 0 0 20px rgba(74, 94, 218, 0.3);
}

.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  background: transparent;
}

.btn-secondary-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

/* Hero staggered entrance */
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-buttons {
  opacity: 0;
  transform: translateY(30px);
}

.hero-content.hero-loaded .hero-title {
  animation: heroTextIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content.hero-loaded .hero-subtitle {
  animation: heroTextIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-content.hero-loaded .hero-buttons {
  animation: heroTextIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero visual — floating glass cards */
.hero-visual {
  flex: 1;
  max-width: 320px;
  position: relative;
}

.hero-graphic {
  width: 100%;
  aspect-ratio: 0.85;
  position: relative;
  overflow: visible;
}

/* Dark glassmorphism floating cards */
.float-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: absolute;
  white-space: nowrap;
  opacity: 0;
}

.float-card .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.float-card .dot.blue {
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(74, 94, 218, 0.5);
}
.float-card .dot.green {
  background: #34c759;
  box-shadow: 0 0 8px rgba(52, 199, 89, 0.5);
}
.float-card .dot.pink {
  background: var(--color-pink);
  box-shadow: 0 0 8px rgba(212, 140, 183, 0.5);
}

.float-card-1 {
  top: 8%;
  left: -10px;
}

.float-card-2 {
  top: 32%;
  right: -30px;
}

.float-card-3 {
  top: 56%;
  left: 5%;
}

/* Glass icon panel */
.hero-graphic-inner {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-graphic-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(74, 94, 218, 0.15);
}

.hero-graphic-icon svg {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.7);
}

/* Card entrance: slide in + bounce, then float */
.hero-visual.visible .float-card-1 {
  animation: cardSlideIn1 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards,
             floatCard1 5s ease-in-out 1.1s infinite;
}

.hero-visual.visible .float-card-2 {
  animation: cardSlideIn2 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards,
             floatCard2 6s ease-in-out 1.3s infinite;
}

.hero-visual.visible .float-card-3 {
  animation: cardSlideIn3 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards,
             floatCard3 7s ease-in-out 1.5s infinite;
}

@keyframes cardSlideIn1 {
  0% { opacity: 0; transform: translate(-60px, 20px) rotate(-3deg); }
  100% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
}

@keyframes cardSlideIn2 {
  0% { opacity: 0; transform: translate(60px, -20px) rotate(3deg); }
  100% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
}

@keyframes cardSlideIn3 {
  0% { opacity: 0; transform: translate(-40px, 40px) rotate(-2deg); }
  100% { opacity: 1; transform: translate(0, 0) rotate(0deg); }
}

@keyframes floatCard1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(4px, -12px) rotate(0.5deg); }
  50% { transform: translate(-2px, -6px) rotate(-0.3deg); }
  75% { transform: translate(3px, -14px) rotate(0.4deg); }
}

@keyframes floatCard2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-5px, -10px) rotate(-0.5deg); }
  66% { transform: translate(3px, -16px) rotate(0.3deg); }
}

@keyframes floatCard3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  40% { transform: translate(6px, -8px) rotate(0.6deg); }
  70% { transform: translate(-3px, -14px) rotate(-0.4deg); }
}

/* --- Section background images --- */
.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

/* --- Services --- */
.services {
  background: linear-gradient(180deg, #0e1220 0%, #0c1020 100%);
  border-top: 1px solid rgba(74, 94, 218, 0.08);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: #131728;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid rgba(74, 94, 218, 0.25);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(74, 94, 218, 0.06);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74, 94, 218, 0.15);
  border-color: #6671BB;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(74, 94, 218, 0.2), rgba(139, 92, 246, 0.12));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #BEBEBE;
  line-height: 1.65;
}

.services-caption {
  text-align: center;
  font-size: 0.9rem;
  color: #BEBEBE;
  opacity: 0.6;
  margin-top: 40px;
}

/* --- Pain Points & Stats --- */
.pain-stats {
  background: linear-gradient(180deg, #0a0d16 0%, #0c0f1a 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle warm glow behind stats */
.pain-stats::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.06), transparent 70%);
  pointer-events: none;
}

.pain-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.pain-stat-card {
  background: #131728;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Colour-tinted stat cards */
.pain-stat-card:nth-child(1) {
  border-color: rgba(235, 87, 87, 0.3);
  box-shadow: 0 0 24px rgba(235, 87, 87, 0.08);
}
.pain-stat-card:nth-child(2) {
  border-color: rgba(242, 153, 74, 0.3);
  box-shadow: 0 0 24px rgba(242, 153, 74, 0.08);
}
.pain-stat-card:nth-child(3) {
  border-color: rgba(74, 94, 218, 0.3);
  box-shadow: 0 0 24px rgba(74, 94, 218, 0.08);
}
.pain-stat-card:nth-child(4) {
  border-color: rgba(52, 199, 89, 0.3);
  box-shadow: 0 0 24px rgba(52, 199, 89, 0.08);
}

.pain-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.pain-stat-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  overflow: hidden;
}

.pain-stat-icon svg {
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  flex-shrink: 0;
}

.pain-stat-icon.red {
  background: rgba(235, 87, 87, 0.12);
  border: 1px solid rgba(235, 87, 87, 0.2);
}
.pain-stat-icon.red svg { color: #eb5757; }

.pain-stat-icon.amber {
  background: rgba(242, 153, 74, 0.12);
  border: 1px solid rgba(242, 153, 74, 0.2);
}
.pain-stat-icon.amber svg { color: #f2994a; }

.pain-stat-icon.blue {
  background: rgba(74, 94, 218, 0.12);
  border: 1px solid rgba(74, 94, 218, 0.2);
}
.pain-stat-icon.blue svg { color: var(--color-accent); }

.pain-stat-icon.green {
  background: rgba(52, 199, 89, 0.12);
  border: 1px solid rgba(52, 199, 89, 0.2);
}
.pain-stat-icon.green svg { color: #34c759; }

.pain-stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.pain-stat-number.counted {
  color: var(--color-accent);
}

.pain-stat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.pain-stat-card .pain-desc {
  font-size: 0.9rem;
  color: #BEBEBE;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pain-solution {
  margin-top: auto;
  background: rgba(74, 94, 218, 0.06);
  border-radius: 10px;
  padding: 16px;
  border-left: 3px solid var(--color-accent);
  text-align: left;
}

.solution-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.pain-solution p {
  font-size: 0.85rem;
  color: #BEBEBE;
  line-height: 1.55;
}

.stats-source {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  opacity: 0.5;
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* --- Glam IQ Teaser --- */
.glamiq-teaser {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #150d1e, #0a0d16);
  border-top: 1px solid rgba(212, 140, 183, 0.12);
  border-bottom: 1px solid rgba(212, 140, 183, 0.12);
}

/* Pink glow */
.glamiq-teaser::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 140, 183, 0.1), transparent 70%);
  pointer-events: none;
}

.glamiq-teaser .container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.glamiq-teaser-content {
  flex: 1;
}

.glamiq-teaser .section-label {
  color: var(--color-pink);
}

.glamiq-teaser-visual {
  flex: 1;
  max-width: 500px;
}

.glamiq-mockup {
  background: #131728;
  border: 1px solid rgba(212, 140, 183, 0.25);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 0 40px rgba(212, 140, 183, 0.08);
}

.glamiq-mockup img {
  max-width: 280px;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
}

.glamiq-mockup-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.glamiq-mockup-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.glamiq-mockup-card .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.glamiq-mockup-card .icon.pink { background: rgba(212, 140, 183, 0.15); }
.glamiq-mockup-card .icon.blue { background: rgba(74, 94, 218, 0.1); }
.glamiq-mockup-card .icon.green { background: rgba(52, 199, 89, 0.1); }

.glamiq-mockup-card-text {
  text-align: left;
}

.glamiq-mockup-card-text strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
}

.glamiq-mockup-card-text span {
  font-size: 0.78rem;
  color: #BEBEBE;
}

/* --- About --- */
.about {
  background: linear-gradient(180deg, #0e1220 0%, #10142a 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle teal glow */
.about::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.05), transparent 70%);
  pointer-events: none;
}

.about-header {
  margin-bottom: 40px;
}

.about-columns {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.about-video-wrap {
  position: relative;
  flex: 0 0 480px;
}

.about-photo {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
  display: block;
}

.about-text {
  flex: 1;
}

.about-video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0 0 16px 16px;
  margin-bottom: 0;
}

.about-text p {
  font-size: 1.05rem;
  color: #BEBEBE;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text .about-lead {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

/* --- Contact --- */
.contact {
  background: linear-gradient(180deg, #0a0d16 0%, #0c0f1a 100%);
  position: relative;
  overflow: hidden;
}

/* Blue glow behind form */
.contact::before {
  content: '';
  position: absolute;
  top: 30%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 94, 218, 0.06), transparent 70%);
  pointer-events: none;
}

.contact .container {
  max-width: 800px;
}

.contact-form {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #BEBEBE;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 1px solid rgba(74, 94, 218, 0.2);
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: #fff;
  background: #131728;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group select {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(74, 94, 218, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  align-self: flex-start;
}

.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(52, 199, 89, 0.1);
  border: 1px solid rgba(52, 199, 89, 0.2);
  border-radius: 10px;
  color: #34c759;
  font-weight: 500;
}

.form-success.visible {
  display: block;
}

/* --- Footer --- */
.footer {
  background: #0a0d16;
  color: #fff;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 24px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
  line-height: 1.6;
}

.footer-links-group h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.footer-links-group a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-links-group a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Training Page --- */
.training-hero {
  padding-top: calc(var(--nav-height) + 80px);
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.training-hero .hero-bg::after {
  background: linear-gradient(
    to right,
    rgba(18, 19, 22, 0.92) 0%,
    rgba(18, 19, 22, 0.8) 40%,
    rgba(18, 19, 22, 0.5) 100%
  );
}

.training-hero .container {
  position: relative;
  z-index: 1;
}

.training-hero-sub {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}

.training-hero-body {
  font-size: 1.05rem;
  color: #BEBEBE;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.training-levels {
  background: #0e1220;
}

.training-levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.training-level-card {
  background: #131728;
  border-radius: 16px;
  padding: 36px 28px;
  border-left: 3px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.training-level-card--advanced {
  border-left-color: #D97706;
}

.training-level-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

.training-level-card--advanced .training-level-label {
  color: #D97706;
}

.training-level-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.training-level-desc {
  font-size: 0.95rem;
  color: #BEBEBE;
  line-height: 1.6;
}

.training-level-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  margin-top: auto;
}

.training-level-modules {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 16px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.training-level-modules span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 16px;
  position: relative;
}

.training-level-modules span::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.2);
}

.training-level-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.training-level-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.training-bundle {
  margin-top: 40px;
  background: #131728;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(74, 94, 218, 0.2);
}

.training-bundle-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.training-bundle-title {
  font-size: 1.15rem;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.training-bundle-desc {
  font-size: 0.9rem;
  color: #BEBEBE;
}

.training-bundle-price {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.training-bundle-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.training-founding {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
  font-style: italic;
}

@media (max-width: 600px) {
  .training-bundle-inner {
    flex-direction: column;
    text-align: center;
  }
}

.training-diff {
  margin-top: 80px;
}

.training-diff-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
}

.training-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.training-diff-item {
  padding: 24px;
  background: #131728;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.training-diff-item strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
}

.training-diff-item p {
  font-size: 0.9rem;
  color: #BEBEBE;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .training-diff-grid {
    grid-template-columns: 1fr;
  }
}

.training-register {
  background: #0a0d16;
}

.training-register .contact-form {
  max-width: 700px;
  margin: 48px auto 0;
}

.training-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.training-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #BEBEBE;
}

.training-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.training-credibility {
  background: #0e1220;
  padding: 60px 0;
}

.training-credibility-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Training teaser on homepage */
.training-teaser-full {
  position: relative;
  overflow: hidden;
}

.training-teaser-full .hero-bg::after {
  background: linear-gradient(
    to right,
    rgba(10, 13, 22, 0.92) 0%,
    rgba(10, 13, 22, 0.8) 40%,
    rgba(10, 13, 22, 0.55) 100%
  );
}

.training-teaser-full .container {
  position: relative;
  z-index: 1;
}

.training-teaser-full-inner {
  max-width: 640px;
}

.training-teaser-full-body {
  font-size: 1.1rem;
  color: #BEBEBE;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.training-teaser-levels-row {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.training-teaser-level-pill {
  background: #131728;
  border: 1px solid rgba(74, 94, 218, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.training-teaser-level-pill--adv {
  border-color: rgba(217, 119, 6, 0.25);
}

.training-teaser-level-num {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

.training-teaser-level-pill--adv .training-teaser-level-num {
  color: #D97706;
}

.training-teaser-level-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.training-teaser-level-price {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.nav-active {
  color: var(--color-accent) !important;
}

@media (max-width: 768px) {
  .training-teaser-levels-row {
    flex-direction: column;
  }
  .training-teaser-full-inner {
    text-align: center;
    max-width: 100%;
  }
  .training-teaser-full-body {
    margin-left: auto;
    margin-right: auto;
  }
  .training-teaser-full .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(10, 13, 22, 0.85) 0%,
      rgba(10, 13, 22, 0.6) 50%,
      rgba(10, 13, 22, 0.85) 100%
    );
  }
}

@media (max-width: 768px) {
  .training-levels-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Audit Teaser on Homepage --- */
.audit-teaser {
  background: #0a0d16;
  border-top: 1px solid rgba(74, 94, 218, 0.1);
  border-bottom: 1px solid rgba(74, 94, 218, 0.1);
}

.audit-teaser-layout {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.audit-teaser-icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: rgba(74, 94, 218, 0.08);
  border: 1px solid rgba(74, 94, 218, 0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.audit-teaser-content {
  flex: 1;
}

.audit-teaser-body {
  font-size: 1.1rem;
  color: #BEBEBE;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}

.audit-teaser-details {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.audit-teaser-details span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 14px;
  border-left: 2px solid var(--color-accent);
}

@media (max-width: 768px) {
  .audit-teaser-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .audit-teaser-icon {
    width: 88px;
    height: 88px;
  }
  .audit-teaser-icon svg {
    width: 44px;
    height: 44px;
  }
  .audit-teaser-details {
    flex-direction: column;
    gap: 10px;
  }
  .audit-teaser-details span {
    border-left: none;
    border-bottom: 2px solid var(--color-accent);
    padding-left: 0;
    padding-bottom: 6px;
  }
  .audit-teaser-body {
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Ai Audit Page --- */
.audit-hero {
  padding-top: calc(var(--nav-height) + 80px);
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.audit-hero .hero-bg::after {
  background: linear-gradient(
    to right,
    rgba(10, 13, 22, 0.92) 0%,
    rgba(10, 13, 22, 0.8) 40%,
    rgba(10, 13, 22, 0.5) 100%
  );
}

.audit-hero .container {
  position: relative;
  z-index: 1;
}

.audit-hero-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.audit-hero-price span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.audit-hero-strapline {
  font-size: 1.2rem;
  color: #BEBEBE;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.audit-hero-logistics {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 32px;
}

.audit-phases {
  background: #0e1220;
}

.audit-phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.audit-phase-card {
  background: #131728;
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid rgba(74, 94, 218, 0.15);
}

.audit-phase-number {
  width: 40px;
  height: 40px;
  background: rgba(74, 94, 218, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.audit-phase-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.audit-phase-desc {
  font-size: 0.95rem;
  color: #BEBEBE;
  line-height: 1.6;
}

.audit-deliverables {
  background: #0a0d16;
}

.audit-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
  max-width: 800px;
}

.audit-deliverable {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: #131728;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.audit-check {
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.audit-deliverable p {
  font-size: 0.9rem;
  color: #BEBEBE;
  line-height: 1.5;
}

.audit-cta {
  background: #0e1220;
}

.audit-cta-sub {
  font-size: 1.05rem;
  color: #BEBEBE;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .audit-phases-grid {
    grid-template-columns: 1fr;
  }
  .audit-deliverables-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #131728;
  color: #BEBEBE;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.85rem;
  z-index: 9999;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}

.cookie-banner p {
  margin: 0;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px 16px;
  }
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content { text-align: center; max-width: 100%; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { max-width: 260px; width: 100%; }
  .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(18, 19, 22, 0.88) 0%,
      rgba(18, 19, 22, 0.7) 50%,
      rgba(18, 19, 22, 0.85) 100%
    );
  }

  .glamiq-teaser .container {
    flex-direction: column;
    text-align: center;
  }

  .glamiq-teaser-visual { max-width: 400px; width: 100%; }
  .glamiq-teaser .section-subtitle { margin-left: auto; margin-right: auto; }

  .about-columns {
    flex-direction: column;
  }

  .about-video-wrap { flex: none; width: 100%; max-width: 500px; }
  .about-text p { max-width: 560px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - var(--nav-height));
    background: #0a0d16;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 48px;
    gap: 28px;
    z-index: 9999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; color: rgba(255, 255, 255, 0.7); }
  .nav-links .nav-cta { color: #fff !important; }
  .nav-toggle { display: flex; z-index: 10000; position: relative; }

  .hero { min-height: 90vh; align-items: flex-start; padding-top: calc(var(--nav-height) + 40px); }
  .hero-visual { display: none; }
  .float-card { display: none; }

  .hero-bg img {
    object-position: 65% bottom;
  }

  .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(18, 19, 22, 0.85) 0%,
      rgba(18, 19, 22, 0.5) 55%,
      rgba(18, 19, 22, 0.85) 100%
    );
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding-top: calc(var(--nav-height) + 48px); padding-bottom: 60px; }
  .hero-buttons { flex-direction: row; flex-wrap: nowrap; }
  .hero-buttons .btn,
  .hero-buttons .btn-secondary-light { flex: 1; text-align: center; padding-left: 12px; padding-right: 12px; font-size: 0.85rem; }
  .btn { justify-content: center; }
}

/* ============================================
   Glam IQ Page Overrides
   ============================================ */

/* Reset to light theme for GlamIQ */
.glamiq-page {
  --color-dark: #111111;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f7f9;
  --color-border: #e8e8ec;
  background: #fff;
  color: #333;
}

.glamiq-page .section,
.glamiq-page .pain-stats,
.glamiq-page .pain-points,
.glamiq-page .services,
.glamiq-page .about,
.glamiq-page .contact,
.glamiq-page .training-levels,
.glamiq-page .training-register,
.glamiq-page .training-credibility {
  background: #fff !important;
}

.glamiq-page .pain-stats::before,
.glamiq-page .about::before,
.glamiq-page .contact::before {
  display: none;
}

.glamiq-page .section-label {
  color: var(--color-pink);
}

.glamiq-page .section-title {
  color: #111;
}

.glamiq-page .section-subtitle {
  color: #666;
}

.glamiq-page .hero {
  background: linear-gradient(180deg, #fdf2f8 0%, #fff 100%);
  min-height: auto;
}

.glamiq-page .hero-title {
  color: #111;
}

.glamiq-page .hero-title .accent {
  color: var(--color-pink);
  -webkit-text-fill-color: var(--color-pink);
  background: none;
}

.glamiq-page .hero-subtitle {
  color: #666;
}

.glamiq-page .nav {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e8e8ec;
}

.glamiq-page .nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: #e8e8ec;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.glamiq-page .nav-links a {
  color: #666 !important;
}

.glamiq-page .nav-links a:hover {
  color: #111 !important;
}

.glamiq-page .nav-toggle span {
  background: #111 !important;
}

.glamiq-page .nav-logo img {
  filter: none;
}

.glamiq-page .btn-primary {
  background: var(--color-pink);
  box-shadow: none;
}
.glamiq-page .btn-primary:hover {
  background: var(--color-pink-hover);
  box-shadow: 0 4px 16px rgba(212, 140, 183, 0.3);
}

.glamiq-page .service-card {
  background: #fff;
  border: 1px solid #e8e8ec;
  box-shadow: none;
}

.glamiq-page .service-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.glamiq-page .service-card h3 {
  color: #111;
}

.glamiq-page .service-card p {
  color: #666;
}

.glamiq-page .service-icon {
  background: rgba(212, 140, 183, 0.1);
}
.glamiq-page .service-icon svg {
  color: var(--color-pink);
}

.glamiq-page .stat-number {
  color: var(--color-pink);
}

.glamiq-page .footer {
  background: #111;
}

.glamiq-page .footer-brand img {
  filter: none;
}

/* GlamIQ mobile nav */
@media (max-width: 768px) {
  .glamiq-page .nav-links {
    background: #ffffff;
  }
  .glamiq-page .nav-links a {
    color: #666 !important;
  }
}

/* GlamIQ pricing cards */
.glamiq-page .pricing-card {
  background: #fff !important;
  border: 1px solid #e8e8ec;
  color: #333;
}

.glamiq-page .pricing-card h3,
.glamiq-page .pricing-card .price,
.glamiq-page .pricing-card .pricing-plan-name {
  color: #111;
}

.glamiq-page .pricing-card p,
.glamiq-page .pricing-card li {
  color: #666;
}

/* Catch any remaining dark sections on GlamIQ */
.glamiq-page section {
  background: #fff;
}

.glamiq-page .social-proof {
  background: #f7f7f9 !important;
}

.glamiq-page .glamiq-mockup {
  background: linear-gradient(135deg, #fdf2f8, #fce7f3);
  border-color: rgba(212, 140, 183, 0.3);
}

.glamiq-page .glamiq-mockup-card {
  background: #fff;
  border-color: #e8e8ec;
}

.glamiq-page .glamiq-mockup-card-text strong {
  color: #111;
}

.glamiq-page .glamiq-mockup-card-text span {
  color: #666;
}

/* GlamIQ general text resets */
.glamiq-page p {
  color: #666;
}

.glamiq-page h3 {
  color: #111;
}

/* GlamIQ services/features background alternation */
.glamiq-page .services {
  background: #f7f7f9;
  border-top: none;
}

.glamiq-page .glamiq-teaser {
  background: #fff;
  border-top: none;
  border-bottom: none;
}

.glamiq-page .glamiq-teaser::before {
  display: none;
}

/* GlamIQ contact form */
.glamiq-page .contact {
  background: #fff;
}

.glamiq-page .form-group label {
  color: #333;
}

.glamiq-page .form-group input,
.glamiq-page .form-group textarea,
.glamiq-page .form-group select {
  background: #f7f7f9;
  border-color: #e8e8ec;
  color: #333;
}

.glamiq-page .form-group input::placeholder,
.glamiq-page .form-group textarea::placeholder {
  color: #999;
}

.glamiq-page .form-group select {
  color: #666;
}

.glamiq-page .form-group input:focus,
.glamiq-page .form-group textarea:focus,
.glamiq-page .form-group select:focus {
  border-color: var(--color-pink);
  box-shadow: 0 0 0 3px rgba(212, 140, 183, 0.1);
}

.glamiq-page .form-success {
  color: #2d8a4e;
  background: rgba(52, 199, 89, 0.08);
  border-color: rgba(52, 199, 89, 0.2);
}

/* GlamIQ cookie banner */
.glamiq-page .cookie-banner {
  background: #fff;
  color: #333;
  border-top: 1px solid #e8e8ec;
}

/* GlamIQ pain points */

/* Pain points section (GlamIQ) */
.glamiq-page .pain-points {
  background: #f7f7f9;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.pain-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #e8e8ec;
  text-align: center;
}

.pain-card .emoji {
  font-size: 2rem;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.pain-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #D48CB7, #c47aa6);
  color: #fff;
  text-align: center;
}

.cta-banner .section-title {
  color: #fff;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  background: #fff;
  color: var(--color-pink);
}
.cta-banner .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}
