/* ========== Reset & Variables ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6B73FF;
  --primary-dark: #555BDF;
  --primary-light: #8B91FF;
  --accent: #FF6B8A;
  --accent-light: #FF8FA8;
  --bg: #FAFBFF;
  --bg-dark: #0D0F1C;
  --surface: #FFFFFF;
  --surface-alt: #F3F4FF;
  --text: #1A1D3B;
  --text-secondary: #6B7094;
  --text-light: #9DA2C2;
  --border: #E4E7F5;
  --gradient: linear-gradient(135deg, #6B73FF 0%, #FF6B8A 100%);
  --gradient-soft: linear-gradient(135deg, rgba(107, 115, 255, 0.08) 0%, rgba(255, 107, 138, 0.08) 100%);
  --shadow-sm: 0 1px 3px rgba(13, 15, 28, 0.06);
  --shadow-md: 0 4px 20px rgba(13, 15, 28, 0.08);
  --shadow-lg: 0 12px 40px rgba(13, 15, 28, 0.12);
  --shadow-glow: 0 8px 32px rgba(107, 115, 255, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* ========== Navigation ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 251, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a:not(.btn) {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:not(.btn):hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

/* ========== Language Switcher ========== */
.lang-switcher {
  position: relative;
  margin-left: 8px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px 12px;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: var(--font);
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.lang-btn:hover {
  border-color: var(--primary);
  background: var(--bg);
}

.lang-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.lang-code {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.lang-btn svg {
  opacity: 0.5;
  transition: var(--transition);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 140px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-family: var(--font);
  color: var(--text);
  transition: background 0.15s;
}

.lang-option:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.lang-option:last-child {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.lang-option:hover {
  background: rgba(107, 115, 255, 0.08);
}

.lang-option.active {
  color: var(--primary);
  font-weight: 600;
}

.lang-option span {
  font-size: 1.1rem;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.938rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
  padding: 14px 24px;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(107, 115, 255, 0.35);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--surface-alt);
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

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

/* ========== Gradient Text ========== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== Section Common ========== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: var(--surface-alt);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(107, 115, 255, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 10%, rgba(255, 107, 138, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1.06rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.avatars {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid var(--bg);
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

/* Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.phone-mockup {
  width: 320px;
  background: var(--bg-dark);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-screen {
  background: #1a1d2e;
  border-radius: 26px;
  overflow: hidden;
  padding: 20px 16px 24px;
  min-height: 380px;
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
}

.mock-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6B73FF, #FF6B8A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.mock-name {
  color: #fff;
  font-size: 0.938rem;
  font-weight: 600;
}

.mock-status {
  color: #4ECDC4;
  font-size: 0.75rem;
}

.mock-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 0.813rem;
  line-height: 1.5;
}

.mock-msg-ai {
  background: rgba(107, 115, 255, 0.15);
  color: #C8CBFF;
  border-bottom-left-radius: 6px;
  align-self: flex-start;
}

.mock-msg-user {
  background: var(--primary);
  color: white;
  border-bottom-right-radius: 6px;
  align-self: flex-end;
}

/* ========== Features ========== */
.features {
  padding: 120px 0;
  background: var(--surface);
}

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

.feature-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.938rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== Situations ========== */
.situations {
  padding: 110px 0;
  background: var(--bg);
}

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

.situation-card {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.situation-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(107, 115, 255, 0.35);
}

.situation-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.situation-card p {
  color: var(--text-secondary);
  font-size: 0.938rem;
  line-height: 1.75;
}

/* ========== Resource Guides ========== */
.resource-guides {
  padding: 110px 0;
  background: var(--surface);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.guide-link-card {
  display: block;
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.guide-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(107, 115, 255, 0.38);
  box-shadow: var(--shadow-md);
}

.guide-link-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.guide-link-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.guide-link-card p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ========== SEO Articles ========== */
.article-main {
  background: var(--surface);
}

.article-hero {
  padding: 132px 0 64px;
  background: var(--bg);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--primary-dark);
  font-weight: 600;
}

.article-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 880px;
  font-size: clamp(2.35rem, 4vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: 0;
  margin-bottom: 22px;
}

.article-lead {
  max-width: 760px;
  color: var(--text-secondary);
  font-size: 1.16rem;
  line-height: 1.8;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  padding: 72px 24px 96px;
}

.article-content {
  max-width: 760px;
}

.article-content h2 {
  margin: 46px 0 16px;
  font-size: 1.75rem;
  line-height: 1.25;
}

.article-content h3 {
  margin: 30px 0 10px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.article-content p,
.article-content li {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
}

.article-content p + p {
  margin-top: 14px;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 0 22px;
}

.article-summary,
.article-note,
.article-cta-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.article-summary {
  padding: 22px 24px;
}

.article-summary strong {
  display: block;
  margin-bottom: 8px;
}

.article-note {
  margin: 26px 0;
  padding: 22px 24px;
}

.article-note strong {
  color: var(--text);
}

.article-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
}

.article-cta-card {
  padding: 24px;
}

.article-cta-card h2 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.article-cta-card p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.article-cta-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px 18px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

.article-cta-note {
  margin: 12px 0 0;
  color: var(--text-light);
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: center;
}

.related-guides {
  margin-top: 28px;
}

.related-guides h2 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.related-guides a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--primary-dark);
  font-weight: 600;
  line-height: 1.45;
}

.related-guides a:hover {
  color: var(--accent);
}

/* ========== How It Works ========== */
.how-it-works {
  padding: 120px 0;
  background: var(--bg);
}

.steps {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  padding-top: 4px;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.step-connector {
  width: 2px;
  height: 48px;
  background: var(--border);
  margin-left: 27px;
}

/* ========== Pricing ========== */
.pricing {
  padding: 120px 0;
  background: var(--surface);
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.billing-label {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.billing-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(78, 205, 196, 0.12);
  color: #2BA89C;
  padding: 3px 10px;
  border-radius: 100px;
}

.toggle {
  position: relative;
  width: 52px;
  height: 28px;
  background: var(--border);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.toggle.active {
  background: var(--primary);
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.toggle.active .toggle-thumb {
  left: 27px;
}

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

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}

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

.pricing-card-featured {
  background: var(--bg-dark);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}

.pricing-card-featured:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 20px 60px rgba(13, 15, 28, 0.3);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 32px;
}

.pricing-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.period {
  font-size: 0.938rem;
  color: var(--text-secondary);
}

.pricing-card-featured .period {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pricing-card-featured .pricing-desc {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.938rem;
  color: var(--text-secondary);
}

.pricing-card-featured .pricing-features li {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-features li svg {
  flex-shrink: 0;
  stroke: var(--primary);
}

.pricing-card-featured .pricing-features li svg {
  stroke: var(--primary-light);
}

/* ========== CTA ========== */
.cta {
  padding: 120px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(107, 115, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 107, 138, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ========== Footer ========== */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-brand .logo-text {
  font-size: 1.125rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.footer-link-button {
  align-self: flex-start;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.875rem;
  padding: 0;
  text-align: left;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-link-button:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.813rem;
}

/* ========== Animations ========== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

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

  .pricing-card-featured {
    order: -1;
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .lang-switcher {
    margin-left: 0;
    align-self: flex-start;
  }

  .lang-dropdown {
    left: 0;
    right: auto;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

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

  .situations,
  .resource-guides,
  .features,
  .how-it-works,
  .pricing {
    padding: 84px 0;
  }

  .article-hero {
    padding: 116px 0 48px;
  }

  .article-layout {
    padding: 52px 24px 76px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card-featured {
    transform: none;
    max-width: none;
  }

  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .phone-mockup {
    width: 280px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

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

  .container.article-layout {
    padding: 52px 16px 76px;
  }

  .phone-mockup {
    width: 260px;
  }
}

/* ========== FAQ ========== */
.faq {
  padding: 100px 0;
  background: var(--bg);
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--surface);
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(107, 115, 255, 0.08);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.7;
}
