/* ==================== Variables ==================== */
:root {
  /* Colors from your app */
  --primary: #E91E63;
  --primary-dark: #C2185B;
  --primary-light: #C4709E;
  --secondary: #9C27B0;
  --secondary-light: #E1BEE7;
  --secondary-dark: #7B1FA2;
  --tertiary: #ffd012;
  --tertiary-light: #fff9c4;
  --tertiary-dark: #c7a500;
  --quaternary: #009688;
  --quaternary-light: #4DB6AC;
  --quaternary-dark: #007B73;
  --accent: #E8B4D0;
  --accent-light: #F5D7E8;
  --silver: #676767;
  --silver-dark: #424242;
  --text: #1A1A1A;
  --text-secondary: #6B7280;
  --text-light: #9CA3AF;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --water: #3B82F6;
  --water-light: #DBEAFE;
  --background: #F5F5F5;
  --card: #FFFFFF;
  --white: #FFFFFF;
  
  /* Spacing */
  --container-max: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition: all 0.3s ease;
}

/* ==================== Reset & Base ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

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

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

ul {
  list-style: none;
}

/* ==================== Container ==================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ==================== Navigation ==================== */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

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

.nav-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
  background-color: var(--primary);
  padding: 3px;
}

.footer-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  background-color: var(--primary);
  padding: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--accent-light);
}

.language-selector {
  display: flex;
  gap: 0.25rem;
  background: var(--background);
  padding: 0.25rem;
  border-radius: var(--radius-sm);
}

.lang-btn {
  padding: 0.375rem 0.75rem;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.lang-btn:hover {
  background: var(--white);
}

.lang-btn.active {
  background: var(--primary);
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==================== Buttons ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

/* ==================== Hero Section ==================== */
.hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

/* Phone Mockup */
.hero-image {
  display: flex;
  justify-content: center;
  animation: fadeInRight 0.8s ease;
}

.phone-mockup {
  width: 260px;
  height: 540px;
  background: #2a2a2a;
  border-radius: 36px;
  padding: 7px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--background);
  border-radius: 32px;
  overflow: hidden;
}

.hero-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 32px;
}

.app-preview {
  width: 100%;
  height: 100%;
  padding: 1rem;
}

.preview-header {
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stat-card {
  height: 80px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.preview-content {
  height: 300px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* ==================== Sections ==================== */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--spacing-sm);
  color: var(--text);
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== Features ==================== */
.features {
  padding: var(--spacing-2xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================== Why Choose Us ==================== */
.why-choose {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, var(--accent-light), var(--white));
}

.why-choose .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.why-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: var(--text);
}

.why-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.why-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-weight: 500;
  color: var(--text);
}

.why-image {
  position: relative;
  width: 320px;
  height: 270px;
  flex-shrink: 0;
}

.floating-card {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
}

.card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  text-align: center;
}

.card-1 {
  width: 140px;
  height: 120px;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.card-2 {
  width: 140px;
  height: 120px;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--quaternary), var(--quaternary-dark));
  animation-delay: 0.75s;
}

.card-3 {
  width: 140px;
  height: 120px;
  bottom: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--tertiary-dark), #a07d00);
  animation-delay: 1.5s;
}

.card-4 {
  width: 140px;
  height: 120px;
  bottom: 10px;
  right: 10px;
  background: linear-gradient(135deg, #6366F1, #4F46E5);
  animation-delay: 2.25s;
}

/* ==================== CTA ==================== */
.cta {
  padding: var(--spacing-2xl) 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
}

.cta p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: var(--spacing-xl);
}

.store-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--white);
  border-radius: var(--radius-md);
  color: var(--white);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

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

.store-btn div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-btn small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.store-btn strong {
  font-size: 1.125rem;
  font-weight: 700;
}

/* ==================== Page Header ==================== */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: var(--spacing-2xl) 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* ==================== Guide Sections ==================== */
.guide-section {
  padding: var(--spacing-2xl) 0;
}

.guide-section.alt-bg {
  background: var(--background);
}

.guide-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-xl);
  color: var(--text);
}

.guide-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

/* 2-column grid for multi-step sections */
.guide-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.guide-steps-grid .guide-step {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-md);
}

.guide-steps-grid .step-number {
  margin-bottom: var(--spacing-sm);
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
}

.guide-steps-grid .step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.guide-steps-grid .step-content p {
  font-size: 1rem;
  margin-bottom: var(--spacing-sm);
}

.guide-steps-grid .screenshot-placeholder {
  max-width: 100%;
  margin: 0;
}

.guide-steps-grid .guide-image {
  max-width: 100%;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.step-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text);
}

.step-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

.screenshot-placeholder {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-md);
  max-width: 320px;
  margin: 1.5rem 0;
}

.guide-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  image-rendering: -webkit-optimize-contrast;
}

.image-caption {
  margin-top: var(--spacing-sm);
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
}

/* ==================== Tips Section ==================== */
.tips-section {
  padding: var(--spacing-2xl) 0;
  background: var(--background);
}

.tips-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.tip-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.tip-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.tip-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text);
}

.tip-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================== Help Section ==================== */
.help-section {
  padding: var(--spacing-2xl) 0;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-light), var(--white));
}

.help-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
}

.help-section p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

/* ==================== Contact Section ==================== */
.contact-section {
  padding: var(--spacing-2xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  color: var(--text);
}

.contact-info > p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.contact-method {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.method-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.contact-method a {
  color: var(--primary);
  font-weight: 500;
}

.contact-method a:hover {
  text-decoration: underline;
}

.contact-method p {
  color: var(--text-secondary);
}

/* Social Links */
.social-links h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text);
}

.social-icons {
  display: flex;
  gap: var(--spacing-md);
}

.social-icons a {
  width: 48px;
  height: 48px;
  background: var(--background);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ==================== Contact Form ==================== */
.contact-form-container {
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form-container h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
  color: var(--text);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

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

.form-group label {
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--text);
}

.form-group input,
.form-group textarea {
  padding: 0.875rem;
  border: 2px solid var(--background);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.form-message {
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  font-weight: 500;
  text-align: center;
  display: none;
}

.form-message.success {
  background: var(--success);
  color: var(--white);
  display: block;
}

.form-message.error {
  background: var(--error);
  color: var(--white);
  display: block;
}

/* ==================== FAQ Section ==================== */
.faq-section {
  padding: var(--spacing-2xl) 0;
  background: var(--background);
}

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--text);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
}

.faq-item {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text);
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================== Footer ==================== */
.footer {
  background: var(--text);
  color: var(--white);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
  color: var(--white);
}

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

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-section h4 {
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
  margin-bottom: var(--spacing-xs);
}

.disclaimer {
  font-size: 0.875rem;
  font-style: italic;
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ==================== Responsive Design ==================== */
@media (max-width: 968px) {
  .hero .container,
  .why-choose .container,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    order: -1;
  }
  
  .phone-mockup {
    width: 250px;
    height: 500px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .guide-step {
    grid-template-columns: 1fr;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    align-items: stretch;
  }
  
  .nav-links.active a {
    padding: var(--spacing-md);
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-grid,
  .tips-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .guide-steps-grid {
    grid-template-columns: 1fr;
  }

  .pricing-features-grid {
    grid-template-columns: 1fr;
  }

  .why-image {
    width: 100%;
    height: 320px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .hero {
    padding: var(--spacing-xl) 0;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .phone-mockup {
    width: 220px;
    height: 440px;
  }
}
/* ==================== Pricing Section ==================== */
.pricing {
  padding: var(--spacing-2xl) 0;
  background: var(--background);
}

.pricing-single-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  position: relative;
}

.pricing-card-featured {
  border-color: var(--primary);
  box-shadow: 0 8px 40px rgba(233, 30, 99, 0.15);
}

.pricing-card-single {
  max-width: 560px;
  width: 100%;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--success);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-trial-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  margin: 0.5rem 0 0.75rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-header p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 1.5rem;
}

.pricing-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ==================== Legal Pages ==================== */
.legal-section {
  padding: var(--spacing-2xl) 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}

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

.legal-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
}

.legal-content ul li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.25rem;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: #fff;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}

.cookie-banner a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-accept-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-accept-btn:hover {
  opacity: 0.9;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
  }
  .cookie-banner-buttons {
    width: 100%;
  }
  .cookie-accept-btn {
    flex: 1;
    text-align: center;
  }
}

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