/* ============================================================
   creare-pec.it — Global Styles
   ============================================================ */

/* --- Reset & Variables --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green:     #1a5c3a;
  --navy:      #0c1b33;
  --gray-d:    #374151;
  --gray-m:    #6b7280;
  --gray-l:    #e5e7eb;
  --bg:        #f9fafb;
  --orange:    #f59e0b;
  --white:     #ffffff;
  --font:      Inter, sans-serif;
  --radius:    8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --transition: .2s ease;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--gray-d);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--green);
  z-index: 9999;
  transition: width .1s linear;
}

/* --- Topbar --- */
.topbar {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: .55rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.topbar a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.topbar a:hover { opacity: .85; }

/* --- Navbar --- */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-l);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo:hover { opacity: .85; }
.nav-logo svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0 auto;
}
.nav-links a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--gray-d);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--green); }

.nav-cta { margin-left: auto; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: .4rem;
  border-radius: var(--radius);
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-l);
  padding: 1rem 1.5rem;
  gap: .75rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-d);
  padding: .5rem 0;
  border-bottom: 1px solid var(--gray-l);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn-primary { text-align: center; margin-top: .5rem; }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: .9375rem;
  padding: .65rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid var(--green);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary:hover {
  background: #155230;
  border-color: #155230;
  box-shadow: 0 4px 12px rgba(26,92,58,.3);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary--lg {
  font-size: 1.0625rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: transparent;
  color: var(--green);
  font-weight: 600;
  font-size: .9375rem;
  padding: .65rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid var(--green);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: transparent;
  color: var(--gray-m);
  font-weight: 500;
  font-size: .9375rem;
  padding: .65rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid var(--gray-l);
  transition: border-color var(--transition), color var(--transition);
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--gray-m);
  color: var(--gray-d);
}

/* --- Section Layout --- */
.section {
  padding: 5rem 1.5rem;
}
.section--alt {
  background: var(--white);
}
.section--dark {
  background: var(--navy);
  color: var(--white);
}

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

.section-tag {
  display: inline-block;
  background: rgba(26,92,58,.1);
  color: var(--green);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-m);
  max-width: 56ch;
  margin-bottom: 3rem;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #f0fdf4 0%, var(--bg) 60%);
  padding: 4.5rem 1.5rem 5rem;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,92,58,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(26,92,58,.1);
  color: var(--green);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--gray-m);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 50ch;
}

.hero-price-strip {
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 24px;
}

.hero-trust-mini {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}
.hero-trust-mini span {
  font-size: .8125rem;
  color: var(--gray-m);
  font-weight: 500;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
}
.hero-stat span {
  font-size: .8125rem;
  color: var(--gray-m);
}

/* ── Hero Card — nouveau design ─────────────────────────── */
.hero-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  position: relative;
  z-index: 2;
}
.hero-card-title {
  display: none;
}
.hero-picker-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.hero-picker-row input {
  flex: 1;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  color: #111827;
  font-family: 'DM Sans', var(--font);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.hero-picker-row input::placeholder { color: #9ca3af; }
.hero-picker-row input:focus {
  border-color: #22c55e;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(34,197,94,.1);
}
.hero-picker-row select {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 32px 14px 16px;
  font-size: 15px;
  color: #111827;
  font-family: 'DM Sans', var(--font);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .2s, box-shadow .2s;
  flex-shrink: 0;
  position: relative;
}
.hero-picker-row select:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.1);
}
/* Select arrow wrapper */
.hero-select-wrap {
  position: relative;
  flex-shrink: 0;
}
.hero-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #22c55e;
  font-size: 12px;
  pointer-events: none;
}
.hero-domains {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.hero-domain-chip {
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  color: #15803d;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: all .15s;
  font-family: 'DM Sans', var(--font);
}
.hero-domain-chip:hover { background: #bbf7d0; border-color: #86efac; }
.hero-domain-chip.active { background: #bbf7d0; border-color: #22c55e; color: #14532d; }
.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}
.hero-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #374151;
}
.hero-features-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  border: 1px solid #86efac;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #15803d;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 22px;
}
.hero-card-divider {
  border: none;
  border-top: 1px solid #f3f4f6;
  margin-bottom: 20px;
  height: 0;
}
.hero-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
  font-size: 12px;
  color: #9ca3af;
  flex-wrap: wrap;
  text-align: center;
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-l);
  border-bottom: 1px solid var(--gray-l);
  padding: 1.5rem 1.5rem;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-d);
}
.trust-badge-icon {
  width: 32px;
  height: 32px;
  background: var(--bg);
  border: 1px solid var(--gray-l);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.trust-separator {
  width: 1px;
  height: 28px;
  background: var(--gray-l);
}

/* --- Editorial / What is PEC --- */
.editorial {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.editorial-body p {
  margin-bottom: 1rem;
  color: var(--gray-d);
  line-height: 1.75;
}
.editorial-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 .5rem;
}
.editorial-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* --- Steps / HowTo --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-l);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  margin-bottom: 1.1rem;
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}
.step-card p {
  font-size: .875rem;
  color: var(--gray-m);
  line-height: 1.6;
}
.step-time {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(26,92,58,.08);
  padding: .2rem .6rem;
  border-radius: 100px;
  margin-top: .75rem;
}
.step-connector {
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translateY(-50%);
  color: var(--gray-l);
  font-size: 1.25rem;
  z-index: 1;
}
.step-card:last-child .step-connector { display: none; }

/* --- Comparison Table --- */
.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-l);
}
.comparison {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: .9375rem;
}
.comparison thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  padding: 1rem 1.25rem;
  text-align: left;
  white-space: nowrap;
}
.comparison thead th:first-child {
  border-radius: var(--radius-lg) 0 0 0;
}
.comparison thead th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}
.comparison tbody tr {
  border-bottom: 1px solid var(--gray-l);
  transition: background var(--transition);
}
.comparison tbody tr:last-child { border-bottom: none; }
.comparison tbody tr:hover { background: rgba(0,0,0,.02); }
.comparison tbody td {
  padding: 1rem 1.25rem;
  color: var(--gray-d);
  vertical-align: middle;
}
.comparison tbody tr.featured {
  background: linear-gradient(90deg, rgba(26,92,58,.06) 0%, rgba(26,92,58,.02) 100%);
  border-left: 3px solid var(--green);
}
.comparison tbody tr.featured td:first-child { font-weight: 700; color: var(--green); }
.check-yes { color: var(--green); font-weight: 700; font-size: 1.1rem; }
.check-no  { color: #dc2626; }
.check-partial { color: var(--orange); }
.comparison-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 100px;
  margin-left: .4rem;
  vertical-align: middle;
}

/* --- Pricing --- */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--green);
  overflow: hidden;
}
.pricing-header {
  background: var(--green);
  color: var(--white);
  padding: 1.75rem 2rem;
  text-align: center;
}
.pricing-label {
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: .5rem;
}
.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
.pricing-price sup { font-size: 1.5rem; vertical-align: super; }
.pricing-period { font-size: .875rem; opacity: .85; margin-top: .3rem; }
.pricing-body { padding: 2rem; }
.pricing-features {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9375rem;
  color: var(--gray-d);
}
.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-note {
  font-size: .8125rem;
  color: var(--gray-m);
  text-align: center;
  margin-top: 1rem;
}
.pricing-renewal {
  text-align: center;
  font-size: .875rem;
  color: var(--gray-m);
  margin-top: .5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-l);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-l);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: .1em;
}
.testimonial-text {
  font-size: .9375rem;
  color: var(--gray-d);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: .9375rem;
  color: var(--navy);
}
.testimonial-location {
  font-size: .8125rem;
  color: var(--gray-m);
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-l);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(0,0,0,.02); }
.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 2px solid var(--gray-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 1.5rem;
}
.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--gray-d);
  line-height: 1.75;
  font-size: .9375rem;
}
.faq-item.open .faq-answer {
  max-height: 600px;
}

/* --- Blog Crosslinks --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-l);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.blog-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-tag {
  font-size: .75rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .5rem;
}
.blog-card h3 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: .5rem;
  flex: 1;
}
.blog-card-meta {
  font-size: .8125rem;
  color: var(--gray-m);
  margin-top: .75rem;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--green);
  margin-top: .75rem;
}
.blog-card-link:hover { gap: .5rem; }

/* --- Callout Boxes --- */
.callout {
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: .9375rem;
  line-height: 1.65;
  border-left: 4px solid;
}
.callout--green {
  background: rgba(26,92,58,.07);
  border-color: var(--green);
  color: #14422b;
}
.callout--orange {
  background: rgba(245,158,11,.08);
  border-color: var(--orange);
  color: #7c5c0a;
}
.callout--navy {
  background: rgba(12,27,51,.06);
  border-color: var(--navy);
  color: var(--navy);
}
.callout strong { font-weight: 700; }

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}
.footer-description {
  font-size: .875rem;
  line-height: 1.7;
  max-width: 30ch;
}
.footer-col h4 {
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 1.75rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8125rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-green  { color: var(--green); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--gray-m); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================================
   Responsive Breakpoints
   ============================================================ */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .editorial { grid-template-columns: 1fr; gap: 2rem; }
  .step-connector { display: none; }
}

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

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-stats { gap: 1.25rem; }

  .trust-bar-inner { gap: 1rem 1.5rem; }
  .trust-separator { display: none; }

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

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links { justify-content: center; }

  .comparison thead th,
  .comparison tbody td {
    padding: .75rem .875rem;
    font-size: .875rem;
  }

  .section { padding: 3.5rem 1rem; }
}

@media (max-width: 480px) {
  .hero { padding: 2.5rem 1rem 3rem; }
  .hero h1 { font-size: 1.6rem; }
  .hero-card { padding: 1.25rem; }
  .hero-picker-row { flex-direction: row; }
  .hero-domains { gap: .375rem; }
  .hero-domain-chip { font-size: .6875rem; padding: .2rem .5rem; }

  .pricing-price { font-size: 2.5rem; }

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

/* --- Nav Login Button --- */
.btn-outline-nav {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem 1rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-d);
  border: 1.5px solid var(--gray-l);
  text-decoration: none;
  transition: all var(--transition);
  background: var(--white);
  margin-right: .5rem;
}
.btn-outline-nav:hover {
  border-color: var(--gray-d);
  color: var(--gray-d);
  background: var(--bg);
}
.btn-outline-nav svg {
  flex-shrink: 0;
}
