@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,900;1,900&family=Poppins:wght@300;400;600;700&display=swap");

:root {
  --navy: #0f172a;
  --gold: #d4af37;
  --soft-white: #fdfcfe;
  --light-grey: #f1f5f9;
  --slate: #64748b;
  --gold-glass: rgba(212, 175, 55, 0.1);
  --white-glass: rgba(255, 255, 255, 0.85);
}

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

body.designer-theme {
  background-color: var(--soft-white);
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

.container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}
.section-designer {
  padding: 120px 0;
}
.bg-white {
  background-color: #ffffff;
}
.bg-light {
  background-color: var(--light-grey);
}
.text-center {
  text-align: center;
}
.mb-60 {
  margin-bottom: 60px;
}

/* --- HERO CANVAS BASE --- */
.hero-canvas {
  position: relative;
  /* Minimal top padding to remove the large top gap */
  padding: 30px 0 100px;
  background: #ffffff;
  overflow: hidden;
  text-align: left;
}

/* Artistic Background Glow */
.art-blob {
  position: absolute;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.15;
  border-radius: 50%;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--gold);
  top: -280px;
  right: -100px;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

/* --- ENHANCED OFFER PILL --- */
.offer-glass-pill {
  display: inline-flex;
  align-items: center;
  background: var(--white-glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 6px 20px 6px 6px;
  border-radius: 100px;
  margin-bottom: 45px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.offer-glass-pill:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.pill-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Pulse Indicator */
.pulse-icon {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  position: relative;
}
.pulse-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  animation: ripple 2s infinite;
}

.pill-content {
  margin-left: 15px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.price-tag {
  color: var(--gold);
  font-weight: 800;
}

.text-free {
  background: var(--gold);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  margin-left: 5px;
  letter-spacing: 1px;
}

/* --- TYPOGRAPHY --- */
.designer-badge {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--slate);
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-title {
  font-size: clamp(3.2rem, 8vw, 5.2rem);
  line-height: 1.05;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 25px;
}

.text-underline-gold {
  color: var(--gold);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--slate);
  max-width: 650px;
  margin-bottom: 50px;
}

/* --- BUTTONS --- */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn {
  padding: 20px 45px;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 0;
}

.btn-premium-navy {
  background: var(--navy);
  color: #fff !important;
  border: 1px solid var(--navy);
}

.btn-premium-navy:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.btn-minimal-outline {
  border: 1px solid #e2e8f0;
  color: var(--navy) !important;
}

.btn-minimal-outline:hover {
  border-color: var(--navy);
  background: #f8fafc;
}

.arrow {
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.btn-premium-navy:hover .arrow {
  transform: translateX(5px);
}

/* --- FOOTER ELEMENTS --- */
.offer-timer {
  margin-top: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- ANIMATIONS --- */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.animate-float {
  animation: float 5s ease-in-out infinite;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
  .hero-canvas {
    padding: 30px 20px 60px;
    text-align: center;
  }

  .offer-glass-pill {
    flex-direction: column;
    padding: 18px;
    border-radius: 24px;
    width: 100%;
    gap: 12px;
  }

  .pill-badge {
    width: 100%;
    justify-content: center;
  }

  .pill-content {
    margin-left: 0;
    font-size: 0.9rem;
  }

  .main-title {
    font-size: 3rem;
  }

  .hero-description {
    margin: 0 auto 40px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .offer-timer {
    justify-content: center;
  }
}

/* --- LAYOUTS --- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mini-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 15px;
}

.designer-h {
  font-size: 3rem;
  margin-bottom: 25px;
}

.director-note {
  margin-top: 30px;
  padding-left: 20px;
  border-left: 4px solid var(--gold);
  font-style: italic;
}

/* --- ROADMAP --- */
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.path-card {
  padding: 40px;
  background: #fff;
  border: 1px solid #eee;
}
.path-step {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #eee;
  margin-bottom: 20px;
}

/* --- STATS --- */
.stats-dark-wrap {
  background: var(--navy);
  color: #fff;
  padding: 60px 0;
}
.stats-row {
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.stat-block strong {
  display: block;
  font-size: 3rem;
  color: var(--gold);
}
.stat-block span {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  opacity: 0.7;
}

/* --- PILLS --- */
.designer-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.studio-pill {
  padding: 12px 30px;
  border: 1px solid #ddd;
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- CTA --- */
.grand-cta-box {
  background: var(--navy);
  padding: 100px 40px;
  color: #fff;
  text-align: center;
}
.grand-cta-box h2 {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 20px;
}

/* --- VISUAL COMPOSITION --- */

.visual-side {
  position: relative;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.composition-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 550px;
}

/* Main Frame Styling */
.art-frame-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 90%;
  background: #fff;
  padding: 15px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid #eee;
  z-index: 2;
}

.canvas-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f8fafc;
  position: relative;
}

.frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(20%) contrast(1.1); /* Adds a professional gallery tint */
}

.frame-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  padding: 10px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

/* Accent Frame (Overlapping) */
.art-frame-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 45%;
  background: #fff;
  padding: 10px;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  z-index: 3;
}

.accent-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #d4af37; /* Gold Accent */
  color: #fff;
  padding: 8px 15px;
  font-weight: 700;
  font-size: 0.75rem;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Decorative Geometric Elements */
.geo-element {
  position: absolute;
  z-index: 1;
}

.dot-grid {
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
  background-size: 15px 15px;
}

.gold-bar {
  bottom: 20px;
  left: -40px;
  width: 120px;
  height: 4px;
  background: #d4af37;
}

/* --- DESIGNER FAQ LAYOUT --- */

.mb-80 {
  margin-bottom: 80px;
}

.faq-grid-designer {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two-column layout */
  gap: 60px; /* Large designer gap */
  align-items: start;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 40px; /* Spacing between Q/A blocks */
}

.faq-card-minimal {
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e8f0; /* Subtle divider for vertical rhythm */
}

.faq-card-minimal h4 {
  font-family: "Inter", sans-serif; /* Modern sans-serif for clarity */
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--navy);
  line-height: 1.4;
}

.faq-card-minimal p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.8;
}

/* Mobile Compatibility Fix */
@media (max-width: 768px) {
  .split-layout,
  .pathway-grid,
  .stats-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 40px;
  }
  .main-title {
    font-size: 3rem;
  }
  .visual-side {
    padding: 20px 0;
  }
  .composition-wrapper {
    height: 450px;
  }
  .gold-bar {
    left: 0;
  }
  .hero-cta-group {
    flex-direction: column; /* Stack buttons on mobile */
    gap: 15px; /* Tighter gap for smaller screens */
    margin-top: 35px; /* Reduced top margin for mobile */
    width: 100%;
  }

  .btn {
    width: 100%; /* Buttons become full-width for easier tapping */
    text-align: center;
    padding: 20px 0; /* Slightly taller for better touch targets */
  }
  .faq-grid-designer {
    grid-template-columns: 1fr; /* Stack into a single column on mobile */
    gap: 40px;
  }

  .faq-card-minimal {
    padding-bottom: 25px;
  }

  .designer-h {
    font-size: 2.2rem; /* Scale heading for mobile screens */
  }
}
