
body.conceptra-page,
body.conceptra-page *,
body.conceptra-page *::before,
body.conceptra-page *::after {
  box-sizing: border-box;
}

html:has(body.conceptra-page) {
  scroll-behavior: smooth;
}

body.conceptra-page {
  width: 100%;
  margin: 0;
  background: var(--body-bg);
  color: var(--text-soft);
  font-family: 'Manrope', 'DM Sans', system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s ease, color 0.35s ease;
}

/* Centred page shell — direct children of body */
body.conceptra-page > section,
body.conceptra-page > footer {
  width: min(1100px, calc(100% - 48px));
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

body.conceptra-page::after {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: var(--noise-opacity);
  pointer-events: none;
  z-index: 999;
}

.conceptra-page .glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: var(--glow-opacity);
    pointer-events: none;
    z-index: 0;
  }

  /* ── Animations ─────────────────────────────── */
  @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes slideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
  @keyframes pulse { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.25; } }
  @keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
  @keyframes counter { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }

  .fade-up { animation: fadeUp 0.7s ease-out both; }
  .fade-up-1 { animation-delay: 0.1s; }
  .fade-up-2 { animation-delay: 0.2s; }
  .fade-up-3 { animation-delay: 0.35s; }
  .fade-up-4 { animation-delay: 0.5s; }
  .fade-up-5 { animation-delay: 0.65s; }

  /* ── Navigation ─────────────────────────────── */
body.conceptra-page > nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 24px;
  backdrop-filter: blur(20px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border-scrolled);
  transition: background 0.25s ease, border-color 0.25s ease;
}

body.conceptra-page .nav-inner {
  width: min(1100px, 100%);
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.conceptra-page .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.conceptra-page .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 24px;
  background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
  }
  .logo img {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    -webkit-text-fill-color: initial;
    background: none;
  }
  .logo-wordmark {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
  }

  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a {
    color: var(--text-sec);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }

.conceptra-page .btn-primary {
  padding: 10px 24px;
  background: var(--gradient-brand);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--brand-violet-a35);
  }

  .btn-outline {
    padding: 10px 24px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
  }
  .btn-outline:hover {
    border-color: var(--primary);
    background: var(--brand-violet-a08);
  }

  /* ── Hero ────────────────────────────────────── */
body.conceptra-page > section.hero {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 140px 24px 80px;
}

body.conceptra-page .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Hero logo showcase */
body.conceptra-page .hero-logo-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
  z-index: 1;
}

body.conceptra-page .hero-logo-showcase__ring {
  position: absolute;
  inset: -18px;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-violet) 45%, var(--brand-orange));
  opacity: 0.55;
  filter: blur(0.5px);
  animation: pulse 5s ease-in-out infinite;
}

body.conceptra-page .hero-logo-showcase__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-violet-a25) 0%, transparent 70%);
  filter: blur(24px);
  z-index: 0;
}

body.conceptra-page .hero-logo-showcase__img {
  position: relative;
  z-index: 2;
  width: clamp(140px, 22vw, 220px);
  height: clamp(140px, 22vw, 220px);
  border-radius: 32px;
  object-fit: cover;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px var(--glass-2),
    0 0 60px var(--brand-violet-a20);
  animation: float 6s ease-in-out infinite;
}

body.conceptra-page .hero-logo-showcase__tagline {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

body.conceptra-page .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: var(--brand-violet-a10);
  border: 1px solid var(--brand-violet-a25);
  border-radius: 100px;
  font-size: 13px;
  color: var(--primary-light);
  margin-bottom: 28px;
}
  .hero-badge span {
    background: var(--primary);
    color: #fff;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
  }

  .hero h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -2px;
    max-width: 800px;
    margin-bottom: 24px;
  }

  .hero h1 .gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: shimmer 4s ease-in-out infinite;
  }

  .hero h1 .italic {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
  }

body.conceptra-page .hero-desc {
  font-size: 18px;
  color: var(--text-sec);
  max-width: 560px;
  line-height: 1.7;
  margin: 0 auto 40px;
}

  .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

  .hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
  }
  .hero-stat {
    text-align: center;
  }
  .hero-stat .num {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--text);
    animation: counter 0.6s ease-out both;
  }
  .hero-stat .label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
  }

  /* ── Phone Mockup ───────────────────────────── */
  .phone-showcase {
    position: relative;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 24px;
  }
  .phone-frame {
    width: 260px;
    height: 520px;
    border-radius: 32px;
    background: var(--card);
    border: 2px solid var(--border);
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--mini-surface) inset;
    animation: float 5s ease-in-out infinite;
  }
  .phone-frame:nth-child(2) { animation-delay: -1.5s; transform: scale(1.05); z-index: 2; }
  .phone-frame:nth-child(3) { animation-delay: -3s; }

  .phone-screen {
    width: 100%;
    height: 100%;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .phone-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
  .phone-title { font-family: 'Outfit'; font-weight: 800; font-size: 18px; }
  .phone-subtitle { color: var(--text-sec); font-size: 12px; }

  .mini-card {
    padding: 12px 14px;
    background: var(--brand-violet-a08);
    border: 1px solid var(--brand-violet-a15);
    border-radius: 12px;
    font-size: 13px;
  }
  .mini-btn {
    padding: 8px;
    background: var(--primary);
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    font-family: 'Outfit';
  }
  .mini-option {
    padding: 10px 14px;
    background: var(--mini-surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mini-option.correct {
    border-color: var(--success);
    background: var(--brand-green-a08);
  }
  .mini-bar {
    height: 6px;
    border-radius: 3px;
    background: var(--border);
  }
  .mini-bar-fill {
    height: 100%;
    border-radius: 3px;
  }

  /* ── Sections ───────────────────────────────── */
body.conceptra-page > section {
  padding: 100px 0;
  position: relative;
}

body.conceptra-page .section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 12px;
  text-align: center;
}

body.conceptra-page .section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
  text-align: center;
}

body.conceptra-page .section-desc {
  font-size: 16px;
  color: var(--text-sec);
  max-width: 560px;
  line-height: 1.7;
  margin: 0 auto 48px;
  text-align: center;
}

  /* ── Features Grid ──────────────────────────── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .feature-card {
    padding: 28px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .feature-card:hover {
    border-color: var(--brand-violet-a30);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px var(--brand-violet-a10);
  }
  .feature-card:hover::before { opacity: 1; }

  .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
  }
  .feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
  }
  .feature-card p {
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.6;
  }

  /* ── How it Works ───────────────────────────── */
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
  }
  .step {
    text-align: center;
    padding: 32px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
    counter-increment: step;
  }
  .step::before {
    content: counter(step);
    display: block;
    width: 36px;
    height: 36px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit';
    font-weight: 800;
    font-size: 16px;
    color: #fff;
  }
  .step h4 {
    font-family: 'Outfit';
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
  }
  .step p {
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.5;
  }

  /* ── Pricing ────────────────────────────────── */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
  }
  .price-card {
    padding: 32px 28px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    position: relative;
    transition: all 0.3s;
  }
  .price-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--brand-violet-a08) 0%, var(--card) 50%);
    transform: scale(1.04);
    z-index: 2;
  }
  .price-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Outfit';
  }
  .price-card:hover { transform: translateY(-4px); }
  .price-card.popular:hover { transform: scale(1.04) translateY(-4px); }

  .price-name {
    font-family: 'Outfit';
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
  }
  .price-amount {
    font-family: 'Outfit';
    font-weight: 900;
    font-size: 40px;
    margin-bottom: 4px;
  }
  .price-amount span { font-size: 16px; font-weight: 500; color: var(--text-sec); }
  .price-desc { font-size: 13px; color: var(--text-sec); margin-bottom: 24px; }

  .price-features { list-style: none; margin-bottom: 28px; }
  .price-features li {
    font-size: 13px;
    color: var(--text-sec);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-solid);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .price-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 14px;
  }

  /* ── Testimonials ───────────────────────────── */
  .testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .testimonial {
    padding: 28px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
  }
  .testimonial-stars { color: var(--warning); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
  .testimonial-text { font-size: 14px; color: var(--text-sec); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 10px; }
  .testimonial-avatar {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .testimonial-name { font-weight: 600; font-size: 13px; }
  .testimonial-role { font-size: 11px; color: var(--text-muted); }

  /* ── CTA Section ────────────────────────────── */
  .cta-section {
    text-align: center;
    padding: 80px 24px;
    position: relative;
  }
  .cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--brand-violet-a12), var(--brand-cyan-a08));
    border: 1px solid var(--brand-violet-a20);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
  }
  .cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(108,92,231,0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
  }

  /* ── Footer ─────────────────────────────────── */
body.conceptra-page > footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text-sec); }

  /* ── Responsive ─────────────────────────────── */
  @media (max-width: 768px) {
    body.conceptra-page > nav { padding: 14px 16px; }
    body.conceptra-page > section,
    body.conceptra-page > footer {
      width: calc(100% - 32px);
    }
    .nav-links a:not(.btn-primary):not([href*="index.html"]) { display: none; }
    body.conceptra-page > section.hero { padding: 120px 20px 60px; }
    body.conceptra-page .hero-logo-showcase__img {
      width: clamp(120px, 36vw, 160px);
      height: clamp(120px, 36vw, 160px);
      border-radius: 28px;
    }
    .hero-stats { gap: 24px; }
    .features-grid, .pricing-grid, .testimonials, .steps { grid-template-columns: 1fr; }
    .phone-showcase { flex-direction: column; align-items: center; }
    .phone-frame { width: 220px; height: 440px; }
    .phone-frame:nth-child(1), .phone-frame:nth-child(3) { display: none; }
    footer { flex-direction: column; text-align: center; }
  }
  @media (min-width: 769px) and (max-width: 1024px) {
    .features-grid, .pricing-grid, .testimonials { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
  }

body.conceptra-page h1,
body.conceptra-page h2,
body.conceptra-page h3,
body.conceptra-page h4,
body.conceptra-page .section-title,
body.conceptra-page .phone-title,
body.conceptra-page .price-name {
  color: var(--text);
}

html[data-theme="light"] body.conceptra-page .feature-card,
html[data-theme="light"] body.conceptra-page .step,
html[data-theme="light"] body.conceptra-page .price-card,
html[data-theme="light"] body.conceptra-page .testimonial,
html[data-theme="light"] body.conceptra-page .phone-frame {
  box-shadow: var(--card-shadow);
}

html[data-theme="light"] body.conceptra-page .price-card.popular {
  background: linear-gradient(180deg, var(--brand-violet-a08) 0%, var(--card) 50%);
}
