/* AB Solutions — Design System */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Satoshi:wght@400;500;700&display=swap');

:root {
  /* Palette */
  --navy:      #0d1117;
  --navy-2:    #141b26;
  --navy-3:    #1c2639;
  --navy-4:    #243044;
  --gold:      #c9a84c;
  --gold-light:#e2c278;
  --gold-dim:  rgba(201, 168, 76, 0.15);
  --gold-glow: rgba(201, 168, 76, 0.25);
  --slate:     #8895a7;
  --slate-dim: #556070;
  --white:     #f0ece4;
  --white-dim: rgba(240, 236, 228, 0.6);

  /* Semantic */
  --bg:        var(--navy);
  --bg-card:   var(--navy-2);
  --bg-card-2: var(--navy-3);
  --accent:    var(--gold);
  --accent-2:  #3b82f6;

  /* Type */
  --font-display: 'Syne', sans-serif;
  --font-body:    'Satoshi', sans-serif;

  /* Easing */
  --ease: cubic-bezier(0.25, 0, 0.15, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
strong { font-weight: 700; }
em { font-style: italic; color: var(--gold-light); }

/* ===== SHARED UTILITIES ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--gold-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--white-dim);
  border: 1px solid rgba(240, 236, 228, 0.15);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(240, 236, 228, 0.3);
  background: rgba(240, 236, 228, 0.04);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-secondary:hover {
  background: var(--gold-dim);
  transform: translateY(-1px);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 1.5rem;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 236, 228, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.45rem 1.1rem;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9rem 1.5rem 5rem;
  overflow: hidden;
}

/* Subtle noise texture overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 800px;
  text-align: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--gold-dim);
}

.hero-label-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.8rem;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--slate);
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(240, 236, 228, 0.07);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: -0.03em;
  line-height: 1;
}

.trust-label {
  font-size: 0.78rem;
  color: var(--slate);
  letter-spacing: 0.02em;
}

.trust-sep {
  width: 1px;
  height: 40px;
  background: rgba(240, 236, 228, 0.1);
}

/* ===== OFFERS SHARED ===== */
.offer-section {
  padding: 7rem 1.5rem;
}

.offer-1 {
  background: var(--navy-2);
  border-top: 1px solid rgba(240, 236, 228, 0.05);
  border-bottom: 1px solid rgba(240, 236, 228, 0.05);
}

.offer-2 {
  background: var(--navy);
}

.offer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.offer-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.25rem 0.7rem;
  margin-bottom: 2.5rem;
}

.offer-badge-2 {
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold);
}

.offer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.offer-layout-reverse {
  direction: rtl;
}
.offer-layout-reverse > * {
  direction: ltr;
}

.offer-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.offer-desc {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.list-icon {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.22rem;
}

.list-icon-2 {
  color: var(--accent-2);
}

.offer-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.offer-price {
  display: flex;
  flex-direction: column;
}

.price-from {
  font-size: 0.72rem;
  color: var(--slate-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}

/* ===== PIPELINE CARD ===== */
.pipeline-card {
  background: var(--navy-3);
  border: 1px solid rgba(240, 236, 228, 0.07);
  padding: 1.8rem;
  position: relative;
}

.pipeline-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(240, 236, 228, 0.06);
}

.pipeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pipeline-dot.green {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  animation: blink 2s infinite;
}

.pipeline-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.02em;
}

.pipeline-stage {
  display: grid;
  grid-template-columns: 150px 1fr 40px;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.stage-label {
  font-size: 0.8rem;
  color: var(--slate);
}

.stage-bar {
  height: 4px;
  background: rgba(240, 236, 228, 0.07);
  border-radius: 0;
  overflow: hidden;
}

.stage-fill {
  height: 100%;
  background: rgba(240, 236, 228, 0.2);
  border-radius: 0;
  transition: width 0.6s var(--ease);
}
.stage-fill.accent { background: var(--gold); }
.stage-fill.accent2 { background: var(--accent-2); }

.stage-count {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white-dim);
  text-align: right;
}
.stage-count.stage-highlight { color: var(--gold); }

.pipeline-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(240, 236, 228, 0.06);
}

.pfooter-label {
  font-size: 0.72rem;
  color: var(--slate-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pfooter-val {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
}

/* ===== FILE CARD ===== */
.file-card {
  background: var(--navy-3);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 1.8rem;
}

.file-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.file-icon {
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  margin-top: 0.1rem;
}

.file-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.file-meta {
  font-size: 0.75rem;
  color: var(--slate-dim);
  margin-top: 0.25rem;
}

.file-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.ftag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.25rem 0.6rem;
  letter-spacing: 0.02em;
}

.file-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  background: var(--navy-4);
  border: 1px solid rgba(240, 236, 228, 0.04);
}

.fstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.fstat-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: -0.03em;
  line-height: 1;
}

.fstat-label {
  font-size: 0.7rem;
  color: var(--slate-dim);
  text-align: center;
}

.file-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.ffield {
  font-size: 0.72rem;
  color: var(--slate);
  background: rgba(240, 236, 228, 0.04);
  border: 1px solid rgba(240, 236, 228, 0.07);
  padding: 0.2rem 0.6rem;
}

.file-dl-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  transition: all 0.2s;
}
.file-dl-btn:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

/* ===== AVANTAGES ===== */
.avantages {
  padding: 7rem 1.5rem;
  background: var(--navy-2);
  border-top: 1px solid rgba(240, 236, 228, 0.05);
  border-bottom: 1px solid rgba(240, 236, 228, 0.05);
}

.avantages-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.avantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  margin-top: 3.5rem;
  background: rgba(240, 236, 228, 0.05);
}

.av-card {
  background: var(--navy-2);
  padding: 2.5rem 2rem;
  text-align: left;
  transition: background 0.25s;
}

.av-card:hover {
  background: var(--navy-3);
}

.av-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-dim);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.av-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.av-card p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing {
  padding: 7rem 1.5rem;
  background: var(--navy);
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  margin-top: 3.5rem;
  background: rgba(240, 236, 228, 0.05);
}

.pricing-card {
  background: var(--navy-2);
  padding: 2.5rem;
  text-align: left;
}

.pricing-card-alt {
  background: var(--navy-3);
}

.pc-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(240, 236, 228, 0.07);
}

.pc-offer-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pc-offer-tag-2 {
  color: var(--accent-2);
}

.pc-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.pc-from {
  font-size: 0.78rem;
  color: var(--slate-dim);
}

.pc-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pc-period {
  font-size: 1rem;
  color: var(--slate);
}

.pc-subtitle {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.pc-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--white-dim);
}

.pf-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.pf-check-2 {
  color: var(--accent-2);
}

.pc-tiers {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
  border: 1px solid rgba(240, 236, 228, 0.06);
}

.pc-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(240, 236, 228, 0.06);
  gap: 1rem;
}

.pc-tier:last-child {
  border-bottom: none;
}

.pc-tier span:first-child {
  color: var(--slate);
  font-weight: 500;
  flex-shrink: 0;
}

.pc-tier span:last-child {
  color: var(--white-dim);
  text-align: right;
}

.pc-tier strong {
  color: var(--white);
}

.pc-btn {
  width: 100%;
  justify-content: center;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 7rem 1.5rem;
  background: var(--navy-2);
  border-top: 1px solid rgba(240, 236, 228, 0.05);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-title {
  margin-bottom: 1.2rem;
}

.contact-desc {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cbullet {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--white-dim);
}

.cbullet-icon {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-3);
  border: 1px solid rgba(240, 236, 228, 0.1);
  color: var(--white);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23556070'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--navy-3);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  align-self: flex-start;
  margin-top: 0.4rem;
}

.form-legal {
  font-size: 0.72rem;
  color: var(--slate-dim);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3.5rem 1.5rem 2rem;
  background: var(--navy);
  border-top: 1px solid rgba(240, 236, 228, 0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(240, 236, 228, 0.06);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--slate-dim);
  max-width: 280px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-dim);
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--slate);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  color: var(--slate-dim);
}

.footer-legal-sep {
  opacity: 0.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .offer-layout,
  .offer-layout-reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .offer-layout-reverse {
    direction: ltr;
  }

  .avantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }

  .hero {
    min-height: auto;
    padding: 7rem 1.2rem 4rem;
  }

  .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }

  .trust-sep { display: none; }
  .hero-trust { gap: 1.5rem; }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-stage {
    grid-template-columns: 120px 1fr 35px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .file-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .avantages-grid {
    grid-template-columns: 1fr;
  }

  .offer-section { padding: 5rem 1.2rem; }
  .pricing { padding: 5rem 1.2rem; }
  .contact-section { padding: 5rem 1.2rem; }
  .avantages { padding: 5rem 1.2rem; }

  .section-title { font-size: 1.8rem; }
}

/* ===== CONTACT FORM SUCCESS/ERROR ===== */
.contact-success,
.contact-error {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border-radius: 8px;
  margin-top: 16px;
}

.contact-success {
  background: rgba(0, 180, 90, 0.1);
  border: 1px solid rgba(0, 180, 90, 0.3);
}

.contact-success .cs-icon {
  font-size: 20px;
  color: #00b45a;
  flex-shrink: 0;
  line-height: 1.4;
}

.contact-success strong {
  display: block;
  color: #00b45a;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-success p {
  margin: 0;
  color: #a8d4bc;
  font-size: 14px;
  line-height: 1.5;
}

.contact-error {
  background: rgba(220, 80, 60, 0.1);
  border: 1px solid rgba(220, 80, 60, 0.3);
}

.contact-error .ce-icon {
  font-size: 18px;
  color: #dc503c;
  flex-shrink: 0;
  line-height: 1.4;
  font-weight: 700;
}

.contact-error strong {
  display: block;
  color: #dc503c;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-error p {
  margin: 0;
  color: #d4a8a0;
  font-size: 14px;
  line-height: 1.5;
}

/* ===== BUTTON DISABLED STATE ===== */
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
