/* ═══════════════════════════════════════════════════════════
   GST Italia CRM — Stylesheet
   ═══════════════════════════════════════════════════════════ */

:root {
  --primary:       #6366f1;
  --primary-dark:  #4f46e5;
  --primary-light: #818cf8;
  --accent:        #f59e0b;
  --bg-body:       #ffffff;
  --bg-subtle:     #f8fafc;
  --bg-dark:       #0f172a;
  --bg-card:       #ffffff;
  --text-primary:  #0f172a;
  --text-muted:    #64748b;
  --border:        #e2e8f0;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow:        0 4px 24px rgba(15,23,42,.08);
  --shadow-lg:     0 16px 48px rgba(15,23,42,.12);
  --transition:    .2s ease;
  --header-h:      72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--bg-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ── Gradient text ─────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════ BUTTONS ══════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--lg { padding: 16px 32px; font-size: 16px; border-radius: 14px; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(99,102,241,.35); }

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: transparent;
}
.btn--ghost:hover { background: var(--bg-subtle); }

.btn--ghost-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,.4);
}
.btn--ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover { background: var(--primary); color: white; transform: translateY(-1px); }

.btn--white {
  background: white;
  color: var(--primary-dark);
  border-color: white;
}
.btn--white:hover { background: #f0f0ff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ══════════════════════════ SECTION SHARED ═══════════════════ */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(139,92,246,.1));
  color: var(--primary);
  border: 1px solid rgba(99,102,241,.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════ HEADER ═══════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(15,23,42,.06);
}

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.header__brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.header__brand-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--text-primary); background: var(--bg-subtle); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15,23,42,.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav__link {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}
.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* ══════════════════════════ HERO ════════════════════════════ */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 0;
  background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 40%, #312e81 70%, #4c1d95 100%);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(99,102,241,.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(139,92,246,.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: white;
  margin-bottom: 24px;
}

.hero__desc {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn--outline.hero-outline {
  color: white;
  border-color: rgba(255,255,255,.4);
}
.btn--outline.hero-outline:hover { background: rgba(255,255,255,.1); color: white; }

.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 500;
}

/* Dashboard mock */
.hero__visual {
  position: relative;
}

.dashboard-mock {
  background: #1e293b;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  transition: transform .4s ease;
}
.dashboard-mock:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }

.mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mock-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--red { background: #ef4444; }
.dot--yellow { background: #f59e0b; }
.dot--green { background: #22c55e; }
.mock-title { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 500; }

.mock-body { display: flex; height: 320px; }

.mock-sidebar {
  width: 140px;
  background: #0f172a;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,.06);
}
.mock-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  cursor: default;
  transition: all var(--transition);
}
.mock-nav-item--active {
  background: rgba(99,102,241,.15);
  color: #818cf8;
}

.mock-content { flex: 1; padding: 16px; overflow: hidden; }

.mock-kanban { display: flex; gap: 12px; height: 100%; }

.kanban-col { flex: 1; display: flex; flex-direction: column; gap: 8px; }

.kanban-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 2px;
}
.kanban-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.5); }
.kanban-count {
  width: 18px;
  height: 18px;
  background: rgba(99,102,241,.3);
  color: #818cf8;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kanban-card {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 10px;
  position: relative;
}
.kanban-card--highlight { border-color: rgba(99,102,241,.4); background: rgba(99,102,241,.05); }
.card-company { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 4px; }
.card-value { font-size: 10px; color: rgba(255,255,255,.4); }
.card-avatar {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  animation: float 3s ease-in-out infinite;
}
.float-card--1 {
  bottom: -20px;
  left: -40px;
  animation-delay: 0s;
}
.float-card--2 {
  top: 60px;
  right: -30px;
  animation-delay: 1.5s;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-card__icon { font-size: 24px; }
.float-card__text { display: flex; flex-direction: column; }
.float-card__text strong { font-size: 15px; color: var(--text-primary); }
.float-card__text span { font-size: 12px; color: var(--text-muted); }

.hero__wave {
  position: relative;
  margin-bottom: -2px;
  line-height: 0;
}
.hero__wave svg { display: block; width: 100%; }

/* ══════════════════════════ LOGOS BAR ══════════════════════════ */
.logos-bar {
  padding: 40px 0;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}
.logos-bar__label {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: .3px;
}
.logos-bar__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.sector-pill {
  padding: 8px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.sector-pill:hover { border-color: var(--primary); color: var(--primary); background: rgba(99,102,241,.04); }

/* ══════════════════════════ FEATURES ═══════════════════════════ */
.features {
  padding: 100px 0;
  background: var(--bg-body);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.03), rgba(139,92,246,.03));
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(99,102,241,.2); }
.feature-card:hover::before { opacity: 1; }

.feature-card--wide { grid-column: span 2; }
.feature-card--api { display: flex; flex-direction: column; gap: 20px; }
.feature-card__api-content h3 { margin-bottom: 8px; }

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.api-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.api-tag {
  padding: 4px 12px;
  background: rgba(99,102,241,.08);
  color: var(--primary);
  border: 1px solid rgba(99,102,241,.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

/* ══════════════════════════ ABOUT ════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--bg-subtle);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.about__logo-big {
  width: 180px;
  height: 180px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

.about__stats {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.stat { text-align: center; }
.stat__number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.about__content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__services {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

/* ══════════════════════════ PRICING ════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--bg-body);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all .3s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-card--featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, rgba(99,102,241,.03), rgba(139,92,246,.03));
  box-shadow: 0 0 0 4px rgba(99,102,241,.08);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: white;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card__header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.pricing-card__header p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.pricing-card__price {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.price__amount {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.price__period {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
}
.pricing-card__features li.disabled { color: var(--text-muted); text-decoration: line-through; }

/* ══════════════════════════ CTA BANNER ════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), #7c3aed);
  padding: 80px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner__content h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-banner__content p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
}
.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ══════════════════════════ CONTACT ════════════════════════════ */
.contact { padding: 100px 0; background: var(--bg-subtle); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-detail strong { display: block; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.contact-detail span, .contact-detail a { font-size: 15px; color: var(--text-muted); }
.contact-detail a:hover { color: var(--primary); }

/* Contact form */
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-subtle);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(99,102,241,.1); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 10px;
  padding: 16px;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  color: #16a34a;
}

/* ══════════════════════════ FOOTER ════════════════════════════ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.footer__logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.footer__brand div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__brand strong { color: white; font-size: 16px; }
.footer__brand span { font-size: 12px; color: rgba(255,255,255,.4); }

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer__col a, .footer__col span {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer__col a:hover { color: white; }

.footer__bottom {
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom a { color: rgba(255,255,255,.4); }
.footer__bottom a:hover { color: white; }

/* ══════════════════════════ RESPONSIVE ════════════════════════ */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--wide { grid-column: span 2; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__image { display: none; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__actions { display: none; }
  .hamburger { display: flex; }

  .features__grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: span 1; }
  .feature-card--api { flex-direction: column; }

  .hero__inner { padding-bottom: 60px; }
  .hero__cta { flex-direction: column; }
  .hero__trust { flex-direction: column; gap: 12px; }

  .footer__links { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer__links { grid-template-columns: 1fr; }
  .about__stats { gap: 16px; }
}
