/*
Theme Name: Cake Aide Pro
Theme URI: https://cakeaidepro.com
Author: Cake Aide Pro Team
Author URI: https://cakeaidepro.com
Description: A modern, fully customizable WordPress theme for Cake Aide Pro - Your Cake Business Assistant. Features include pricing calculator showcase, testimonials, app screenshots, and complete business management features.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cake-aide-pro
Tags: business, one-column, custom-colors, custom-menu, editor-style, featured-images, sticky-post, threaded-comments, translation-ready
*/

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #374151;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ==========================================================================
   Navigation - Modern Redesign
   ========================================================================== */

.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(228, 145, 179, 0.1);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s ease;
}

.site-logo:hover {
  transform: translateY(-1px);
}

.site-logo img {
  height: 48px;
  width: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(228, 145, 179, 0.25);
  transition: all 0.3s ease;
}

.site-logo:hover img {
  box-shadow: 0 6px 20px rgba(228, 145, 179, 0.4);
  transform: scale(1.05) rotate(-2deg);
}

.site-logo .site-title {
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(135deg, #E491B3 0%, #d2619c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-navigation ul,
.main-navigation ul ul {
  display: flex;
  list-style: none !important;
  margin: 0;
  padding: 0;
  gap: 36px;
  align-items: center;
}

.main-navigation li,
.main-navigation ul li {
  margin: 0;
  padding: 0;
  list-style: none !important;
  list-style-type: none !important;
  position: relative;
}

.main-navigation li::before,
.main-navigation li::marker {
  display: none !important;
  content: none !important;
}

.main-navigation a {
  color: #374151;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  padding: 8px 4px;
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #E491B3, #fb7185);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.main-navigation a:hover {
  color: #E491B3;
}

.main-navigation a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a {
  color: #E491B3;
}

.main-navigation li.current-menu-item a::after,
.main-navigation li.current_page_item a::after {
  transform: scaleX(1);
}

.btn-sign-in {
  padding: 12px 28px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #E491B3 0%, #d2619c 100%) !important;
  color: white !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  box-shadow: 0 4px 16px rgba(228, 145, 179, 0.35) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
  border: none;
  letter-spacing: -0.01em;
}

.btn-sign-in::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #fb7185 0%, #E491B3 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-sign-in span {
  position: relative;
  z-index: 1;
}

.btn-sign-in:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(228, 145, 179, 0.5) !important;
}

.btn-sign-in:hover::before {
  opacity: 1;
}

.btn-sign-in:active {
  transform: translateY(0) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: linear-gradient(135deg, #E491B3 0%, #d2619c 100%);
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(228, 145, 179, 0.3);
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(228, 145, 179, 0.4);
}

.menu-toggle svg {
  transition: transform 0.3s ease;
}

.menu-toggle.active svg {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .nav-container {
    padding: 16px 24px;
  }
  
  .site-logo img {
    height: 40px;
    width: 40px;
  }
  
  .site-logo .site-title {
    font-size: 18px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(228, 145, 179, 0.1);
    animation: slideDown 0.3s ease;
  }
  
  .main-navigation.active {
    display: flex;
  }
  
  .main-navigation ul,
  .main-navigation ul ul {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  
  .main-navigation a {
    font-size: 16px;
    padding: 12px 16px;
    display: block;
    border-radius: 8px;
    background: rgba(228, 145, 179, 0.05);
  }
  
  .main-navigation a:hover {
    background: rgba(228, 145, 179, 0.1);
  }
  
  .btn-sign-in {
    width: 100%;
    text-align: center;
    padding: 14px 24px !important;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  color: white;
  overflow: hidden;
  min-height: 600px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 96px;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-text .highlight {
  color: rgba(210, 97, 156, 0.96);
}

.hero-text .subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: rgb(210, 97, 156);
  font-weight: bold;
}

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

.app-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(157, 23, 77, 0.2);
  min-width: 200px;
  transition: transform 0.2s;
}

.app-button:hover {
  transform: translateY(-2px);
}

.app-button.apple {
  color: #111827;
}

.app-button.google {
  color: rgb(231, 122, 177);
}

.app-button-icon {
  width: 32px;
  height: 32px;
}

.app-button-text {
  text-align: left;
}

.app-button-text .small {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0.7;
  display: block;
}

.app-button-text .large {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  display: block;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 40px;
  }
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.section {
  padding: 80px 0;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #0a0a0a;
}

.section-header p {
  font-size: 20px;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto;
}

.bg-gray {
  background-color: #f9fafb;
}

.bg-white {
  background-color: white;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 32px;
  }
  
  .section-header p {
    font-size: 18px;
  }
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.about-content p {
  font-size: 20px;
  line-height: 1.6;
  color: #374151;
}

.about-content em {
  font-style: italic;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
  .about-content p {
    font-size: 18px;
  }
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 48px;
}

.feature-item.reverse {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.feature-image-circle {
  width: 192px;
  height: 192px;
  background: #E491B3;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(228, 145, 179, 0.3);
}

.feature-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-content h3 {
  font-size: 36px;
  font-weight: bold;
  color: #0a0a0a;
  line-height: 1.3;
}

.feature-content .subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #ff9fb9;
}

.feature-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #374151;
}

@media (max-width: 968px) {
  .feature-item,
  .feature-item.reverse {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-content h3 {
    font-size: 28px;
  }
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.work-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.work-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-icon img {
  width: 48px;
  height: 48px;
}

.work-item h3 {
  font-size: 20px;
  font-weight: bold;
  color: #111827;
}

.work-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

@media (max-width: 968px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Screenshots Section
   ========================================================================== */

.screenshots-slider {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.screenshots-track {
  display: flex;
  gap: 67px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 50px;
}

.screenshots-track::-webkit-scrollbar {
  display: none;
}

.screenshot-item {
  flex: 0 0 300px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.screenshot-phone {
  background: black;
  border-radius: 48px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  padding: 12px;
  position: relative;
}

.screenshot-screen {
  background: white;
  border-radius: 40px;
  overflow: hidden;
  height: 598px;
}

.screenshot-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  width: 160px;
  height: 28px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.screenshot-indicator {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1f2937;
  width: 128px;
  height: 4px;
  border-radius: 9999px;
}

.screenshot-label {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #374151;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 32px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: #e2e8f0;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dot.active {
  background: #ff9fb9;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: #fbbf24;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}

.testimonial-author h4 {
  font-size: 16px;
  font-weight: bold;
  color: #0a0a0a;
}

.testimonial-author p {
  font-size: 14px;
  color: #6b7280;
}

@media (max-width: 968px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 32px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.pricing-card.popular {
  border: 2px solid #f472b6;
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #E491B3;
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
}

.pricing-amount .price {
  font-size: 48px;
  font-weight: bold;
  color: #111827;
}

.pricing-amount .period {
  color: #6b7280;
  margin-left: 8px;
}

.pricing-description {
  color: #4b5563;
  margin-bottom: 8px;
}

.pricing-savings {
  font-size: 18px;
  font-weight: 600;
  color: #f472b6;
  margin-bottom: 16px;
}

.pricing-button {
  width: 100%;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
}

.pricing-button.primary {
  background: #E491B3;
  color: white;
}

.pricing-button.secondary {
  background: #f3f4f6;
  color: #111827;
}

.pricing-button:hover {
  transform: translateY(-2px);
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
  color: #6b7280;
}

@media (max-width: 968px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
}

/* ==========================================================================
   CTA Sections
   ========================================================================== */

.cta-section {
  background: linear-gradient(163.29deg, #111827 0%, #1f2937 100%);
  color: white;
  padding: 80px 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 28px;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 32px;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-overlay {
  position: relative;
  overflow: hidden;
}

.cta-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.cta-overlay .section-container {
  position: relative;
  z-index: 2;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-primary {
  background: white;
  color: #ff9fb9;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 32px;
  }
  
  .cta-section p {
    font-size: 20px;
  }
}

/* ==========================================================================
   Unified Page Design System
   ========================================================================== */

/* Modern Page Hero */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #E491B3 0%, #d2619c 50%, #b84d85 100%);
  color: white;
  padding: 80px 32px;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 30%, rgba(255,255,255,0) 60%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}

.page-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.1);
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 22px;
  line-height: 1.6;
  opacity: 0.95;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
}

/* Content Boxes */
.content-box {
  background: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(228, 145, 179, 0.1);
}

.content-box:hover {
  box-shadow: 0 8px 30px rgba(228, 145, 179, 0.15);
  transform: translateY(-2px);
}

.content-box-gradient {
  background: linear-gradient(to bottom right, #fdf2f8, #fff);
  border: 1px solid rgba(228, 145, 179, 0.15);
}

/* Section Containers */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
}

.section-container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 32px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 20px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: white;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(228, 145, 179, 0.1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(228, 145, 179, 0.2);
  border-color: rgba(228, 145, 179, 0.3);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section - Enhanced */
.page-cta {
  background: linear-gradient(135deg, #fda4af 0%, #fb7185 50%, #E491B3 100%);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.2), transparent 60%);
  pointer-events: none;
}

.page-cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-cta h2 {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-cta p {
  font-size: 20px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 32px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #d2619c;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
  color: #b84d85;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-hero {
    padding: 60px 24px;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  .page-hero p {
    font-size: 18px;
  }
  
  .section-container {
    padding: 60px 24px;
  }
  
  .section-container-narrow {
    padding: 40px 24px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .section-header p {
    font-size: 18px;
  }
  
  .content-box {
    padding: 32px 24px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-card {
    padding: 28px;
  }
  
  .page-cta {
    padding: 60px 24px;
  }
  
  .page-cta h2 {
    font-size: 32px;
  }
  
  .page-cta p {
    font-size: 18px;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 16px;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  position: relative;
  background: #f9fafb;
  color: #374151;
  padding: 0;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E491B3 0%, #fb7185 50%, #d2619c 100%);
}

.site-footer .section-container {
  padding: 64px 32px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-column h3 {
  color: #111827;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #E491B3, #fb7185);
  border-radius: 2px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #6b7280;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  font-weight: 500;
}

.footer-column ul li a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E491B3, #fb7185);
  transition: width 0.3s ease;
}

.footer-column ul li a:hover {
  color: #E491B3;
  transform: translateX(4px);
}

.footer-column ul li a:hover::before {
  width: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 56px;
  width: 56px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(228, 145, 179, 0.2);
}

.footer-tagline {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 280px;
  font-weight: 500;
}

.footer-bottom {
  border-top: 2px solid #e5e7eb;
  padding-top: 32px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  background: white;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.social-links a:hover {
  color: white;
  background: linear-gradient(135deg, #E491B3, #fb7185);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(228, 145, 179, 0.4);
}

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Page Templates
   ========================================================================== */

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
}

.page-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #111827;
}

.page-content h2 {
  font-size: 28px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #111827;
}

.page-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #111827;
}

.page-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.page-content ul,
.page-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.page-content li {
  margin-bottom: 8px;
}

.page-meta {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 48px;
}

/* Page Header with Background */
.page-header-colored {
  background: #E491B3;
  color: white;
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-colored::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 30%, rgba(255,255,255,0) 60%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}

.page-header-colored .section-container {
  position: relative;
  z-index: 1;
}

.page-header-colored h1 {
  font-size: 48px;
  color: white;
  margin-bottom: 16px;
}

.page-header-colored p {
  font-size: 20px;
  color: white;
}

/* ==========================================================================
   Contact Form
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group label {
  font-weight: 600;
  color: #111827;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #E491B3;
  box-shadow: 0 0 0 3px rgba(228, 145, 179, 0.1);
}

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

.form-submit {
  background: #E491B3;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(228, 145, 179, 0.3);
}

.contact-info-box {
  background: #f9fafb;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #e5e7eb;
}

.contact-info-item {
  display: flex;
  align-items: start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  color: #E491B3;
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-category {
  margin-bottom: 48px;
}

.faq-category h3 {
  font-size: 24px;
  font-weight: bold;
  color: #E491B3;
  margin-bottom: 24px;
}

.faq-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #111827;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer-content {
  padding: 0 24px 20px;
  color: #4b5563;
  line-height: 1.8;
}

/* ==========================================================================
   Alert & Success Messages
   ========================================================================== */

.alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.alert-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.alert-info {
  background: #dbeafe;
  border: 1px solid #93c5fd;
  color: #1e40af;
}

.alert-warning {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* ==========================================================================
   Blog Styles
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-card-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
}

.blog-category {
  background: #E491B3;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.blog-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #111827;
}

.blog-excerpt {
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 1.6;
}

.read-more {
  color: #E491B3;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.read-more:hover {
  gap: 12px;
}

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

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

/* ============================================
   CONTENT PAGE FORMATTING
   ============================================ */

/* Legal and content pages styling */
.legal-content,
.page-content-formatted {
  max-width: 900px;
  margin: 0 auto;
  color: #374151;
  line-height: 1.8;
  font-size: 16px;
}

.legal-content h2,
.page-content-formatted h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h2:first-child,
.page-content-formatted h2:first-child {
  margin-top: 0;
}

.legal-content h3,
.page-content-formatted h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h4,
.page-content-formatted h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p,
.page-content-formatted p {
  margin-bottom: 16px;
  color: #374151;
}

.legal-content ul,
.legal-content ol,
.page-content-formatted ul,
.page-content-formatted ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.legal-content li,
.page-content-formatted li {
  margin-bottom: 8px;
  color: #374151;
}

.legal-content ul li,
.page-content-formatted ul li {
  list-style-type: disc;
}

.legal-content ol li,
.page-content-formatted ol li {
  list-style-type: decimal;
}

.legal-content a,
.page-content-formatted a {
  color: var(--primary-color);
  text-decoration: underline;
}

.legal-content a:hover,
.page-content-formatted a:hover {
  color: var(--accent-color);
}

.legal-content strong,
.legal-content b,
.page-content-formatted strong,
.page-content-formatted b {
  font-weight: 600;
  color: #111827;
}

.legal-content em,
.legal-content i,
.page-content-formatted em,
.page-content-formatted i {
  font-style: italic;
}

.legal-content section,
.page-content-formatted section {
  margin-bottom: 40px;
}

.legal-content blockquote,
.page-content-formatted blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
  margin: 24px 0;
  color: #6b7280;
  font-style: italic;
}

.legal-content table,
.page-content-formatted table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.legal-content table th,
.legal-content table td,
.page-content-formatted table th,
.page-content-formatted table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #e5e7eb;
}

.legal-content table th,
.page-content-formatted table th {
  background-color: #f9fafb;
  font-weight: 600;
  color: #111827;
}

.legal-content code,
.page-content-formatted code {
  background-color: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 14px;
}

.legal-content pre,
.page-content-formatted pre {
  background-color: #f3f4f6;
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 24px 0;
}

.legal-content pre code,
.page-content-formatted pre code {
  background: none;
  padding: 0;
}

/* Page updated date */
.page-updated {
  font-size: 16px;
  color: #6b7280;
  margin-top: 8px;
}

/* About page specific */
.about-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #374151;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* ============================================
   ACCOUNT DELETION PAGE
   ============================================ */

.deletion-content {
  max-width: 900px;
  margin: 0 auto;
}

.deletion-form-wrapper {
  margin-top: 40px;
}

.deletion-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.deletion-form-wrapper h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin-top: 40px;
  margin-bottom: 16px;
}

.deletion-form-wrapper p {
  font-size: 16px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 24px;
}

.deletion-steps {
  margin: 32px 0;
}

.deletion-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
}

.deletion-step:nth-child(2) {
  justify-content: center;
  background: transparent;
  padding: 0;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.deletion-step:nth-child(2) .step-number {
  background: #e5e7eb;
  color: #6b7280;
  width: auto;
  height: auto;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.deletion-info ul {
  margin: 16px 0;
  padding-left: 24px;
}

.deletion-info li {
  margin-bottom: 12px;
  color: #374151;
  line-height: 1.6;
}

.contact-support {
  margin-top: 40px;
  padding: 24px;
  background: #f9fafb;
  border-radius: 12px;
  text-align: center;
}

.contact-support p {
  font-size: 16px;
  color: #374151;
  margin-bottom: 16px;
}

/* ============================================
   TUTORIAL PAGE
   ============================================ */

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

.tutorial-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tutorial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.tutorial-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.tutorial-icon svg {
  color: white;
}

.tutorial-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.tutorial-card > p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.tutorial-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tutorial-steps li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.tutorial-steps li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 16px;
}

.tutorial-footer {
  margin-top: 64px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(228, 145, 179, 0.1) 0%, rgba(210, 97, 156, 0.1) 100%);
  border-radius: 16px;
  text-align: center;
}

.tutorial-footer h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.tutorial-footer p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
}

.tutorial-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   DEMO PAGE
   ============================================ */

.demo-video {
  margin-bottom: 64px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.video-placeholder svg {
  color: white;
  opacity: 0.5;
  margin-bottom: 16px;
}

.video-placeholder p {
  color: white;
  font-size: 18px;
  opacity: 0.8;
}

.demo-features h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
}

.feature-list-item svg {
  flex-shrink: 0;
  color: var(--primary-color);
}

.feature-list-item span {
  font-size: 15px;
  color: #374151;
  font-weight: 500;
}

.demo-cta {
  margin-top: 64px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(228, 145, 179, 0.1) 0%, rgba(210, 97, 156, 0.1) 100%);
  border-radius: 16px;
  text-align: center;
}

.demo-cta h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.demo-cta p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
}

/* ============================================
   COMING SOON PAGE
   ============================================ */

.coming-soon-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-message {
  text-align: center;
  margin: 48px 0;
}

.coming-soon-message svg {
  color: var(--primary-color);
  margin-bottom: 24px;
}

.coming-soon-message h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.coming-soon-message p {
  font-size: 18px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-signup {
  margin: 48px 0;
}

.newsletter-signup h3 {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 24px;
}

.notify-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row input[type="email"] {
  flex: 1;
}

.coming-soon-features {
  margin: 48px 0;
}

.coming-soon-features h3 {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 24px;
}

.feature-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-item svg {
  flex-shrink: 0;
  color: var(--primary-color);
}

.badge-item span {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.back-link {
  margin-top: 48px;
  text-align: center;
}
