/* ================================================================
   ECOMAT Hosting — Light Professional Theme
   Style: Clean B2B · Swiss design sensibility · Green accents
   ================================================================ */

:root {
  --green:        #2d6e3b;
  --green-mid:    #3d8c4f;
  --green-light:  #e8f4eb;
  --green-border: #c3dfc9;
  --text:         #111827;
  --text-muted:   #6b7280;
  --text-dim:     #9ca3af;
  --bg:           #ffffff;
  --bg-tinted:    #f7faf8;
  --border:       #e5e7eb;
  --border-strong:#d1d5db;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow:       0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.06);
  --radius:       0.75rem;
  --radius-lg:    1.125rem;
  --transition:   180ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; line-height: 1.6; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
::selection { background: var(--green-light); color: var(--green); }
* { scrollbar-width: thin; scrollbar-color: var(--border-strong) transparent; }

/* ── Layout ── */
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 0; }
.section-tinted { background: var(--bg-tinted); }

/* ── Section header ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-kicker {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.75rem;
}
.kicker-light { color: rgba(255,255,255,0.7); }
.section-header h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.15;
  color: var(--text); margin-bottom: 0.75rem;
}
.section-header h2 em { font-style: normal; color: var(--green); }
.section-header p {
  color: var(--text-muted); font-size: 1rem;
  max-width: 34rem; margin: 0 auto; line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.625rem 1.25rem; border-radius: var(--radius);
  font-family: inherit; font-size: 0.875rem; font-weight: 600;
  cursor: pointer; border: none; transition: all var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--green); color: #fff;
  box-shadow: 0 2px 8px rgba(45,110,59,0.25);
}
.btn-primary:hover { background: var(--green-mid); box-shadow: 0 4px 16px rgba(45,110,59,0.30); transform: translateY(-1px); }
.btn-outline-green {
  background: transparent; color: var(--green);
  border: 1.5px solid var(--green-border);
}
.btn-outline-green:hover { background: var(--green-light); border-color: var(--green); transform: translateY(-1px); }
.btn-white  { background: #fff; color: var(--text); box-shadow: var(--shadow); }
.btn-white:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }
.btn-sm  { padding: 0.45rem 1rem; font-size: 0.8rem; }
.btn-lg  { padding: 0.9rem 2rem; font-size: 0.95rem; border-radius: 0.875rem; }

/* ── Swiss flag ── */
.ch-flag {
  display: inline-block; border-radius: 3px;
  background: #d52b1e; position: relative; flex-shrink: 0;
  width: 18px; height: 18px;
}
.ch-flag::before, .ch-flag::after { content: ''; position: absolute; background: #fff; }
.ch-flag::before { width: 11px; height: 3.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.ch-flag::after  { width: 3.5px; height: 11px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.ch-flag-sm  { width: 14px; height: 14px; }
.ch-flag-sm::before  { width: 9px; height: 2.5px; }
.ch-flag-sm::after   { width: 2.5px; height: 9px; }
.ch-flag-xl  { width: 80px; height: 80px; border-radius: 10px; }
.ch-flag-xl::before  { width: 50px; height: 14px; }
.ch-flag-xl::after   { width: 14px; height: 50px; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 72rem; margin: 0 auto; padding: 0.875rem 1.5rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-brand img { height: 44px; width: auto; filter: none; transition: filter var(--transition); }
.nav-brand-sub {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--text-muted); text-transform: uppercase;
  border-left: 2px solid var(--border-strong); padding-left: 0.75rem; margin-left: 0.1rem;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a:not(.btn) { color: var(--text-muted); font-size: 0.875rem; font-weight: 500; transition: color var(--transition); }
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 0.25rem; transition: color var(--transition); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative; height: 92vh; min-height: 560px; max-height: 800px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.72) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding-bottom: 5rem; padding-top: 2rem;
  text-align: center;
}
.hero-logo {
  display: block;
  height: 80px; width: auto;
  margin: 0 auto 1.75rem;
  filter: brightness(0) invert(1) drop-shadow(0 2px 14px rgba(0,0,0,0.35));
}
.hero-actions { justify-content: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.85rem; border-radius: 9999px;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35);
  color: #fff; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.02em; margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; color: #fff; margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic; color: #fff;
  text-decoration: none;
  text-decoration-color: rgba(255,255,255,0.4);
  text-underline-offset: 8px; text-decoration-thickness: 2px;
}
.hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.85);
  margin: 0 auto 2rem; line-height: 1.7; max-width: 32rem;
}
.hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }

/* ================================================================
   TRUST STRIP
   ================================================================ */
.trust-strip {
  border-bottom: 1px solid var(--border);
  background: #fff; padding: 1.1rem 0;
}
.trust-grid {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 2rem;
  font-size: 0.83rem; font-weight: 500; color: var(--text-muted);
}
.trust-item svg { color: var(--green); flex-shrink: 0; }
.trust-divider { width: 1px; height: 20px; background: var(--border); }

/* ================================================================
   FEATURES
   ================================================================ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.feature-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-lg); border-color: var(--green-border);
  transform: translateY(-2px);
}
.feature-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.625rem;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-card h3 { font-size: 0.95rem; font-weight: 650; margin-bottom: 0.4rem; color: var(--text); }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ================================================================
   PLANS
   ================================================================ */
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 60rem; margin: 0 auto;
  align-items: start;
}
.plan-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  position: relative; display: flex; flex-direction: column;
  gap: 0; transition: box-shadow var(--transition);
}
.plan-card:hover { box-shadow: var(--shadow-lg); }
.plan-card--featured {
  border-color: var(--green); border-width: 2px;
  box-shadow: 0 0 0 4px var(--green-light), var(--shadow);
  transform: scale(1.03);
}
.plan-badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.28rem 1rem; border-radius: 9999px; white-space: nowrap;
}
.plan-head h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.plan-head p  { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; }
.plan-price {
  font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em;
  color: var(--text); margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.plan-price span { font-size: 0.875rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0; }
.plan-features {
  flex: 1; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem;
}
.plan-features li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.875rem; color: var(--text-muted);
}
.plan-features li::before {
  content: '';
  display: inline-block; width: 15px; height: 15px; flex-shrink: 0;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='9 12 11 14 15 10'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='9 12 11 14 15 10'/%3E%3C/svg%3E") center/contain no-repeat;
}
.plan-card .btn { width: 100%; justify-content: center; }

/* ================================================================
   SOVEREIGNTY
   ================================================================ */
.section-green {
  background: var(--green);
  padding: 5.5rem 0;
}
.sovereignty-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center;
}
.sovereignty-text .section-kicker { color: rgba(255,255,255,0.6); }
.sovereignty-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.03em; color: #fff;
  margin-bottom: 1rem;
}
.sovereignty-text h2 em { font-style: normal; color: rgba(255,255,255,0.7); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); text-underline-offset: 6px; }
.sovereignty-text > p {
  color: rgba(255,255,255,0.8); font-size: 0.95rem;
  line-height: 1.75; max-width: 38rem; margin-bottom: 2.5rem;
}
.sov-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.sov-stat strong { display: block; font-size: 1.1rem; font-weight: 700; color: #fff; }
.sov-stat span   { font-size: 0.78rem; color: rgba(255,255,255,0.6); letter-spacing: 0.01em; }

.sovereignty-visual { display: flex; align-items: center; justify-content: center; }
.ch-emblem {
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-card {
  max-width: 54rem; margin: 0 auto;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1.5fr; overflow: hidden;
}
.contact-info {
  background: var(--bg-tinted); padding: 2.5rem;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.contact-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.contact-info > p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.5rem; }
.contact-detail {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.875rem; color: var(--text-muted);
  transition: color var(--transition);
}
.contact-detail:not(.contact-detail--plain):hover { color: var(--green); }
.contact-detail svg { color: var(--green); flex-shrink: 0; }
.contact-logo { margin-top: auto; padding-top: 1rem; }

.contact-form { padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 0.7rem 0.9rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-family: inherit; font-size: 0.875rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-dim); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-light);
}
.contact-form textarea { resize: vertical; min-height: 5rem; }
.contact-form .btn { align-self: flex-start; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { border-top: 1px solid var(--border); padding: 1.75rem 0; background: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-brand img { height: 24px; width: auto; }
.footer-brand-sub { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.12em; color: var(--text-dim); text-transform: uppercase; border-left: 1px solid var(--border-strong); padding-left: 0.4rem; }
.footer-copy { font-size: 0.78rem; color: var(--text-dim); }
.footer-ch { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--text-muted); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 26rem; }
  .plan-card--featured { transform: none; }
  .sovereignty-inner { grid-template-columns: 1fr; }
  .sovereignty-visual { display: none; }
}
@media (max-width: 768px) {
  .hero { min-height: 520px; max-height: none; height: auto; padding-top: 5rem; padding-bottom: 0; }
  .hero-content { padding-bottom: 3.5rem; }
  .hero h1 { font-size: 2.25rem; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem; gap: 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .trust-divider { display: none; }
  .trust-item { padding: 0.35rem 1rem; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .sov-stats { gap: 1.5rem; }
}

/* ================================================================
   INNER PAGE — Page header (replaces hero for non-home pages)
   ================================================================ */
.page-header {
  background: var(--bg-tinted); border-bottom: 1px solid var(--border);
  padding: 5rem 0 3rem; margin-top: 57px; text-align: center;
}
.page-header .section-kicker { display: block; margin-bottom: 0.75rem; }
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
  color: var(--text); margin-bottom: 0.75rem;
}
.page-header h1 em { font-style: normal; color: var(--green); }
.page-header p {
  color: var(--text-muted); font-size: 1.05rem;
  max-width: 36rem; margin: 0 auto; line-height: 1.75;
}

/* ── Active nav link ── */
.nav-links a.active { color: var(--green); }

/* ================================================================
   PRICING TABLES
   ================================================================ */
.pricing-note {
  background: var(--green-light); border: 1px solid var(--green-border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  font-size: 0.875rem; color: var(--green);
  display: flex; align-items: flex-start; gap: 0.5rem;
  margin-bottom: 2.5rem; max-width: 52rem; margin-left: auto; margin-right: auto;
}

.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start;
}
.pricing-grid .pricing-column { min-width: 0; }
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 1rem; }
}

.pricing-section { margin-bottom: 3.5rem; }
.pricing-section-title {
  font-size: 1.15rem; font-weight: 700; color: var(--text);
  border-bottom: 2px solid var(--green); padding-bottom: 0.5rem;
  margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.pricing-section > p { text-align: center; margin-left: auto !important; margin-right: auto !important; }
.pricing-section-title svg { color: var(--green); }

.pricing-table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; font-size: 0.875rem;
}
.pricing-table thead tr { background: var(--green); color: #fff; }
.pricing-table thead th {
  padding: 0.875rem 1rem; text-align: left;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.pricing-table thead th:not(:first-child) { text-align: center; }
.pricing-table tbody tr { border-top: 1px solid var(--border); }
.pricing-table tbody tr:nth-child(even) { background: var(--bg-tinted); }
.pricing-table tbody tr:hover { background: var(--green-light); }
.pricing-table tbody tr.base-row { background: #fff; font-weight: 600; }
.pricing-table tbody tr.base-row td:first-child { color: var(--green); }
.pricing-table tbody tr.section-break td {
  background: var(--green); color: #fff;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 0.6rem 1rem;
}
.pricing-table td {
  padding: 0.75rem 1rem; vertical-align: top; color: var(--text);
}
.pricing-table td:not(:first-child):not(:nth-child(2)) { text-align: center; }
.pricing-table .ref { font-weight: 700; color: var(--green); font-size: 0.8rem; white-space: nowrap; }
.pricing-table .option-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  background: var(--green-light); color: var(--green);
  border-radius: 4px; padding: 0.1rem 0.4rem; margin-right: 0.25rem;
}
.pricing-table .price { font-weight: 700; color: var(--text); }
.pricing-table .price-save { font-size: 0.75rem; color: var(--green); display: block; }
.pricing-table tr.setup-row td { font-weight: 600; background: #fffbeb; }
.pricing-table tr.total-row td {
  font-weight: 800; font-size: 1rem; color: var(--green);
  border-top: 2px solid var(--green);
}
.pricing-table .spec-list { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.pricing-table .spec-list li::before { content: '— '; }

/* Period selector tabs */
.period-tabs {
  display: flex; gap: 0; margin-bottom: 2rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; max-width: fit-content; margin-left: auto; margin-right: auto;
}
.period-tab {
  padding: 0.6rem 1.5rem; font-size: 0.875rem; font-weight: 500;
  background: #fff; color: var(--text-muted); cursor: pointer; border: none;
  font-family: inherit; transition: all var(--transition);
}
.period-tab.active {
  background: var(--green); color: #fff; font-weight: 600;
}
.period-tab:hover:not(.active) { background: var(--bg-tinted); color: var(--text); }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 1.25rem;
}
.about-text h2 em { font-style: normal; color: var(--green); }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.about-text p strong { color: var(--text); }
.about-image img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: 100%; object-fit: cover;
}
.pillar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.pillar {
  text-align: center; padding: 2rem 1.5rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.pillar-icon {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.pillar h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.pillar p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── Responsive additions ── */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pricing-table { font-size: 0.8rem; }
  .pricing-table td, .pricing-table th { padding: 0.6rem 0.75rem; }
  .period-tabs { max-width: 100%; }
}
