/* ============================================
   E-Diyetisyen Marketing Website
   Modern, Clean, Professional Design
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #667eea;
  --primary-dark: #5a67d8;
  --primary-light: #a3bffa;
  --secondary: #764ba2;
  --accent: #48bb78;
  --text-dark: #1a202c;
  --text-body: #4a5568;
  --text-light: #718096;
  --text-muted: #a0aec0;
  --bg-white: #ffffff;
  --bg-light: #f7fafc;
  --bg-gray: #edf2f7;
  --bg-dark: #1a202c;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}
h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 60px;
}

.highlight {
  color: var(--primary);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-white {
  background: white;
  color: var(--primary);
  border-color: white;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: white;
  color: var(--primary);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  height: 72px;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
  border-radius: 8px;
}

.nav-logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* ---------- Hero Section ---------- */
.hero {
  padding: 140px 24px 100px;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 40%;
  height: 150%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  color: white;
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.hero-text p {
  font-size: 1.2rem;
  opacity: 0.92;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  display: block;
}

.hero-stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mockup-screen {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--text-dark);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mockup-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.mockup-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.mockup-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.mockup-stat-card {
  background: var(--bg-light);
  padding: 14px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.mockup-stat-card .num {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.mockup-stat-card .label {
  font-size: 0.75rem;
  color: var(--text-light);
}

.mockup-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-gray);
}

.mockup-item:last-child {
  border-bottom: none;
}

.mockup-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.mockup-item-icon.green {
  background: #c6f6d5;
}
.mockup-item-icon.blue {
  background: #bee3f8;
}
.mockup-item-icon.purple {
  background: #e9d8fd;
}

.mockup-item-text h5 {
  font-size: 0.85rem;
  font-weight: 600;
}

.mockup-item-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ---------- Features Section ---------- */
.features {
  padding: 100px 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.feature-icon.blue {
  background: #ebf4ff;
}
.feature-icon.green {
  background: #f0fff4;
}
.feature-icon.purple {
  background: #faf5ff;
}
.feature-icon.orange {
  background: #fffaf0;
}
.feature-icon.pink {
  background: #fff5f7;
}
.feature-icon.teal {
  background: #e6fffa;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- How It Works ---------- */
.how-it-works {
  padding: 100px 24px;
  background: var(--bg-light);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.step {
  text-align: center;
  position: relative;
}

.step::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 40px;
  font-size: 1.5rem;
  color: var(--text-muted);
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ---------- Pricing Section ---------- */
.pricing {
  padding: 100px 24px;
}

.pricing-toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle-wrapper span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
}

.pricing-toggle-wrapper span.active {
  color: var(--text-dark);
}

.toggle-switch {
  width: 56px;
  height: 30px;
  background: var(--border);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-switch.active {
  background: var(--gradient);
}

.toggle-dot {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.yearly-savings {
  background: #f0fff4;
  color: #38a169;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  padding: 6px 24px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  margin: 20px 0 8px;
  transition: var(--transition);
}

.pricing-card .price-period {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-body);
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: var(--text-muted);
}

.pricing-features li.disabled::before {
  content: "✕";
  color: var(--text-muted);
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 100px 24px;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #f6ad55;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  padding: 60px 24px;
  background: var(--bg-white);
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  color: var(--text-light);
  font-size: 1rem;
  margin-top: 4px;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 100px 24px;
  background: var(--gradient);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.344 0L13.858 8.485 15.272 9.9l9.9-9.9h-2.828zM32 0l-3.486 3.485L32 6.97l3.486-3.485L32 0z' fill='rgba(255,255,255,0.04)' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.92;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  color: var(--text-muted);
  padding: 80px 24px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
}

/* ---------- Dietitian Cards ---------- */
.dietitian-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dietitian-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.dietitian-card-header {
  background: var(--gradient);
  padding: 24px;
  color: white;
  display: flex;
  align-items: center;
  gap: 16px;
}

.dietitian-avatar {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.dietitian-name h3 {
  color: white;
  font-size: 1.15rem;
}

.dietitian-name span {
  font-size: 0.85rem;
  opacity: 0.85;
}

.dietitian-card-body {
  padding: 24px;
  flex: 1;
}

.dietitian-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.meta-badge {
  background: var(--bg-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-body);
  font-weight: 500;
}

.dietitian-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.rating-stars {
  color: #f6ad55;
  letter-spacing: 1px;
}

.rating-score {
  font-weight: 700;
  color: var(--text-dark);
}

.rating-count {
  color: var(--text-light);
  font-size: 0.85rem;
}

.dietitian-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.dietitian-stat {
  text-align: center;
  padding: 12px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.dietitian-stat strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
}

.dietitian-stat span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.dietitian-card-footer {
  padding: 0 24px 24px;
  display: flex;
  gap: 12px;
}

/* ---------- Search / Filter ---------- */
.search-hero {
  padding: 140px 24px 60px;
  background: var(--gradient);
  color: white;
  text-align: center;
}

.search-hero h1 {
  color: white;
  margin-bottom: 12px;
}

.search-hero p {
  opacity: 0.9;
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.search-bar {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-full);
  padding: 8px;
  display: flex;
  gap: 8px;
  box-shadow: var(--shadow-xl);
}

.search-bar input {
  flex: 1;
  border: none;
  padding: 14px 24px;
  font-size: 1rem;
  outline: none;
  border-radius: var(--radius-full);
  color: var(--text-dark);
}

.search-bar button {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.search-bar button:hover {
  opacity: 0.9;
}

.filter-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  position: sticky;
  top: 72px;
  z-index: 100;
}

.filter-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-select {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-body);
  background: white;
  cursor: pointer;
  outline: none;
}

.filter-select:focus {
  border-color: var(--primary);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  padding: 40px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
  font-family: inherit;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---------- Page Header ---------- */
.page-header {
  padding: 140px 24px 60px;
  background: var(--bg-light);
  text-align: center;
}

.page-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 12px auto 0;
}

/* ---------- Content Section ---------- */
.content-section {
  padding: 80px 24px;
}

.content-section:nth-child(even) {
  background: var(--bg-light);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse > * {
  direction: ltr;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: var(--bg-white);
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question .arrow {
  transition: transform 0.3s;
  font-size: 1.2rem;
  color: var(--text-light);
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s,
    padding 0.3s;
  color: var(--text-body);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  padding: 0 24px 20px;
  max-height: 300px;
}

/* ---------- Badge / Tag ---------- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-primary {
  background: #ebf4ff;
  color: var(--primary);
}
.badge-green {
  background: #f0fff4;
  color: #38a169;
}
.badge-orange {
  background: #fffaf0;
  color: #dd6b20;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .features-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card .price {
    font-size: 2rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step::after {
    display: none !important;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-grid.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .stats-grid {
    gap: 40px;
  }

  .search-bar {
    flex-direction: column;
    border-radius: var(--radius-lg);
  }

  .search-bar input {
    border-radius: var(--radius-sm);
  }

  .search-bar button {
    border-radius: var(--radius-sm);
  }

  .filter-container {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}
.delay-2 {
  animation-delay: 0.2s;
}
.delay-3 {
  animation-delay: 0.3s;
}
.delay-4 {
  animation-delay: 0.4s;
}
.delay-5 {
  animation-delay: 0.5s;
}
.delay-6 {
  animation-delay: 0.6s;
}

/* ---------- Utilities ---------- */
.text-center {
  text-align: center;
}
.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-40 {
  margin-bottom: 40px;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gap-16 {
  gap: 16px;
}
.w-full {
  width: 100%;
}

/* ============================================
   🚀 STICKY ACTION BAR
   ============================================ */
.sticky-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-action-bar.visible {
  transform: translateY(0);
}

.sticky-action-bar .action-btn {
  flex: 1;
  max-width: 140px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.sticky-action-bar .action-btn.whatsapp {
  background: #25d366;
  color: white;
}

.sticky-action-bar .action-btn.whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

.sticky-action-bar .action-btn.phone {
  background: #667eea;
  color: white;
}

.sticky-action-bar .action-btn.phone:hover {
  background: #5a67d8;
  transform: translateY(-2px);
}

.sticky-action-bar .action-btn.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.sticky-action-bar .action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Desktop: Floating cards in bottom-right */
@media (min-width: 768px) {
  .sticky-action-bar {
    bottom: 24px;
    right: 24px;
    left: auto;
    width: auto;
    flex-direction: column;
    padding: 8px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }

  .sticky-action-bar .action-btn {
    max-width: 180px;
    width: 180px;
    padding: 14px 20px;
  }
}

/* ============================================
   🎯 ROLE SELECTOR MODAL - MODERN DESIGN
   ============================================ */
.role-selector-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 32, 44, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.role-selector-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.role-selector-modal {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 24px;
  max-width: 680px;
  width: 100%;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transform: scale(0.8) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.role-selector-overlay.visible .role-selector-modal {
  transform: scale(1) translateY(0);
}

.role-selector-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.role-selector-modal .close-modal:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  transform: rotate(90deg);
}

.role-selector-modal h2 {
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.role-selector-modal > p {
  font-size: 17px;
  color: var(--text-body);
  margin-bottom: 40px;
  line-height: 1.6;
}

.role-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .role-cards {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.role-card {
  background: white;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.role-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.role-card:hover::before {
  opacity: 1;
}

.role-card:hover {
  border-color: #667eea;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.role-card > * {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.role-card:hover > * {
  color: white !important;
}

.role-card .role-icon {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.role-card:hover .role-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1) rotateY(360deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.role-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
  transition: color 0.3s;
}

.role-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  transition: color 0.3s;
}

/* Mobile optimization */
@media (max-width: 599px) {
  .role-selector-modal {
    padding: 36px 24px;
  }

  .role-card {
    padding: 32px 20px;
  }

  .role-card .role-icon {
    width: 80px;
    height: 80px;
    font-size: 52px;
  }
}

/* ============================================
   ✅ TRUST BADGES
   ============================================ */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  transition: all 0.2s ease;
}

.trust-badge .badge-icon {
  font-size: 18px;
  line-height: 1;
}

.trust-badge:hover {
  border-color: var(--primary);
  background: white;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

/* ============================================
   🍪 COOKIE CONSENT BANNER - GDPR/KVKK
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 3px solid var(--primary);
}

.cookie-banner.visible {
  bottom: 0;
}

.cookie-banner .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 250px;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-actions button {
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-actions button:first-child {
  background: var(--primary);
  color: white;
}

.cookie-actions button:first-child:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(9, 167, 176, 0.4);
}

.cookie-actions button:nth-child(2) {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-actions button:nth-child(2):hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.cookie-actions a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-actions a:hover {
  color: white;
}

@media (max-width: 768px) {
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner p {
    min-width: 100%;
  }

  .cookie-actions {
    justify-content: center;
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
    min-width: 100px;
  }
}
