/* ===== SaaS Landing — fitstudio.site ===== */

:root {
  --bg: #FAF8F5;
  --bg-warm: #F3EDE6;
  --text: #1A1612;
  --text-secondary: #6B5E52;
  --accent: #C4602D;
  --accent-light: #E8916A;
  --accent-dark: #9B4A1F;
  --sage: #8B9E7E;
  --sage-light: #D4DDCE;
  --sage-dark: #5C6E52;
  --cream: #FFF8F0;
  --card: #FFFFFF;
  --border: rgba(26, 22, 18, 0.08);
  --shadow: 0 2px 40px rgba(26, 22, 18, 0.06);
  --shadow-lg: 0 12px 60px rgba(26, 22, 18, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; }

/* === NOISE TEXTURE OVERLAY === */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(250, 248, 245, 0.85);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0;
}

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

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 20px rgba(196, 96, 45, 0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 96, 45, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(26, 22, 18, 0.15);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(196, 96, 45, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 158, 126, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--sage-light);
  color: var(--sage-dark);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sage-dark);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease 0.4s both;
}

.phone-mockup {
  width: 280px;
  height: 580px;
  background: var(--card);
  border-radius: 40px;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.phone-mockup:hover { transform: translateY(-8px); }

.phone-mockup.back {
  position: absolute;
  right: 10px;
  transform: rotate(6deg) translateY(20px) scale(0.92);
  z-index: 0;
  opacity: 0.7;
}

.phone-mockup.back:hover { transform: rotate(6deg) translateY(12px) scale(0.92); }

.phone-mockup.front { z-index: 1; }

.phone-notch {
  width: 120px;
  height: 28px;
  background: var(--text);
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.phone-screen {
  padding: 12px 18px;
  height: calc(100% - 28px);
  display: flex;
  flex-direction: column;
}

/* App Screen Mockup Content */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 16px;
}

.app-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--text);
}

.app-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  border-radius: 50%;
}

.app-greeting {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.app-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.app-search {
  background: var(--bg);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.app-class-card {
  background: linear-gradient(135deg, #F7F1EB, #EDE5DB);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.app-class-card::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(196, 96, 45, 0.1), transparent);
  border-radius: 50%;
}

.app-class-name {
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.app-class-info {
  font-size: 0.65rem;
  color: var(--text-secondary);
  display: flex;
  gap: 12px;
}

.app-class-btn {
  margin-top: 10px;
  background: var(--accent);
  color: white;
  border: none;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
}

.app-class-card.sage {
  background: linear-gradient(135deg, var(--sage-light), #C1CEBC);
}

.app-class-card.sage .app-class-btn {
  background: var(--sage-dark);
}

.app-bottom-nav {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 12px 0 4px;
  border-top: 1px solid var(--border);
}

.app-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  color: var(--text-secondary);
}

.app-nav-item.active { color: var(--accent); }

.app-nav-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--bg);
}

.app-nav-item.active .app-nav-icon {
  background: rgba(196, 96, 45, 0.15);
}

/* === TRUSTED BY === */
.trusted {
  padding: 40px 40px 80px;
  text-align: center;
}

.trusted p {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.6;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.3;
}

.trusted-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--text);
}

/* === SECTIONS === */
section {
  padding: 100px 40px;
  max-width: 1240px;
  margin: 0 auto;
}

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

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* === FEATURES SECTION === */
.features-section {
  background: var(--cream);
  padding: 100px 40px;
  max-width: 100%;
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.features-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  padding: 28px 24px;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.feature-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--border);
}

.feature-item:last-child::after { display: none; }

.feature-item:hover {
  background: rgba(255, 255, 255, 0.5);
}

.feature-item.active {
  border-left-color: var(--accent);
  background: var(--card);
  box-shadow: var(--shadow);
}

.feature-item-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
  transition: margin 0.3s ease;
}

.feature-item.active .feature-item-header {
  margin-bottom: 10px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.feature-icon.orange { background: rgba(196, 96, 45, 0.1); }
.feature-icon.sage { background: rgba(139, 158, 126, 0.15); }
.feature-icon.warm { background: rgba(196, 96, 45, 0.06); }

.feature-item.active .feature-icon {
  transform: scale(1.08);
}

.feature-item h3 {
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.feature-item.active h3 {
  color: var(--accent);
}

.feature-item-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-left: 58px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-item.active .feature-item-desc {
  max-height: 120px;
  opacity: 1;
}

.feature-item-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  background: rgba(196, 96, 45, 0.08);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.02em;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease 0.1s;
}

.feature-item.active .feature-item-tag {
  max-height: 30px;
  opacity: 1;
}

/* Screenshot preview panel */
.features-preview {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.features-preview-window {
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  overflow: hidden;
  position: relative;
}

.preview-toolbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #F8F6F3, #F2EFEB);
  border-bottom: 1px solid var(--border);
}

.preview-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #DDD7D0;
}

.preview-dot.red { background: #E8786A; }
.preview-dot.yellow { background: #E8C86A; }
.preview-dot.green { background: #7EC47E; }

.preview-url {
  flex: 1;
  margin-left: 10px;
  background: rgba(26, 22, 18, 0.04);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-family: 'Plus Jakarta Sans', monospace;
}

.preview-screens {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.preview-screen {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  padding: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

.preview-screen.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* --- Mockup screen contents --- */
.mock-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mock-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.mock-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
}

.mock-btn {
  padding: 6px 14px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  border: none;
}

.mock-btn.outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
}

.mock-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.mock-tab {
  padding: 8px 16px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 2px solid transparent;
  cursor: default;
}

.mock-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.mock-row {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
  font-size: 0.75rem;
  transition: background 0.2s;
}

.mock-row:nth-child(odd) { background: rgba(26,22,18,0.02); }

.mock-row-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 10px;
  min-width: 8px;
}

.mock-row-name { flex: 1; font-weight: 500; color: var(--text); }
.mock-row-meta { font-size: 0.68rem; color: var(--text-secondary); min-width: 80px; text-align: right; }

.mock-badge {
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 600;
}

.mock-badge.green { background: rgba(139,158,126,0.15); color: var(--sage-dark); }
.mock-badge.orange { background: rgba(196,96,45,0.1); color: var(--accent); }
.mock-badge.gray { background: rgba(26,22,18,0.06); color: var(--text-secondary); }

/* Screen: Landing Builder */
.mock-builder {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  flex: 1;
}

.mock-sidebar {
  background: var(--bg);
  border-radius: 10px;
  padding: 12px;
}

.mock-sidebar-item {
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  color: var(--text-secondary);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-sidebar-item.active {
  background: var(--card);
  color: var(--accent);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.mock-canvas {
  background: var(--bg);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-block {
  border-radius: 8px;
  padding: 12px;
  border: 1.5px dashed var(--border);
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-align: center;
}

.mock-block.hero-block {
  background: linear-gradient(135deg, rgba(196,96,45,0.08), rgba(139,158,126,0.08));
  border-style: solid;
  border-color: rgba(196,96,45,0.2);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--accent);
}

/* Screen: Analytics */
.mock-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.mock-stat-card {
  background: var(--bg);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.mock-stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--text);
  line-height: 1;
}

.mock-stat-label {
  font-size: 0.62rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.mock-stat-change {
  font-size: 0.6rem;
  font-weight: 600;
  margin-top: 2px;
}

.mock-stat-change.up { color: var(--sage-dark); }
.mock-stat-change.down { color: #C45D5D; }

.mock-chart {
  background: var(--bg);
  border-radius: 10px;
  padding: 16px;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.mock-chart-title {
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.mock-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  padding-top: 10px;
}

.mock-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transition: height 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.mock-bar-label {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* Screen: CRM */
.mock-crm-header {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.mock-search-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.mock-filter-btn {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.68rem;
  background: var(--card);
  color: var(--text-secondary);
}

.mock-customer-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  gap: 10px;
}

.mock-customer-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  min-width: 30px;
}

.mock-customer-info { flex: 1; }
.mock-customer-name { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.mock-customer-email { font-size: 0.63rem; color: var(--text-secondary); }
.mock-customer-plan { font-size: 0.65rem; }

/* Phone mockup inside preview */
.preview-phone-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
}

.mini-phone {
  width: 180px;
  height: 370px;
  background: var(--text);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border: 3px solid #2A2420;
}

.mini-phone-notch {
  width: 70px;
  height: 18px;
  background: #000;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
}

.mini-phone-screen {
  padding: 8px 10px;
  background: var(--card);
  height: calc(100% - 18px);
  overflow: hidden;
}

.mini-phone.dark .mini-phone-screen {
  background: #1A1612;
}

/* === HOW IT WORKS === */
.how-it-works {
  position: relative;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--sage-light), var(--accent-light), var(--sage-light));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(196, 96, 45, 0.15);
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === APP SHOWCASE === */
.showcase-section {
  background: var(--text);
  padding: 100px 40px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.showcase-section::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 96, 45, 0.15), transparent);
  border-radius: 50%;
}

.showcase-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.showcase-content .section-label { color: var(--accent-light); }
.showcase-content .section-title { color: white; }
.showcase-content .section-subtitle { color: rgba(255,255,255,0.6); }

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.showcase-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(196, 96, 45, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.showcase-feature h4 {
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.showcase-feature p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.5;
}

.showcase-phones {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.showcase-phone {
  width: 220px;
  height: 460px;
  background: #2A2420;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(255,255,255,0.06);
}

.showcase-phone:hover { transform: translateY(-8px); }

.showcase-phone:nth-child(2) {
  margin-top: 40px;
}

.showcase-phone-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sp-notch {
  width: 90px;
  height: 22px;
  background: var(--text);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
}

.sp-content {
  padding: 14px;
  flex: 1;
}

.sp-schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.sp-title {
  font-family: 'DM Serif Display', serif;
  color: white;
  font-size: 0.95rem;
}

.sp-filter {
  font-size: 0.6rem;
  color: var(--accent-light);
  padding: 4px 10px;
  border: 1px solid rgba(196,96,45,0.3);
  border-radius: 20px;
}

.sp-days {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.sp-day {
  flex: 1;
  text-align: center;
  padding: 6px 0;
  border-radius: 8px;
  font-size: 0.55rem;
  color: rgba(255,255,255,0.4);
}

.sp-day.active {
  background: var(--accent);
  color: white;
}

.sp-day span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 2px;
}

.sp-class {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.04);
}

.sp-class-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}

.sp-class-name {
  color: white;
  font-weight: 600;
  font-size: 0.78rem;
}

.sp-class-spots {
  font-size: 0.6rem;
  color: var(--sage);
  padding: 2px 8px;
  background: rgba(139,158,126,0.15);
  border-radius: 20px;
}

.sp-class-meta {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
}

/* Second phone - profile/stats */
.sp-profile {
  text-align: center;
  padding-top: 10px;
}

.sp-profile-pic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--sage));
  margin: 0 auto 10px;
}

.sp-profile-name {
  font-family: 'DM Serif Display', serif;
  color: white;
  font-size: 1rem;
  margin-bottom: 2px;
}

.sp-profile-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.sp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.sp-stat {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 12px 6px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.04);
}

.sp-stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--accent-light);
}

.sp-stat-label {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}

.sp-membership {
  background: linear-gradient(135deg, rgba(196,96,45,0.2), rgba(196,96,45,0.05));
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(196,96,45,0.15);
}

.sp-membership-title {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.sp-membership-plan {
  color: white;
  font-family: 'DM Serif Display', serif;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.sp-membership-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.sp-membership-progress {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
}

/* === PRICING === */
.pricing-section {
  text-align: center;
}

.pricing-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

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

.pricing-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border);
  text-align: left;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
  content: 'Mas Popular';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 4px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-plan {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.pricing-price span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '\2713';
  color: var(--sage-dark);
  font-weight: 700;
  font-size: 0.85rem;
  min-width: 18px;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* === TESTIMONIALS === */
.testimonials-section {
  background: var(--bg-warm);
  padding: 100px 40px;
  max-width: 100%;
}

.testimonials-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
}

.testimonial-avatar.orange {
  background: linear-gradient(135deg, #F7D1BA, var(--accent-light));
}

.testimonial-avatar.warm {
  background: linear-gradient(135deg, var(--bg-warm), #D4C5B5);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* === CTA SECTION === */
.cta-section {
  text-align: center;
  padding: 120px 40px;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 96, 45, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section .section-title {
  max-width: 600px;
  margin: 0 auto 16px;
}

.cta-section .section-subtitle {
  max-width: 480px;
  margin: 0 auto 40px;
}

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

/* === FOOTER === */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.5);
  padding: 60px 40px 40px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 12px;
}

.footer-brand span { color: var(--accent-light); }

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-title {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-light); }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-phones { margin-top: 40px; }
  .features-layout { grid-template-columns: 1fr; }
  .features-preview { position: relative; top: 0; margin-top: 32px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-inner { grid-template-columns: 1fr; text-align: center; }
  .showcase-content .section-subtitle { margin: 0 auto 40px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card:last-child { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  section { padding: 60px 20px; }
  .features-section, .showcase-section, .testimonials-section { padding: 60px 20px; }
  .features-preview-window { display: block; }
  .preview-screens { min-height: 360px; }
  .mock-builder { grid-template-columns: 1fr; }
  .mock-sidebar { display: none; }
  .mock-stats-row { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .showcase-phones { flex-direction: column; align-items: center; }
  .showcase-phone:nth-child(2) { margin-top: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:last-child { display: block; }
  .phone-mockup.back { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
