/* =========================================================
   FlowStack — Quiet Luxury Design System
   ========================================================= */

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

/* ===== Custom Properties ===== */
:root {
  /* Palette */
  --cream: #FBF9F7;
  --beige: #F5F1ED;
  --sand: #EBE4DC;
  --orange: #FF6600;
  --orange-light: #FF8533;
  --orange-dark: #E55C00;
  --orange-glow: rgba(255, 102, 0, 0.12);
  --purple: #7B2FBE;
  --purple-light: #9B5CD4;
  --purple-glow: rgba(123, 47, 190, 0.1);
  --charcoal: #2C2C2C;
  --slate: #4A4A4A;
  --slate-light: #7A7A7A;
  --white: #FFFFFF;

  /* Surfaces */
  --bg: var(--cream);
  --surface: var(--white);
  --surface-warm: var(--beige);
  --border: rgba(200, 190, 175, 0.35);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: clamp(5rem, 10vw, 9rem);
  --container-max: 1200px;

  /* Radius */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
}

/* ===== Dark Mode Variables ===== */
body.dark {
  --cream: #111114;
  --beige: #18181C;
  --sand: #252529;
  --charcoal: #E8E8EC;
  --slate: #A0A0A8;
  --slate-light: #6E6E78;
  --white: #1E1E22;
  --bg: var(--cream);
  --surface: var(--white);
  --surface-warm: var(--beige);
  --border: rgba(255, 255, 255, 0.1);
}

/* ===== Base ===== */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--charcoal);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

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

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

/* ===== Typography ===== */
h1, h2, h3 {
  line-height: 1.15;
  font-weight: 700;
  color: var(--charcoal);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 60px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 102, 0, 0.3);
  background: var(--orange-dark);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--sand);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-full {
  width: 100%;
}

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Theme Toggle ===== */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  color: var(--charcoal);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--orange);
  transform: scale(1.08);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
}
.theme-toggle .icon-moon {
  display: none;
}
body.dark .theme-toggle .icon-sun {
  display: none;
}
body.dark .theme-toggle .icon-moon {
  display: block;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
body.dark .navbar {
  background: rgba(17, 17, 20, 0.85);
}
body.dark .navbar.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--charcoal);
}
.nav-links .nav-cta {
  padding: 0.6rem 1.5rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 60px;
  font-weight: 600;
}
.nav-links .nav-cta:hover {
  background: var(--orange-dark);
}

/* Hamburger */
.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(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding-top: calc(72px + var(--section-pad));
  padding-bottom: var(--section-pad);
  background: var(--cream);
  overflow: hidden;
}

.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--orange-glow) 0%, transparent 60%);
  opacity: 0.15;
  animation: heroGlow 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  min-height: 70vh;
  justify-content: center;
}

.hero-content {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.4);
  max-width: 800px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
body.dark .hero-content {
  background: rgba(17, 17, 20, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Staggered Entrance Animations */
.hero-content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroEntrance 0.8s var(--ease) forwards;
}

.hero-eyebrow { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.25s; }
.hero-subtitle { animation-delay: 0.4s; }
.hero-actions { animation-delay: 0.6s; }

.hero-visual {
  opacity: 0;
  transform: scale(0.95);
  animation: heroImageEntrance 1s var(--ease) 0.8s forwards;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(255, 255, 255, 0.8);
}
body.dark .hero-title {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

#webgl-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  cursor: grab;
}
#webgl-container:active {
  cursor: grabbing;
}

/* =========================================================
   TOOLS / LOGO CLOUD
   ========================================================= */
.tools {
  padding: 3rem 0 4rem;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.tools .section-label {
  text-align: center;
}

.tools-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.tool-item {
  opacity: 0.6;
  transition: opacity var(--transition);
}
.tool-item:hover {
  opacity: 1;
}

.tool-logo {
  height: 36px;
  width: auto;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  padding: var(--section-pad) 0;
  background: var(--beige);
}

.services .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.services .section-label {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
}
.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.75;
}

/* =========================================================
   PROCESS
   ========================================================= */
.process {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.process .section-label {
  text-align: center;
}

.process .section-title {
  text-align: center;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 4rem;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 280px;
  flex: 0 1 280px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange-glow);
  background: linear-gradient(135deg, var(--orange), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 0.93rem;
  color: var(--slate);
  line-height: 1.7;
}

.process-connector {
  flex: 0 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-connector svg {
  width: 80px;
  height: 24px;
}

/* =========================================================
   RESULTS / SOCIAL PROOF
   ========================================================= */
.results {
  padding: var(--section-pad) 0;
  background: var(--beige);
}

.results .section-label {
  text-align: center;
}

.results .section-title {
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--orange);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--slate);
  margin-top: 0.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.author-role {
  display: block;
  font-size: 0.8rem;
  color: var(--slate-light);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-subtitle {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.8;
  max-width: 440px;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-light);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.form-success {
  display: none;
  text-align: center;
  color: var(--orange-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--orange-glow);
  border-radius: var(--radius-xs);
}

.form-success.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #1E1E22;
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer .nav-logo {
  color: var(--white);
}
.footer .nav-logo span {
  color: var(--white);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}

.footer-brand {
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  width: 100%;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}
.footer-legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}
.footer-legal a:hover {
  color: var(--white);
}

/* =========================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ========================================================= */
.legal-page {
  padding-top: calc(72px + 4rem);
  padding-bottom: 4rem;
  min-height: calc(100vh - 120px);
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.legal-page h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.legal-page p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 720px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 2rem;
  transition: color var(--transition);
}
.back-link:hover {
  color: var(--orange-dark);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Mobile Nav */
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.3s ease, visibility 0.4s;
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  body.dark .nav-links {
    background: rgba(17, 17, 20, 0.98);
  }
  .hamburger {
    display: flex;
  }

  .process-steps {
    flex-direction: column;
    gap: 1rem;
  }
  .process-connector {
    transform: rotate(90deg);
    flex: 0 0 40px;
  }
  .process-step {
    max-width: 100%;
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* =========================================================
   PRICING PAGE
   ========================================================= */
.pricing-hero {
  padding-top: calc(72px + var(--section-pad));
  padding-bottom: 3rem;
  background: var(--cream);
  text-align: center;
}

.pricing-section {
  padding: 4rem 0 var(--section-pad);
  background: var(--beige);
}

.pricing-category-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.pricing-grid.single {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--orange-glow);
}

.pricing-card.featured {
  border: 2px solid var(--orange);
  transform: scale(1.02);
  z-index: 2;
}
.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: 1.5rem;
  right: -2rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.4rem 3rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate);
}

.price-period {
  font-size: 0.9rem;
  color: var(--slate-light);
}

.pricing-description {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  min-height: 3rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.pricing-card .btn {
  margin-top: auto;
}

/* Specific styling for 'Contact Us' cards */
.contact-card {
  text-align: center;
  justify-content: center;
  background: var(--surface-warm);
}

.contact-card .pricing-price {
  justify-content: center;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
}

/* =========================================================
   ABOUT PAGE — REDESIGN (QUIET LUXURY)
   ========================================================= */
.about-hero {
  padding-top: calc(72px + var(--section-pad));
  padding-bottom: 5rem;
  background: radial-gradient(circle at top right, var(--orange-glow), transparent),
              radial-gradient(circle at bottom left, var(--purple-glow), transparent),
              var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1.5" fill="%23FF6600" fill-opacity="0.1"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.about-section {
  padding: calc(var(--section-pad) * 0.8) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.about-grid.reverse {
  direction: rtl;
}
.about-grid.reverse .about-text {
  direction: ltr;
}

/* Glassmorphism Story Block */
.about-text {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

body.dark .about-text {
  background: rgba(30, 30, 34, 0.4);
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.8rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--charcoal), var(--slate));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Advanced Image Reveal */
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.6s var(--ease);
}

.about-grid.reverse .about-image-wrapper {
  transform: perspective(1000px) rotateY(5deg);
}

.about-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
  pointer-events: none;
}

/* Values Grid Redesign */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--orange-glow);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 2rem;
  background: var(--orange-glow);
  color: var(--orange);
  padding: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.7;
}

/* Personal Quote Section */
.personal-quote {
  padding: var(--section-pad) 0;
  text-align: center;
  background: var(--cream);
}

.quote-text {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--charcoal);
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.4;
  position: relative;
}

.quote-text::before {
  content: "“";
  position: absolute;
  top: -1rem;
  left: -2rem;
  font-size: 6rem;
  color: var(--orange-glow);
  font-family: serif;
}

.quote-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.author-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.author-signature {
  font-family: 'Inter', sans-serif; /* Fallback for now */
  font-style: italic;
  font-size: 1.5rem;
  color: var(--orange);
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-grid.reverse {
    direction: ltr;
  }
  .about-image-wrapper {
    transform: none !important;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}
@keyframes heroEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageEntrance {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes smoothFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
