/* =========================================
   MarktTextPro — Main Stylesheet
   ========================================= */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #1B73F0;
  --indigo:    #151481;
  --orange:    #F94B15;
  --dark:      #0d0d0d;
  --dark2:     #161616;
  --light:     #f7f7f7;
  --white:     #ffffff;
  --gray:      #717171;
  --gray-lt:   #b0b0b0;
  --text:      #2e2e2e;
  --border:    #e2e2e2;
  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 6px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 56px rgba(0,0,0,.16);
  --font-h:    'Poppins', sans-serif;
  --font-b:    'Mulish', sans-serif;
  --trans:     .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); color: var(--text); background: var(--white); line-height: 1.65; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* Containers */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container--sm { max-width: 860px; }
.container--lg { max-width: 1280px; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-h); line-height: 1.25; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { font-size: 1.05rem; color: var(--text); }
.lead { font-size: 1.2rem; color: var(--gray); line-height: 1.7; }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-orange { color: var(--orange); }
.text-blue   { color: var(--blue); }

.highlight-line {
  position: relative; display: inline;
}
.highlight-line::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

/* Spacers */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.section { padding: 80px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p { color: var(--gray-lt); }
.section--indigo { background: var(--indigo); color: var(--white); }
.section--light  { background: var(--light); }

/* Promo bar */
.promo-bar {
  background: var(--indigo);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: .9rem;
  font-family: var(--font-h);
  letter-spacing: .02em;
  position: relative;
  z-index: 100;
}
.promo-bar a { color: var(--orange); font-weight: 700; }
.promo-bar .promo-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--white); cursor: pointer;
  font-size: 1.2rem; line-height: 1;
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-h); font-weight: 700; font-size: 1.25rem;
  color: var(--indigo);
}
.nav__logo svg { width: 38px; height: 38px; }
.nav__menu {
  display: flex; gap: 28px; align-items: center;
}
.nav__menu a {
  font-family: var(--font-h); font-size: .95rem; font-weight: 500;
  color: var(--text); transition: color var(--trans);
}
.nav__menu a:hover, .nav__menu a.active { color: var(--blue); }
.nav__cta {
  background: var(--orange); color: var(--white) !important;
  padding: 10px 22px; border-radius: 8px;
  font-weight: 700; transition: background var(--trans), transform var(--trans);
}
.nav__cta:hover { background: #d93e0d; transform: translateY(-1px); }

.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; transition: var(--trans); }

/* Mobile nav */
@media(max-width: 768px){
  .nav__menu { display: none; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: var(--white);
    padding: 20px 24px 28px; border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.10); gap: 16px; }
  .nav__menu.open { display: flex; }
  .nav__burger { display: block; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 8px; border: none;
  font-family: var(--font-h); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  text-decoration: none;
}
.btn--orange {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 18px rgba(249,75,21,.35);
}
.btn--orange:hover { background: #d93e0d; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,75,21,.45); }
.btn--outline {
  background: transparent; color: var(--indigo);
  border: 2px solid var(--indigo);
}
.btn--outline:hover { background: var(--indigo); color: var(--white); }
.btn--outline-white {
  background: transparent; color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline-white:hover { background: var(--white); color: var(--indigo); }
.btn--lg { padding: 18px 40px; font-size: 1.1rem; }
.btn--sm { padding: 9px 20px; font-size: .9rem; }

/* HERO */
.hero {
  background: linear-gradient(135deg, #0d0d2e 0%, #151481 50%, #0d0d2e 100%);
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../icons/hero-main.webp') center/cover no-repeat;
  opacity: .12;
}
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero__label {
  display: inline-block; background: rgba(249,75,21,.15);
  color: var(--orange); border: 1px solid rgba(249,75,21,.4);
  padding: 5px 14px; border-radius: 20px;
  font-size: .85rem; font-weight: 700; letter-spacing: .05em;
  margin-bottom: 20px; font-family: var(--font-h);
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 span { color: var(--orange); }
.hero .lead { color: rgba(255,255,255,.75); margin-bottom: 36px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__trust {
  margin-top: 40px; display: flex; align-items: center; gap: 16px;
  color: rgba(255,255,255,.6); font-size: .88rem;
}
.hero__trust i { color: #fbbf24; }
.hero__visual { position: relative; }
.hero__mockup {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.hero__mockup img { border-radius: 10px; }
.hero__badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--orange); color: var(--white);
  padding: 12px 20px; border-radius: 12px;
  font-family: var(--font-h); font-weight: 700;
  box-shadow: 0 8px 24px rgba(249,75,21,.4);
}
.hero__badge .num { font-size: 1.8rem; display: block; line-height: 1; }
.hero__badge .sub { font-size: .75rem; opacity: .85; }

/* Press logos */
.press-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 64px; padding-top: 36px; padding-bottom: 16px;
  position: relative; z-index: 2;
}
.press-bar__label { color: rgba(255,255,255,.45); font-size: .8rem; text-align: center; margin-bottom: 18px; letter-spacing: .08em; font-family: var(--font-h); }
.press-bar__logos { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.press-bar__logos span { color: rgba(255,255,255,.35); font-family: var(--font-h); font-size: 1rem; font-weight: 700; letter-spacing: .06em; }

/* Section headers */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header .lead { font-size: 1.1rem; }

/* Problem section */
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.problem__visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.problem__stats { display: flex; gap: 24px; margin-top: 32px; }
.problem__stat {
  flex: 1; background: var(--dark);
  color: var(--white); padding: 22px 20px; border-radius: var(--radius);
  text-align: center;
}
.problem__stat .num { font-size: 2.2rem; font-weight: 800; color: var(--orange); font-family: var(--font-h); }
.problem__stat .lbl { font-size: .8rem; color: var(--gray-lt); margin-top: 4px; }

/* Comparison table */
.compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare__card {
  border-radius: var(--radius-lg); padding: 36px;
}
.compare__card--red { background: #fff5f5; border: 1px solid #fecaca; }
.compare__card--green { background: #f0fdf4; border: 1px solid #86efac; }
.compare__card h3 { margin-bottom: 22px; font-size: 1.1rem; }
.compare__card--red h3 { color: #dc2626; }
.compare__card--green h3 { color: #16a34a; }
.compare__list { display: flex; flex-direction: column; gap: 12px; }
.compare__list li { display: flex; align-items: flex-start; gap: 10px; font-size: .98rem; }
.compare__list li i { margin-top: 2px; font-size: 1rem; }
.compare__card--red .compare__list li i { color: #dc2626; }
.compare__card--green .compare__list li i { color: #16a34a; }

/* How it works */
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 16px; }
.step-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow); transition: transform var(--trans), box-shadow var(--trans);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-card__num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--indigo); color: var(--white);
  font-family: var(--font-h); font-weight: 700; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.step-card p { font-size: .95rem; color: var(--gray); }

/* Feature tabs / cards */
.features__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 8px; }
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  box-shadow: var(--shadow); transition: transform var(--trans), box-shadow var(--trans);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card__icon {
  width: 52px; height: 52px; min-width: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.3rem;
}
.feature-card h4 { margin-bottom: 8px; }
.feature-card p { font-size: .93rem; color: var(--gray); }

/* Pricing */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.price-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 32px;
  text-align: center; position: relative;
  box-shadow: var(--shadow); transition: transform var(--trans);
}
.price-card:hover { transform: translateY(-6px); }
.price-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249,75,21,.12), var(--shadow-lg);
}
.price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-family: var(--font-h); font-size: .78rem; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; letter-spacing: .05em;
}
.price-card__name { font-family: var(--font-h); font-size: 1rem; color: var(--gray); font-weight: 600; margin-bottom: 10px; }
.price-card__price { font-family: var(--font-h); font-size: 3rem; font-weight: 800; color: var(--indigo); line-height: 1; }
.price-card__price sup { font-size: 1.5rem; vertical-align: top; margin-top: 8px; }
.price-card__price sub { font-size: .9rem; color: var(--gray); font-weight: 400; }
.price-card__period { color: var(--gray); font-size: .88rem; margin-bottom: 28px; margin-top: 4px; }
.price-card__list { text-align: left; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.price-card__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.price-card__list li i { color: #16a34a; margin-top: 2px; }

/* Testimonials */
.testimonials { background: var(--dark2); padding: 80px 0; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 30px 26px;
}
.testi-card__stars { color: #fbbf24; margin-bottom: 14px; font-size: .9rem; }
.testi-card__text { color: rgba(255,255,255,.8); font-size: .97rem; line-height: 1.7; margin-bottom: 20px; }
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--indigo); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-h); font-weight: 700;
}
.testi-card__name { font-family: var(--font-h); font-weight: 600; color: var(--white); font-size: .95rem; }
.testi-card__role { color: var(--gray-lt); font-size: .8rem; }

/* FAQ */
.faq__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; align-items: start; }
.faq__aside { background: var(--indigo); color: var(--white); border-radius: var(--radius-lg); padding: 36px; }
.faq__aside h3 { color: var(--white); margin-bottom: 14px; }
.faq__aside p { color: rgba(255,255,255,.75); margin-bottom: 24px; font-size: .95rem; }
.accordion { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-item__btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; font-family: var(--font-h); font-size: 1rem; font-weight: 600;
  text-align: left; color: var(--dark); gap: 12px; transition: background var(--trans);
}
.accordion-item__btn:hover { background: var(--light); }
.accordion-item__btn i { font-size: .85rem; color: var(--gray); transition: transform var(--trans); flex-shrink: 0; }
.accordion-item__btn.open i { transform: rotate(180deg); }
.accordion-item__body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-item__body.open { max-height: 400px; }
.accordion-item__body p { padding: 0 24px 20px; font-size: .97rem; color: var(--gray); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--indigo) 0%, #1B73F0 100%);
  padding: 80px 0; text-align: center; color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer {
  background: var(--dark); color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand .nav__logo { color: var(--white); }
.footer__brand p { font-size: .9rem; max-width: 280px; }
.footer__brand .socials { display: flex; gap: 12px; }
.footer__brand .socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .9rem; transition: background var(--trans), color var(--trans);
}
.footer__brand .socials a:hover { background: var(--blue); color: var(--white); }
.footer__col h4 { color: var(--white); font-family: var(--font-h); font-size: .95rem; font-weight: 700; margin-bottom: 16px; }
.footer__col a { display: block; font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 10px; transition: color var(--trans); }
.footer__col a:hover { color: var(--white); }
.footer__col address { font-style: normal; font-size: .88rem; line-height: 1.8; color: rgba(255,255,255,.6); }
.footer__col address i { margin-right: 8px; color: var(--orange); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .83rem; color: rgba(255,255,255,.4);
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { color: rgba(255,255,255,.4); transition: color var(--trans); }
.footer__bottom-links a:hover { color: rgba(255,255,255,.7); }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #1a1a2e; border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner__inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 220px; font-size: .9rem; color: rgba(255,255,255,.8); }
.cookie-banner__text a { color: var(--blue); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 1rem; color: var(--text); background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,115,240,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: .82rem; color: var(--gray); margin-top: 8px; }
.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px;
  box-shadow: var(--shadow-lg);
}

/* Page hero (service pages) */
.page-hero {
  background: linear-gradient(135deg, #0d0d2e 0%, #151481 100%);
  padding: 72px 0 64px; color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,.7); }

/* Values grid */
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow); transition: transform var(--trans);
}
.value-card:hover { transform: translateY(-6px); }
.value-card__icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.5rem;
  margin: 0 auto 20px;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.value-card p { font-size: .93rem; color: var(--gray); }

/* Team */
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card {
  text-align: center;
}
.team-card__photo {
  width: 100%; aspect-ratio: 1/1; border-radius: var(--radius-lg);
  background: var(--light); overflow: hidden; margin-bottom: 16px;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { margin-bottom: 4px; }
.team-card p { font-size: .88rem; color: var(--gray); }

/* Stat row */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-item .num { font-family: var(--font-h); font-size: 2.8rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-item .lbl { font-size: .9rem; color: var(--gray); margin-top: 6px; }

/* Privacy / Terms text pages */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 14px; }
.prose h3 { font-size: 1.15rem; margin-top: 28px; margin-bottom: 10px; }
.prose p  { margin-bottom: 16px; line-height: 1.75; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose ul li { margin-bottom: 8px; line-height: 1.7; }
.prose a  { color: var(--blue); text-decoration: underline; }

/* Responsive */
@media(max-width: 1024px){
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .problem__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px){
  .section { padding: 56px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .compare__grid { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}
@media(max-width: 480px){
  .problem__stats { flex-direction: column; }
  .hero__actions { flex-direction: column; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
}
