/* Milan Video Chat - Main Stylesheet */
/* Modern, clean design with conversion focus */

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #f1f5f9;
  --text: #1e293b;
  --text-light: #64748b;
  --background: #ffffff;
  --background-alt: #f8fafc;
  --border: #e2e8f0;
  --success: #10b981;
  --shadow: rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

.text-center {
  text-align: center;
  margin: 2rem 0;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 700;
}

.logo:hover {
  color: var(--primary);
}

.logo svg {
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
}

/* Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-primary {
  padding: 16px 40px;
  font-size: 1.125rem;
}

.cta-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.cta-secondary:hover {
  background: var(--secondary);
  color: var(--primary-dark);
}

.cta-large {
  padding: 18px 48px;
  font-size: 1.125rem;
}

.cta-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  padding: 16px 32px;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

/* Main content */
.main {
  min-height: 60vh;
}

/* Page Hero */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--secondary) 0%, #fff 100%);
}

.page-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.page-hero .lead {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
}

/* Content blocks */
.content-block {
  margin-bottom: 3rem;
}

.content-block h2 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.content-block h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.content-block ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-block li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.content-block a {
  color: var(--primary);
  text-decoration: underline;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #fff 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  /* Wrapper for hero content */
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  margin: 2rem 0;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image svg {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(99, 102, 241, 0.2));
}

/* Features Section */
.features {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.feature-card svg {
  margin-bottom: 1rem;
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

/* How It Works */
.how-it-works {
  padding: 5rem 0;
  background: var(--secondary);
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.step {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  max-width: 200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.875rem;
}

.step-arrow {
  font-size: 2rem;
  color: var(--primary);
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
}

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

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

.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar svg {
  width: 24px;
  height: 24px;
  color: var(--text-light);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--text);
}

.author-location {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

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

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-section .cta-btn {
  background: white;
  color: var(--primary);
}

.cta-section .cta-btn:hover {
  background: var(--secondary);
}

/* FAQ Preview */
.faq-preview {
  padding: 5rem 0;
  background: var(--secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 2rem;
}

.faq-item {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.faq-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* Footer */
.footer {
  background: var(--text);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

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

.footer-column h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.375rem 0;
  font-size: 0.875rem;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Blog */
.blog-content {
  padding: 3rem 0 5rem;
}

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

.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

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

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.blog-content h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-content h2 a {
  color: var(--text);
}

.blog-content h2 a:hover {
  color: var(--primary);
}

.blog-content p {
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.blog-meta {
  font-size: 0.8125rem;
  color: var(--text-light);
  display: flex;
  gap: 0.5rem;
}

/* Article Page */
.blog-post {
  padding: 3rem 0 5rem;
}

.post-header {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.post-meta {
  color: var(--text-light);
  font-size: 0.9375rem;
}

.post-content {
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.post-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content ul, .post-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 720px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.post-related {
  text-align: right;
}

/* About/Pages */
.page-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #fff 100%);
}

.about-content,
.contact-content,
.policy-content,
.faq-content,
.steps-detailed,
.safety-content,
.features-detailed,
.stories-content,
.tips-content,
.guidelines-content {
  padding: 3rem 0 5rem;
}

.values-grid,
.features-list,
.tips-grid,
.ideas-grid,
.flags-grid,
.prohibited-grid,
.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.values-grid {
  grid-template-columns: repeat(4, 1fr);
}

.features-list {
  grid-template-columns: repeat(3, 1fr);
}

.value-card,
.feature-item,
.tip-item,
.idea-card,
.flags-column,
.prohibited-item,
.mistake-item {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.value-card h3,
.idea-card h3,
.tip-item h3,
.mistake-item h3,
.prohibited-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

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

.flags-column {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
}

.flags-column.red h3 {
  color: #dc2626;
}

.flags-column.green h3 {
  color: var(--success);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form-container {
  /* Container for contact form */
}

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.info-card svg {
  color: var(--primary);
  flex-shrink: 0;
}

.info-card h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.info-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin: 0;
}

/* Steps */
.step-full {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.step-visual {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content {
  flex: 1;
}

/* Features detailed */
.feature-section {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: flex-start;
}

.feature-icon-large {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text {
  flex: 1;
}

.feature-text ul {
  margin-top: 1rem;
  margin-bottom: 0;
}

.feature-text li {
  margin-bottom: 0.5rem;
}

/* Features summary (used in How It Works page) */
.features-summary {
  padding: 5rem 0;
  background: var(--secondary);
}

.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

/* Stories */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.story-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.story-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.story-avatar {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-avatar svg {
  width: 30px;
  height: 30px;
  color: var(--text-light);
}

.story-author h3 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.story-location {
  font-size: 0.875rem;
  color: var(--text-light);
}

.story-type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 0.25rem;
}

.story-content p {
  font-style: italic;
  line-height: 1.7;
}

/* Safety */
.alert-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fef3c7;
  border: 1px solid #fbbf24;
  color: #92400e;
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.alert-box svg {
  flex-shrink: 0;
  color: #d97706;
}

.tip-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.tip-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

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

.red-flag-item {
  display: flex;
  gap: 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 1.5rem;
  border-radius: var(--radius);
}

.red-flag-item svg {
  color: #dc2626;
  flex-shrink: 0;
}

.red-flag-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #991b1b;
}

/* Guidelines */
.values-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.value-badge {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.value-badge strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.value-badge span {
  font-size: 0.875rem;
  opacity: 0.9;
}

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

/* Blog post */
.post-cta {
  text-align: center;
  margin: 2.5rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, var(--secondary) 0%, #fff 100%);
  border-radius: var(--radius);
}

.post-cta .cta-btn {
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.post-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Tip Highlight (used in Dating Tips) */
.tip-highlight {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.tip-highlight h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  color: var(--text);
}

/* Mistakes Grid (used in Video Chat Tips) */
.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.mistake-item {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.mistake-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--text);
}

/* Help Cards (used in Contact page) */
.help-section {
  padding: 5rem 0;
  background: var(--secondary);
}

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

.help-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
}

.help-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
  color: var(--text);
}

.help-card svg {
  color: var(--primary);
  margin-bottom: 1rem;
}

.help-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.help-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-grid,
  .testimonials-grid,
  .blog-grid,
  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

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

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .features-grid,
  .testimonials-grid,
  .blog-grid,
  .features-list,
  .stories-grid,
  .red-flags-grid,
  .prohibited-grid,
  .values-grid,
  .flags-grid,
  .tips-grid,
  .ideas-grid,
  .mistakes-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .contact-grid,
  .step-full,
  .feature-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-visual {
    width: 80px;
    height: 80px;
  }

  .step-visual svg {
    width: 40px;
    height: 40px;
  }

  .cta-floating {
    bottom: 16px;
    right: 16px;
    padding: 12px 24px;
    font-size: 0.875rem;
  }

  .post-navigation {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}
