/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    Roboto, sans-serif;
  line-height: 1.6;
  color: #f5f7fb;
  background: radial-gradient(circle at top left, #273143 0, #05060a 45%, #05060a 100%);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(3, 6, 20, 0.96), rgba(3, 6, 20, 0.75), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(120, 140, 220, 0.8);
  background: rgba(5, 8, 24, 0.9);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e7ecff;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e7ecff;
}

.menu-toggle span::before {
  top: -5px;
}

.menu-toggle span::after {
  top: 5px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #45e6c4, #1169ff 60%, #020712 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.logo-text {
  color: #cdd5f5;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(102, 120, 186, 0.6);
  font-size: 12px;
  color: #9ca7d4;
}

.lang-current {
  font-weight: 600;
  color: #e2e7ff;
}

.lang-link {
  color: #9ca7d4;
  opacity: 0.8;
}

.lang-link:hover {
  opacity: 1;
}

.nav-link {
  color: #9ca7d4;
  padding: 4px 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #45e6c4, #1a73ff);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-primary {
  padding: 8px 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 10% 0, rgba(69, 230, 196, 0.12), transparent 60%);
  border: 1px solid rgba(69, 230, 196, 0.7);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: radial-gradient(circle at top right, rgba(69, 230, 196, 0.06), transparent 55%);
}

.section-cta {
  background: radial-gradient(circle at top, rgba(26, 115, 255, 0.25), rgba(4, 8, 26, 0.98));
}

.section-title {
  font-size: 28px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.section-subtitle {
  margin: 0;
  color: #a1acd9;
  max-width: 640px;
}

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

.section-header-centered {
  text-align: center;
}

.section-header-centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: flex-start;
}

/* Page-specific layouts for internal pages */

/* About technology */
.section-tech {
  background: radial-gradient(circle at 0 0, rgba(69, 230, 196, 0.08), transparent 55%);
}

.section-tech .container {
  max-width: 1040px;
}

.section-tech .card {
  background: linear-gradient(135deg, rgba(5, 9, 28, 0.98), rgba(8, 14, 40, 0.98));
  border-color: rgba(102, 178, 255, 0.8);
}

.section-tech .card + .card {
  margin-top: 18px;
}

.section-tech .card h2 {
  font-size: 18px;
}

/* How it works: vertical step timeline */
.section-how {
  background: radial-gradient(circle at 100% 0, rgba(26, 115, 255, 0.16), transparent 55%);
}

.section-how .container {
  max-width: 960px;
}

.section-how .card {
  position: relative;
}

.section-how ol.cta-list {
  counter-reset: howstep;
  list-style: none;
  padding-left: 0;
}

.section-how ol.cta-list li {
  counter-increment: howstep;
  position: relative;
  padding-left: 34px;
  margin-bottom: 10px;
}

.section-how ol.cta-list li::before {
  content: counter(howstep);
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #45e6c4, #1a73ff);
  color: #020513;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* About company: side-accent cards */
.section-about-page {
  background: radial-gradient(circle at 50% 0, rgba(12, 28, 70, 0.5), transparent 60%);
}

.section-about-page .container {
  max-width: 1040px;
}

.section-about-page .card {
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgba(69, 230, 196, 0.7);
}

.section-about-page .card + .card {
  margin-top: 18px;
}

.section-about-page .card:nth-of-type(2) {
  border-left-color: rgba(26, 115, 255, 0.9);
}

.section-about-page .card:nth-of-type(3) {
  border-left-color: rgba(141, 153, 255, 0.9);
}

/* FAQ: Q&A panel style */
.section-faq-page {
  background: radial-gradient(circle at 50% 0, rgba(26, 115, 255, 0.18), rgba(4, 6, 18, 1));
}

.section-faq-page .container {
  max-width: 1000px;
}

.section-faq-page .card {
  background: rgba(5, 9, 30, 0.98);
  border-radius: 20px;
  border: 1px solid rgba(122, 154, 255, 0.85);
}

.section-faq-page .card + .card {
  margin-top: 14px;
}

/* Hero */
.hero {
  padding-top: 72px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.geo-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #7a84a7;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero-subtitle {
  font-size: 18px;
  color: #c3cdee;
  margin: 0 0 12px;
}

.hero-description {
  color: #9fa9d2;
  margin: 0 0 20px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #808bb0;
}

.hero-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(21, 28, 52, 0.9);
}

.hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(69, 230, 196, 0.08), #060818);
  border-radius: 24px;
  border: 1px solid rgba(120, 140, 220, 0.35);
  padding: 18px 18px 16px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.pill {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(129, 170, 255, 0.5);
  color: #b9c8ff;
}

.pill-ai {
  border-color: rgba(69, 230, 196, 0.7);
}

.pill-status {
  border-color: rgba(26, 115, 255, 0.7);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 14px;
}

.hero-grid-item {
  background: rgba(10, 16, 40, 0.9);
  border-radius: 14px;
  padding: 10px 12px;
}

.hero-grid-item:nth-child(3) {
  grid-column: 1 / -1;
}

.label {
  font-size: 12px;
  color: #8f9acd;
  margin: 0 0 8px;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 44px;
}

.bar {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(to top, #1a3265, #3f7cff);
  opacity: 0.75;
}

.bar-1 {
  height: 36%;
}
.bar-2 {
  height: 72%;
}
.bar-3 {
  height: 52%;
}
.bar-4 {
  height: 84%;
}

.line-chart {
  position: relative;
  height: 44px;
  border-radius: 12px;
  background: radial-gradient(circle at top, rgba(69, 230, 196, 0.12), rgba(10, 16, 40, 0.9));
  overflow: hidden;
}

.line-point {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #45e6c4;
  box-shadow: 0 0 0 6px rgba(69, 230, 196, 0.18);
}

.line-point:nth-child(1) {
  left: 10%;
  bottom: 22%;
}
.line-point:nth-child(2) {
  left: 40%;
  bottom: 46%;
}
.line-point:nth-child(3) {
  left: 68%;
  bottom: 32%;
}
.line-point:nth-child(4) {
  left: 88%;
  bottom: 60%;
}

.risk-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.risk-tag {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(12, 23, 64, 0.9);
  border: 1px solid rgba(106, 134, 210, 0.6);
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-photo-block {
  position: relative;
  flex: 1;
  min-height: 150px;
  border-radius: 22px;
  background-image: linear-gradient(
      135deg,
      rgba(3, 6, 20, 0.6),
      rgba(10, 16, 40, 0.9)
    ),
    url("https://images.pexels.com/photos/3173551/pexels-photo-3173551.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(69, 230, 196, 0.18), transparent 60%);
}

.hero-photo-copy {
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  font-size: 12px;
  color: #e4e9ff;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.7);
}

.hero-photo-copy p {
  margin: 0;
}

.hero-mini-panel {
  border-radius: 18px;
  padding: 14px 14px 12px;
  background: radial-gradient(circle at 0 0, rgba(69, 230, 196, 0.14), rgba(6, 8, 24, 0.98));
  border: 1px solid rgba(120, 140, 220, 0.35);
}

.mini-title {
  margin: 0 0 4px;
  font-size: 13px;
  color: #ced8ff;
}

.mini-text {
  margin: 0;
  font-size: 12px;
  color: #9aa5d4;
}

/* Cards */
.card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: rgba(7, 10, 28, 0.98);
  border-radius: 18px;
  border: 1px solid rgba(61, 80, 142, 0.65);
  padding: 16px 18px 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: #a2add5;
  font-size: 14px;
}

/* Solution */
.solution-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 22px;
}

.solution-text p + p {
  margin-top: 10px;
}

.solution-visual .label {
  margin-bottom: 10px;
}

.analytics-mock {
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(69, 230, 196, 0.08), #050716);
  overflow: hidden;
  border: 1px solid rgba(87, 120, 210, 0.7);
}

.analytics-header {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  background: linear-gradient(to right, #070b1c, #101738);
}

.analytics-header .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #3b4f86;
}

.analytics-body {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr 0.9fr;
  gap: 10px;
  padding: 12px;
}

.analytics-column {
  font-size: 12px;
}

.mini-label {
  margin: 0 0 6px;
  color: #818cc1;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scenario-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(92, 123, 201, 0.7);
}

.badge-neutral {
  border-color: rgba(92, 123, 201, 0.7);
}

.badge-positive {
  border-color: rgba(69, 230, 196, 0.7);
}

.badge-accent {
  border-color: rgba(26, 115, 255, 0.9);
}

.mini-line-chart {
  height: 64px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 0 100%, rgba(69, 230, 196, 0.18), transparent 60%),
    linear-gradient(to top, #050716, #0b1024);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.checklist li::before {
  content: "•";
  margin-right: 5px;
  color: #45e6c4;
}

.solution-caption {
  margin-top: 8px;
  font-size: 11px;
  color: #7f88b4;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  background: rgba(7, 10, 28, 0.96);
  border-radius: 18px;
  border: 1px solid rgba(76, 98, 170, 0.75);
  padding: 16px 18px 14px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.feature-card p {
  margin: 0;
  color: #a7b0d8;
  font-size: 14px;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  background: rgba(7, 9, 28, 0.96);
  border-radius: 18px;
  border: 1px solid rgba(78, 104, 184, 0.8);
  padding: 16px 18px 14px;
}

.audience-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.audience-card p {
  margin: 0;
  color: #a1addb;
  font-size: 14px;
}

/* Advantages */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.adv-card {
  background: rgba(7, 10, 30, 0.98);
  border-radius: 18px;
  border: 1px solid rgba(72, 100, 188, 0.8);
  padding: 16px 18px 14px;
}

.adv-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.adv-card p {
  margin: 0;
  color: #a4afd7;
  font-size: 14px;
}

/* CTA / Form */
.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: flex-start;
}

.cta-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  color: #d1dbff;
}

.cta-list li {
  margin-bottom: 6px;
}

.cta-list li::before {
  content: "— ";
  color: #45e6c4;
}

.cta-form-card {
  background: rgba(5, 9, 28, 0.98);
  border-radius: 18px;
  border: 1px solid rgba(122, 154, 255, 0.8);
  padding: 18px 18px 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-row-inline {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.form-row-inline label {
  min-width: 96px;
}

label {
  font-size: 13px;
  color: #ced7ff;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(100, 124, 196, 0.85);
  background: rgba(5, 9, 28, 0.98);
  color: #f3f6ff;
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  color: #707ba5;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #45e6c4;
  box-shadow: 0 0 0 1px rgba(69, 230, 196, 0.4);
}

.form-row-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
}

.form-row-checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(103, 132, 210, 0.9);
  background: #050818;
  accent-color: #1bcaa4;
}

.form-row-checkbox label {
  font-size: 12px;
  color: #aeb9e8;
}

.form-note {
  margin: 2px 0 6px;
  font-size: 11px;
  color: #8491c6;
}

.form-note a {
  text-decoration: underline;
}

.form-disclaimer {
  margin: 8px 0 0;
  font-size: 11px;
  color: #7e88b7;
}

.btn-full {
  width: 100%;
  margin-top: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  color: #eaf2ff;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #45e6c4, #1a73ff);
  color: #020513;
  font-weight: 600;
  box-shadow: 0 10px 35px rgba(19, 139, 244, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 42px rgba(19, 139, 244, 0.6);
}

.btn-ghost {
  border-color: rgba(130, 145, 202, 0.7);
  color: #c6cff0;
}

.btn-ghost:hover {
  background: rgba(18, 28, 66, 0.9);
}

.btn-small {
  padding: 7px 14px;
  font-size: 13px;
}

/* Footer */
.footer {
  margin-top: auto;
  border-top: 1px solid rgba(72, 88, 146, 0.65);
  background: radial-gradient(circle at top, #141932, #05060c);
  color: #98a4d2;
  font-size: 13px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 0.8fr;
  gap: 24px;
  padding: 22px 20px 14px;
}

.footer-title {
  font-weight: 600;
  color: #c9d4ff;
  margin: 0 0 4px;
}

.footer p {
  margin: 0 0 4px;
}

.footer a {
  color: #c4cff9;
}

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

.footer-disclaimer {
  border-top: 1px solid rgba(70, 84, 142, 0.6);
  padding: 10px 20px 18px;
  font-size: 11px;
  color: #808cbc;
}

.footer-disclaimer p {
  margin: 0;
}

.footer-geo {
  font-size: 12px;
  color: #8b96c8;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  padding: 10px 0 14px;
  background: radial-gradient(circle at top, rgba(8, 18, 48, 0.96), rgba(1, 3, 12, 0.98));
  border-top: 1px solid rgba(72, 96, 172, 0.9);
}

.cookie-banner-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-text {
  margin: 0;
  font-size: 12px;
  color: #c0cbf7;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}

/* Utility */
.text-muted {
  color: #8c96c2;
}

.field-error {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 0 1px rgba(255, 107, 107, 0.5);
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #45e6c4;
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .split {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 64px 0;
  }

  .cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 880px) {
  .header-inner {
    gap: 10px;
  }

  .nav {
    position: absolute;
    inset-inline: 0;
    top: 56px;
    padding: 10px 20px 16px;
    background: radial-gradient(circle at top, rgba(3, 6, 20, 0.98), rgba(3, 6, 20, 0.98));
    border-bottom: 1px solid rgba(61, 80, 142, 0.8);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav.nav-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .card-list,
  .feature-grid,
  .audience-grid,
  .adv-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .analytics-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .cta-inner {
    gap: 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer {
    font-size: 12px;
  }

  .cookie-text {
    font-size: 11px;
  }
}

