:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e5e7eb;
  --accent: #c69f3c;
  --accent-2: #f59e0b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(14, 116, 144, 0.17), transparent 30%),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.14), transparent 28%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  max-width: none;
  margin: 0;
}

.header,
.card,
.hero,
.footer {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 80px clamp(16px, 5vw, 72px);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1,
h2,
p {
  margin: 0;
}

h3 {
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
}

.nav a.active {
  color: #0f172a;
  border-bottom: 2px solid #c69f3c;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 42px;
  background: linear-gradient(90deg, #eef8f4 0%, #f4f7fb 52%, #edf7f1 100%);
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-copy {
  display: grid;
  align-content: start;
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid #dce6ef;
  border-radius: 999px;
  padding: 8px 14px;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 600;
  background: #ffffff;
}

.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f5f0e6;
  margin-right: 8px;
}

.hero-title {
  margin-top: 22px;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #c69f3c;
}

.hero-title .accent-blue {
  color: #c69f3c;
}

.hero-title .accent-gradient {
  background: linear-gradient(90deg, #c69f3c, #c69f3c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card {
  margin-top: 0;
}

.section-soft {
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.how-section h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #c69f3c;
  margin-bottom: 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.hero-panel {
  background: #ffffff;
  border: 1px solid #dcebf7;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.simulator-header {
  text-align: center;
  padding-bottom: 8px;
}

.simulator-header h3 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  color: #0f172a;
}

.simulator-header p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

.simulator-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.02em;
}

.type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  color: #475569;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.toggle-btn .icon {
  font-size: 1.2rem;
}

.toggle-btn:hover {
  border-color: #c69f3c;
  background: #f1f6ff;
}

.toggle-btn.is-active {
  border-color: #c69f3c;
  background: #e9f0ff;
  color: #c69f3c;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

#simulator-amount,
#simulator-currency {
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#simulator-amount:focus,
#simulator-currency:focus {
  outline: none;
  border-color: #c69f3c;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#simulator-currency {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 36px;
}

.simulator-result {
  background: #f5f0e6;
  border: 1px solid #f5f0e6;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}

.result-label {
  font-size: 0.8rem;
  color: #c69f3c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.result-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

#result-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: #c69f3c;
}

.result-code {
  font-size: 0.95rem;
  font-weight: 600;
  color: #c69f3c;
}

.result-rate {
  font-size: 0.8rem;
  color: #64748b;
}

.result-rate span {
  color: #0f172a;
  font-weight: 600;
}

.simulator-note {
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid #e2e8f0;
  margin: 0;
}

.simulator-note small {
  font-size: 0.75rem;
  color: #94a3b8;
}

.simulator-section {
  background: #f8fbff;
  border: 1px solid #e3eff8;
}

.simulator-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.simulator-intro {
  padding: 6px 0;
}

.simulator-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #0f172a;
  margin-bottom: 12px;
}

.simulator-intro .section-text {
  margin-top: 0;
}

.simulator-panel {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .simulator-container {
    grid-template-columns: 1fr;
  }
}

.hero-panel strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  color: #0f172a;
}

.hero-list,
.highlight-list,
.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-list li,
.highlight-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: #475569;
  line-height: 1.75;
}

.hero-list li::before,
.highlight-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 4px;
  color: #c69f3c;
  font-size: 1.4rem;
  line-height: 1;
}

.step-list p {
  color: #475569;
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 18px;
}

.section-soft {
  background: #f8fbff;
  border: 1px solid #e3eff8;
}

.links-row.cta-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.links-row.cta-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dbe8f5;
  color: #0f172a;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.links-row.cta-links a:hover {
  transform: translateY(-1px);
  border-color: #c69f3c;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
}

.links-row.cta-links a:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .hero-grid,
  .links-row.cta-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-panel {
    padding: 22px;
  }
}

.how-card {
  border: 1px solid #e7edf4;
  border-radius: 24px;
  background: #ffffff;
  padding: 34px 30px;
  text-align: center;
}

.how-icon {
  width: 98px;
  height: 98px;
  border-radius: 999px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  font-size: 2.1rem;
}

.how-icon.blue {
  color: #c69f3c;
  background: #e9f0ff;
}

.how-icon.sky {
  color: #3b82f6;
  background: #e8f3ff;
}

.how-icon.green {
  color: #c69f3c;
  background: #f5f0e6;
}

.how-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #1e293b;
}

.how-card p {
  color: #64748b;
  line-height: 1.65;
  font-size: 1.06rem;
}

.section-market {
  background: #f7fafc;
  border-top: 1px solid var(--line);
}

.section-about {
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.section-about h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
}

.about-intro {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 24px;
}

.about-intro-grid .about-intro {
  text-align: left;
  max-width: none;
  margin-inline: 0;
}

.about-intro.secondary {
  margin-top: 14px;
}

.about-divider {
  border: 0;
  border-top: 1px solid #dbe3ee;
  margin: 24px 0;
}

.about-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-duo article h3 {
  font-size: 1.85rem;
  line-height: 1.1;
  margin-bottom: 8px;
}

.about-duo article p {
  color: #64748b;
  line-height: 1.6;
}

.about-columns {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-columns article {
  background: #f8fafc;
  border: 1px solid #e7edf4;
  border-radius: 16px;
  padding: 16px;
}

.about-columns article h3 {
  font-size: 1.06rem;
  margin-bottom: 10px;
}

.about-columns article p {
  color: #64748b;
  line-height: 1.55;
}

.about-highlight {
  margin-top: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px;
}

.about-highlight h3 {
  margin-bottom: 8px;
}

.about-highlight p {
  color: #64748b;
}

.about-highlight ul {
  margin: 10px 0;
  padding-left: 18px;
  color: #475569;
  line-height: 1.55;
}

.about-highlight li {
  margin-bottom: 6px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  background: #f8fbff;
  border-top: 1px solid var(--line);
}

.story-copy {
  align-self: center;
}

.story-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #0f172a;
}

.story-copy p {
  margin-top: 12px;
  color: #64748b;
  line-height: 1.6;
}

.story-copy .button {
  margin-top: 20px;
}

.story-video iframe {
  width: 100%;
  height: 320px;
  border-radius: 14px;
  border: 1px solid #dbe4ef;
}

.hero-text,
.section-text {
  color: var(--muted);
  margin-top: 22px;
  line-height: 1.55;
  font-size: 1.07rem;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 48px;
}

.hero-trust span {
  color: #4b5563;
  font-weight: 600;
  font-size: 0.98rem;
}

.button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  background: #c69f3c;
  color: white;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(6, 95, 70, 0.22);
}

.button-light {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-panel {
  align-self: center;
  position: relative;
  border-radius: 24px;
  border: 1px solid #d8e3ef;
  background: #ffffff;
  padding: 18px;
  box-shadow:
    0 22px 34px rgba(59, 130, 246, 0.2),
    0 8px 24px rgba(16, 185, 129, 0.15);
}

.hero-money {
  position: absolute;
  right: 34px;
  top: -26px;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1f2937;
  background: #dbeafe;
}

.choice-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #f8fafc;
  text-align: center;
  padding: 16px 10px;
}

.choice.is-active {
  border-color: #f5f0e6;
  background: #f5f0e6;
  box-shadow: inset 0 0 0 1px #f5f0e6;
}

.choice-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
}

.choice h3 {
  font-size: 1.8rem;
  margin: 0;
}

.choice p {
  margin: 6px auto 0;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #64748b;
  padding: 4px 8px;
  background: #eef2f7;
}

.panel-note {
  margin: 14px 0 0;
  color: #94a3b8;
  text-align: center;
  font-size: 0.8rem;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.rate-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}

.rate-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.currency-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.currency-meta img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #dbe3ee;
}

.rate-item h3 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1;
}

.rate-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.currency-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.currency-meta img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #dbe3ee;
}

.rate-item h3 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1;
}

.rate-item p {
  color: var(--muted);
  margin-top: 3px;
  font-size: 0.82rem;
}

.rate-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.rate-values div {
  border: 1px solid #e5ebf3;
  background: #f4f7fb;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}

.rate-values div.buy {
  background: #f5f0e6;
  border-color: #f5f0e6;
}

.rate-values span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.05em;
}

.rate-values strong {
  display: block;
  margin-top: 5px;
  font-size: 1.08rem;
  color: #1f2937;
}

.sparkline {
  width: 100%;
  height: 44px;
  margin-top: 10px;
}

.sparkline polyline {
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sparkline.up polyline {
  stroke: #f5f0e6;
}

.sparkline.down polyline {
  stroke: #ef4444;
}

.delta {
  display: inline-block;
  margin-top: 0;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.delta.up {
  background: #f5f0e6;
  color: #c69f3c;
}

.delta.down {
  background: #fee2e2;
  color: #991b1b;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.steps article {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}

.steps article strong {
  color: var(--accent);
  font-size: 1.25rem;
}

.steps article p {
  margin-top: 8px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.benefits article {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}

.benefits article p {
  margin-top: 8px;
  color: var(--muted);
}

.links-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.links-row a {
  color: #c69f3c;
  font-weight: 600;
  font-size: 0.92rem;
  padding-right: 10px;
  margin-right: 4px;
  border-right: 1px solid #cbd5e1;
}

.links-row a:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

.subpage-hero {
  background: linear-gradient(180deg, #f8fcff, #f1f6fb);
}

.subpage-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.subpage-hero p {
  margin-top: 10px;
  max-width: 860px;
  color: #64748b;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  background: #ffffff;
}

.info-card h3 {
  margin-bottom: 8px;
}

.info-card p {
  color: #64748b;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 30px;
}

.contact-side,
.map-side {
  display: grid;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-form-panel h2 {
  margin-bottom: 12px;
}

.contact-form-panel .section-text {
  margin-bottom: 20px;
}

.map-side iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.contact-map-details strong {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
}

.contact-map-details p {
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.simple-form {
  margin-top: 12px;
  display: grid;
  gap: 14px;
}

.simple-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: #334155;
}

.simple-form input,
.simple-form textarea {
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

iframe {
  width: 100%;
  height: 300px;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-top: 14px;
}

.trust {
  text-align: center;
  margin-top: 0;
  padding: 80px clamp(16px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.feedback-slider {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.slider-viewport {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 14px;
  transition: transform 300ms ease;
}

.feedback-card {
  flex: 0 0 calc((100% - 28px) / 3);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.feedback-card img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid #e2e8f0;
}

.feedback-card .stars {
  margin-top: 8px;
  color: #f59e0b;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
}

.feedback-card p {
  margin-top: 10px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

.feedback-card strong {
  display: block;
  margin-top: 10px;
  color: #1f2937;
}

.feedback-card span {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 0.88rem;
}

.slider-btn {
  border: 1px solid #dbe3ee;
  background: #ffffff;
  color: #334155;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(56, 189, 248, 0.18), transparent 35%),
    radial-gradient(circle at 88% 40%, rgba(34, 197, 94, 0.24), transparent 34%),
    linear-gradient(145deg, #0b1734, #071228);
  border-color: rgba(255, 255, 255, 0.12);
}

.footer p {
  margin-top: 6px;
  color: rgba(226, 232, 240, 0.78);
}

.footer strong,
.footer span {
  color: #ffffff;
}

@media (max-width: 640px) {
  .page {
    width: 100%;
    margin: 0;
  }

  .header,
  .card,
  .hero,
  .footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero,
  .how-cards,
  .rates-grid,
  .steps,
  .about-columns,
  .about-duo,
  .content-grid,
  .contact-grid,
  .story-section,
  .benefits,
  .footer {
    grid-template-columns: 1fr;
  }

  .feedback-slider {
    grid-template-columns: 1fr;
  }

  .feedback-card {
    flex: 0 0 100%;
  }

  .slider-btn {
    justify-self: center;
  }

  .hero {
    gap: 22px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
  }

  .hero-trust {
    gap: 14px;
    margin-top: 26px;
  }

  .choice h3 {
    font-size: 1.35rem;
  }

  .links-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .header,
  .hero-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}




