*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #4F46E5;
  --primary-hover: #4338CA;
  --primary-light: #EEF2FF;
  --secondary: #0EA5E9;
  --accent: #8B5CF6;
  --gradient: linear-gradient(135deg, #4F46E5, #0EA5E9);
  --dark: #0F172A;
  --dark-sec: #1E293B;
  --surface: #F8FAFC;
  --card: #FFFFFF;
  --text: #1E293B;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --success: #10B981;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.08);
  --shadow: 0 4px 12px rgba(15,23,42,.1);
  --shadow-lg: 0 12px 32px rgba(15,23,42,.12);
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --header-h: 64px;
  --footer-h: auto;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .25s;
}

a:hover {
  color: var(--primary-hover);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.25;
}

h1 { font-size: 2.2rem; font-weight: 700; }
h2 { font-size: 1.7rem; font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 500; }

p { margin-bottom: .75rem; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.4rem;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(79,70,229,.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79,70,229,.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover {
  background: var(--primary-light);
  color: var(--primary-hover);
}

.top-bar {
  height: 3px;
  background: var(--gradient);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.site-header {
  position: fixed;
  top: 3px;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226,232,240,.6);
  transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s;
  height: var(--header-h);
}

.site-header.header-hidden {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

.logo i {
  font-size: 1.3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo:hover {
  color: var(--primary);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: .25rem;
}

.nav-list a {
  display: block;
  padding: .4rem .85rem;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 50px;
  transition: all .25s;
}

.nav-list a:hover,
.nav-list a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
}

.header-cta .btn {
  font-size: .78rem;
  padding: .45rem 1rem;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: absolute;
}

.burger span:nth-child(1) { transform: translateY(-7px); }
.burger span:nth-child(2) { transform: translateY(0); }
.burger span:nth-child(3) { transform: translateY(7px); }

.burger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15,23,42,.92);
  backdrop-filter: blur(8px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}

.mobile-nav-list a {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s, transform .4s, color .25s;
}

.mobile-overlay.open .mobile-nav-list a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-overlay.open .mobile-nav-list a:nth-child(1) { transition-delay: .1s; }
.mobile-overlay.open .mobile-nav-list a:nth-child(2) { transition-delay: .18s; }
.mobile-overlay.open .mobile-nav-list a:nth-child(3) { transition-delay: .26s; }
.mobile-overlay.open .mobile-nav-list a:nth-child(4) { transition-delay: .34s; }

.mobile-nav-list a:hover {
  color: var(--secondary);
}

.mobile-cta {
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s .42s, transform .4s .42s;
}

.mobile-overlay.open .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}

main {
  padding-top: calc(var(--header-h) + 3px);
}

.section {
  padding: 3.5rem 0;
}

.section-sm {
  padding: 2.5rem 0;
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-dark .text-muted {
  color: rgba(255,255,255,.65);
}

.section-accent {
  background: var(--primary-light);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 520px;
  margin: .5rem auto 0;
  font-size: .9rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: .25rem .75rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 500;
  font-family: var(--font-head);
  margin-bottom: .6rem;
}

.section-dark .section-badge {
  background: rgba(255,255,255,.1);
  color: var(--secondary);
}

.hero {
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,70,229,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: .75rem;
}

.hero-content h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 1.5rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--primary);
}

.hero-stat span {
  font-size: .75rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: .75rem;
}

.card-icon.icon-indigo {
  background: var(--primary-light);
  color: var(--primary);
}

.card-icon.icon-cyan {
  background: #ECFEFF;
  color: var(--secondary);
}

.card-icon.icon-violet {
  background: #F5F3FF;
  color: var(--accent);
}

.card-icon.icon-emerald {
  background: #ECFDF5;
  color: var(--success);
}

.card h3 {
  margin-bottom: .4rem;
}

.card p {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.price-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.price-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.price-label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--primary);
  background: var(--primary-light);
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

.price-card h3 {
  margin-bottom: .5rem;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .75rem;
}

.price-amount small {
  font-size: .8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.price-features {
  text-align: left;
  margin-bottom: 1.25rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--text-muted);
  padding: .3rem 0;
}

.price-features li i {
  color: var(--success);
  font-size: .7rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto .75rem;
}

.step h3 {
  margin-bottom: .35rem;
}

.step p {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.benefit-item {
  display: flex;
  gap: .75rem;
  padding: 1rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow .3s;
}

.benefit-item:hover {
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.benefit-item h4 {
  margin-bottom: .15rem;
  font-size: .9rem;
}

.benefit-item p {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.review-stars {
  color: #F59E0B;
  font-size: .75rem;
  margin-bottom: .5rem;
}

.review-card blockquote {
  font-size: .85rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: .75rem;
  line-height: 1.5;
}

.review-author {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
}

.review-author span {
  font-size: .8rem;
  font-weight: 500;
}

.cta-section {
  background: var(--gradient);
  padding: 3rem 0;
  text-align: center;
  color: #fff;
  border-radius: var(--radius-lg);
  margin: 0 1rem 2rem;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: .5rem;
}

.cta-section p {
  opacity: .85;
  max-width: 480px;
  margin: 0 auto .75rem;
  font-size: .9rem;
}

.page-hero {
  padding: 3.5rem 0 2rem;
  text-align: center;
  background: var(--primary-light);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79,70,229,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  margin-bottom: .4rem;
}

.page-hero p {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  font-size: .9rem;
}

.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.content-with-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.content-text h2 {
  margin-bottom: .6rem;
}

.content-text p {
  color: var(--text-muted);
  font-size: .88rem;
}

.content-text ul {
  margin: .75rem 0;
}

.content-text ul li {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  font-size: .85rem;
  color: var(--text-muted);
  padding: .25rem 0;
}

.content-text ul li i {
  color: var(--success);
  margin-top: .2rem;
  font-size: .7rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform .3s;
}

.value-card:hover {
  transform: translateY(-3px);
}

.value-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: .6rem;
  display: block;
}

.value-card h3 {
  margin-bottom: .3rem;
}

.value-card p {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: .75rem;
  padding: 1rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .25s;
}

.contact-card:hover {
  transform: translateX(4px);
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: .85rem;
  margin-bottom: .1rem;
}

.contact-card p,
.contact-card a {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-form-wrap {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: .85rem;
}

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  margin-bottom: .25rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .55rem .75rem;
  font-family: var(--font-body);
  font-size: .82rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  margin-bottom: 1rem;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: .15rem;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.form-check label {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.form-check label a {
  color: var(--primary);
  text-decoration: underline;
}

.map-section {
  padding: 0 0 2rem;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
}

.fullpage-message {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
}

.fullpage-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.fullpage-icon.icon-success {
  background: #ECFDF5;
  color: var(--success);
}

.fullpage-icon.icon-error {
  background: #FEF2F2;
  color: #EF4444;
}

.fullpage-message h1 {
  margin-bottom: .4rem;
}

.fullpage-message p {
  color: var(--text-muted);
  max-width: 420px;
  font-size: .9rem;
}

.fullpage-message .btn {
  margin-top: 1rem;
}

.error-code {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .5rem;
}

.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.policy-content h2 {
  font-size: 1.3rem;
  margin: 1.75rem 0 .6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.policy-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.policy-content h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 .4rem;
}

.policy-content p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.policy-content ul {
  margin: .5rem 0 1rem 1.2rem;
  list-style: disc;
}

.policy-content ul li {
  font-size: .85rem;
  color: var(--text-muted);
  padding: .2rem 0;
  line-height: 1.6;
}

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 1.25rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-copy {
  font-size: .72rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.footer-links a {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  transition: color .25s;
}

.footer-links a:hover {
  color: #fff;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark);
  color: #fff;
  z-index: 2000;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.cookie-popup.visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: .78rem;
  margin-bottom: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-inner p a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}

.cookie-actions .btn {
  font-size: .72rem;
  padding: .4rem .9rem;
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.feature-list-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-block {
  padding: 1.25rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.feature-block h3 {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .35rem;
}

.feature-block h3 i {
  color: var(--primary);
  font-size: .9rem;
}

.feature-block p {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.process-timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-item:not(:last-child) .timeline-marker::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + .75rem);
  background: var(--border);
}

.timeline-content h3 {
  margin-bottom: .2rem;
}

.timeline-content p {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.contact-intro i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: .5rem;
  display: block;
}

.contact-intro p {
  font-size: .88rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: 0 auto 1.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .cards-grid,
  .pricing-grid,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-values {
    grid-template-columns: 1fr 1fr;
  }

  .content-with-image {
    grid-template-columns: 1fr;
  }

  .content-with-image.reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-list-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html { font-size: 14px; }

  .main-nav,
  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .cards-grid,
  .pricing-grid,
  .steps-grid,
  .benefits-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.5rem 0;
  }

  .cta-section {
    margin: 0 .5rem 1.5rem;
    padding: 2rem .5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.25rem; }

  .container {
    padding: 0 .75rem;
  }

  .hero {
    padding: 2rem 0 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: .75rem;
    align-items: center;
  }

  .price-card {
    padding: 1.25rem 1rem;
  }

  .error-code {
    font-size: 3.5rem;
  }
}

@media (max-width: 320px) {
  html { font-size: 13px; }

  .container {
    padding: 0 .5rem;
  }

  .btn {
    padding: .5rem 1rem;
    font-size: .78rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}
