/* style.css - Premium Landing Page Stylesheet for TahfidzMU */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #2e7d32;
  --primary-dark: #1b5e20;
  --primary-light: #e8f5e9;
  --accent: #d4af37; /* Gold */
  --bg-cream: #fdfbf7;
  --bg-cream-dark: #f5f0e1;
  --text-dark: #121e15;
  --text-light: #4c5d50;
  --white: #ffffff;
  --shadow-sm: 0 4px 8px rgba(0, 0, 0, 0.01), 0 1px 2px rgba(46, 125, 50, 0.02);
  --shadow-md: 0 12px 30px rgba(46, 125, 50, 0.05);
  --shadow-lg: 0 20px 50px rgba(18, 30, 21, 0.08);
  --border-color: rgba(46, 125, 50, 0.08);
  --border-glow: rgba(46, 125, 50, 0.15);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

/* Common Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* Header & Navigation */
header {
  background-color: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  transition: var(--transition);
}

.logo-text {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  font-size: 24px;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(46, 125, 50, 0.25);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
}

/* Hero Section */
.hero {
  padding-top: 180px;
  padding-bottom: 120px;
  background: radial-gradient(circle at 80% 20%, var(--primary-light) 0%, transparent 55%),
              radial-gradient(circle at 10% 85%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(46, 125, 50, 0.15);
}

.hero-tag span {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero h1 {
  font-size: 54px;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-img-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-img-container::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glow-move 8s ease-in-out infinite alternate;
}

@keyframes glow-move {
  0% { transform: translate(-45%, -55%) scale(0.95); }
  100% { transform: translate(-55%, -45%) scale(1.05); }
}

/* Feature Graphic Banner Showcase Mockup */
.feature-banner-mockup {
  width: 100%;
  max-width: 580px;
  border-radius: 20px;
  background-color: #101712;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-banner-mockup:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(46, 125, 50, 0.35);
}

.banner-screen {
  width: 100%;
  aspect-ratio: 1024 / 500;
  overflow: hidden;
  position: relative;
  background: #0d281e;
}

.banner-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Smartphone Mockup Frame */
.phone-mockup {
  width: 300px;
  height: 600px;
  border: 14px solid #1a231d;
  border-radius: 44px;
  background-color: #101712;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  padding: 8px;
}

.phone-notch {
  width: 120px;
  height: 20px;
  background-color: #1a231d;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  flex-direction: column;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.phone-screen-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.phone-screen-fallback {
  width: 100%;
  height: 100%;
  padding: 30px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Upload overlay badge on mockup frame */
.mockup-upload-overlay {
  position: absolute;
  top: 24px;
  right: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.phone-mockup:hover .mockup-upload-overlay,
.browser-mockup:hover .mockup-upload-overlay {
  opacity: 1;
}

.btn-upload-overlay {
  background: rgba(16, 23, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.35);
  transition: all 0.2s ease;
}

.btn-upload-overlay:hover {
  background: var(--primary);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.5);
}

.btn-reset-overlay {
  background: rgba(220, 38, 38, 0.85);
  backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  padding: 0;
  font-size: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.2s ease;
}

.btn-reset-overlay:hover {
  background: #b91c1c;
  transform: scale(1.1);
}

.phone-screen::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  top: -50px;
  right: -50px;
}

.phone-header {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.phone-subtitle {
  font-size: 11px;
  opacity: 0.8;
  margin-bottom: 30px;
}

.phone-mock-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-mock-row {
  height: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  width: 80%;
}

.phone-mock-row.short {
  width: 40%;
}

.phone-mock-row.full {
  width: 100%;
}

.phone-mock-row.gold {
  background-color: var(--accent);
  width: 60%;
}

/* Features Section */
.features-section {
  background-color: var(--bg-cream-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 40px;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.section-header h2 span {
  color: var(--primary);
}

.section-header p {
  color: var(--text-light);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.feature-card {
  background-color: var(--white);
  padding: 32px 28px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-glow);
}

.feature-card-img-container {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  background: var(--bg-cream-dark);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-card-img {
  transform: scale(1.04);
}

.feature-icon-wrapper {
  background-color: var(--primary-light);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  box-shadow: inset 0 2px 4px rgba(46, 125, 50, 0.05);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--text-dark);
  font-weight: 800;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Interactive Roles Showcase */
.roles-showcase {
  background-color: var(--white);
}

.roles-showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.tab-btn {
  background: var(--bg-cream);
  color: var(--text-light);
  border: 1px solid var(--border-color);
  padding: 12px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--primary);
  background-color: var(--primary-light);
}

.tab-btn.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: transparent;
  box-shadow: 0 6px 15px rgba(46, 125, 50, 0.15);
}

.tab-content-panel {
  display: none;
}

.tab-content-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  animation: fade-in 0.5s ease;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.role-content h3 {
  font-size: 32px;
  color: var(--primary-dark);
  margin-bottom: 20px;
  font-weight: 900;
}

.role-content p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 28px;
}

.role-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.role-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.role-features li i {
  color: var(--primary);
  font-size: 16px;
  background-color: var(--primary-light);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.role-preview-mockup {
  background-color: var(--bg-cream-dark);
  border-radius: 28px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  border: 1px solid var(--border-color);
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.02);
}

/* Browser Preview Mockup */
.browser-mockup {
  width: 100%;
  max-width: 500px;
  height: 300px;
  border-radius: 16px;
  background-color: #1a202c;
  border: 4px solid #2d3748;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.browser-header {
  height: 28px;
  background-color: #2d3748;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
  position: relative;
  z-index: 10;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.browser-dot.red { background-color: #fc8181; }
.browser-dot.yellow { background-color: #ecc94b; }
.browser-dot.green { background-color: #68d391; }

.browser-body {
  flex: 1;
  padding: 20px;
  background: linear-gradient(135deg, #1a202c 0%, #0f172a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.browser-screen-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  z-index: 5;
}
  background-color: #f7fafc;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.browser-body-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.browser-body-card {
  width: 100%;
  height: 100%;
  border: 1px dashed #cbd5e0;
  border-radius: 10px;
  background-color: var(--white);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.browser-row {
  height: 10px;
  background-color: #edf2f7;
  border-radius: 4px;
}

/* Pricing Section */
.pricing-section {
  background-color: var(--bg-cream-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--white);
  padding: 50px 40px;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid transparent;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border-color: var(--primary);
  position: relative;
}

.pricing-card.popular::before {
  content: 'Paling Laris';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
}

.pricing-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 800;
}

.pricing-header p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pricing-price {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 36px;
}

.pricing-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 44px;
  border-top: 1px solid var(--border-color);
  padding-top: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
}

.pricing-features li i {
  color: var(--primary);
  font-size: 14px;
}

/* FAQ Section */
.faq-section {
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background-color: var(--bg-cream);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 700;
}

.faq-icon {
  font-size: 16px;
  color: var(--primary);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 30px 24px 30px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust as needed */
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 120px 0;
}

.cta-section h2 {
  font-size: 44px;
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 18px;
  opacity: 0.95;
  max-width: 640px;
  margin: 0 auto 48px auto;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background-color: var(--bg-cream);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.btn-white-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background-color: transparent;
}

.btn-white-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

/* Footer */
footer {
  background-color: #0c140e;
  color: #8da493;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(46, 125, 50, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h4 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 360px;
}

.footer-links h5 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: #8da493;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-dev {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-dev-logo {
  height: 24px;
  object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-grid, .tab-content-panel.active {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions, .cta-actions {
    justify-content: center;
  }
  .features-grid, .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pricing-card.popular {
    transform: none;
  }
  .role-preview-mockup {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  .nav-menu {
    display: none; /* Mobile navigation toggle logic handles this */
  }
  .mobile-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 38px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .roles-showcase-tabs {
    flex-wrap: wrap;
  }
}
