/* Mazlo SaaS — Light Theme
   Primary teal: #0d7377 | Accent amber: #f59e0b
   Background: #ffffff / #f8fafc | Text: #111827
   Cards: #f1f5f9
*/

/* ---- Google Fonts (local fallback) ---- */
body, input, select, textarea {
  font-family: 'Source Sans Pro', 'Inter', 'Segoe UI', Arial, sans-serif;
  color: #111827;
  background: #ffffff;
}

/* ---- Suppress Strata sidebar ---- */
#header { display: none !important; }
#footer { display: none !important; }
#main { margin-left: 0 !important; padding: 0 !important; }

/* ===== TOP NAV ===== */
#topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5eaf0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5em;
  height: 66px;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-logo {
  font-size: 1.55em;
  font-weight: 800;
  color: #0d7377;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span { color: #f59e0b; }

#topnav ul {
  list-style: none;
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
  align-items: center;
}

#topnav ul li a {
  color: #374151;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

#topnav ul li a:hover { color: #0d7377; }
#topnav ul li a.active { color: #0d7377; }

.nav-cta {
  background: #f59e0b !important;
  color: #111827 !important;
  padding: 0.55em 1.4em;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #d97706 !important; color: #111827 !important; }

/* ===== PAGE WRAPPER ===== */
.page-wrapper { padding-top: 66px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #f0fdfa 0%, #ffffff 50%, #fffbeb 100%);
  padding: 7em 4em 6em;
  border-bottom: 1px solid #e5eaf0;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5em;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  background: #ecfdf5;
  color: #0d7377;
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45em 1em;
  border-radius: 100px;
  border: 1px solid #a7f3d0;
  margin-bottom: 1.5em;
}

.hero h1 {
  color: #0f172a;
  font-size: 3.2em;
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 1em;
  letter-spacing: -0.02em;
}

.hero h1 em {
  color: #0d7377;
  font-style: normal;
}

.hero-tagline {
  color: #4b5563;
  font-size: 1.1em;
  line-height: 1.75;
  margin-bottom: 2.5em;
}

.hero-visual {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
}

.dashboard-preview {
  padding: 1.5em;
}

.dp-header {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1.2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #e5eaf0;
}

.dp-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dp-dot.red   { background: #f87171; }
.dp-dot.yellow{ background: #fbbf24; }
.dp-dot.green { background: #34d399; }

.dp-title {
  margin-left: 0.5em;
  font-size: 0.8em;
  font-weight: 600;
  color: #6b7280;
}

.dp-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0.8em;
  margin-bottom: 1em;
  overflow: hidden;
}

.dp-stat {
  background: #ffffff;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  padding: 0.85em;
}

.dp-stat .ds-label {
  font-size: 0.65em;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.3em;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.dp-stat .ds-value {
  font-size: 1.1em;
  font-weight: 800;
  color: #0d7377;
  display: block;
}

.dp-bar-row { margin-bottom: 0.8em; }

.dp-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72em;
  color: #6b7280;
  margin-bottom: 0.3em;
}

.dp-bar-track {
  height: 7px;
  background: #f1f5f9;
  border-radius: 10px;
  overflow: hidden;
}

.dp-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #0d7377, #14b8a6);
}

.dp-bar-fill.amber {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.dp-txn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6em 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.75em;
}

.dp-txn-row:last-child { border-bottom: none; }
.dp-txn-name { color: #374151; font-weight: 600; }
.dp-txn-amount { color: #0d7377; font-weight: 700; }

/* ===== BUTTON STYLES ===== */
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.9em;
  align-items: flex-start;
}

.btn-primary {
  display: inline-block;
  padding: 0.9em 2.2em;
  background: #f59e0b;
  color: #111827 !important;
  text-decoration: none;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.97em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  min-width: fit-content;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(245,158,11,0.35);
}
.btn-primary:hover { background: #d97706; transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  padding: 0.9em 2.2em;
  background: transparent;
  color: #0d7377 !important;
  text-decoration: none;
  border-radius: 9px;
  border: 2px solid #0d7377;
  font-weight: 700;
  font-size: 0.97em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  min-width: fit-content;
  flex-shrink: 0;
}
.btn-ghost:hover { background: #0d7377; color: #ffffff !important; }

.btn-teal {
  display: inline-block;
  padding: 0.9em 2.4em;
  background: #0d7377;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.97em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  min-width: fit-content;
}
.btn-teal:hover { background: #0a5c5f; transform: translateY(-2px); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: #0d7377;
  padding: 2.8em 4em;
}

.stats-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 2em;
  text-align: center;
  overflow: hidden;
}

.stat-item .stat-num {
  font-size: 2.4em;
  font-weight: 800;
  color: #ffffff;
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-item .stat-label {
  color: rgba(255,255,255,0.72);
  font-size: 0.85em;
  margin-top: 0.45em;
  display: block;
}

/* ===== GENERIC SECTION ===== */
.section { padding: 6em 4em; }
.section-alt { background: #f8fafc; }
.section-alt2 { background: #ecfdf5; }

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  color: #0d7377;
  font-size: 0.75em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.9em;
}

.section-title {
  font-size: 2.2em;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 0.65em;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: #4b5563;
  font-size: 1.05em;
  line-height: 1.8;
  max-width: 640px;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2em;
  margin-top: 3.5em;
  overflow: hidden;
  align-items: stretch;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 2.4em 2.2em;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow-wrap: break-word;
  word-wrap: break-word;
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.25s;
}

.feature-card:hover {
  box-shadow: 0 10px 40px rgba(13,115,119,0.1);
  border-color: #a7f3d0;
  transform: translateY(-3px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: #ecfdf5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4em;
  flex-shrink: 0;
}

.feature-icon i { font-size: 1.35em; color: #0d7377; }

.feature-card h3 {
  font-size: 1.05em;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75em;
}

.feature-card p {
  color: #4b5563;
  font-size: 0.92em;
  line-height: 1.85;
  flex: 1;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 3em;
  margin-top: 3.5em;
  overflow: hidden;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: linear-gradient(90deg, #a7f3d0, #fde68a);
  z-index: 0;
}

.step-card {
  text-align: center;
  min-width: 0;
  overflow-wrap: break-word;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0d7377;
  color: #ffffff;
  font-size: 1.3em;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5em;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 3px #a7f3d0;
}

.step-card h3 {
  font-size: 1.1em;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75em;
}

.step-card p {
  color: #4b5563;
  font-size: 0.92em;
  line-height: 1.85;
}

/* ===== TRUST SECTION (light variant) ===== */
.trust-section {
  background: #f8fafc;
  padding: 6em 4em;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2.2em;
  margin-top: 3.5em;
  overflow: hidden;
  align-items: stretch;
}

.trust-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 2.4em;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow-wrap: break-word;
  border-top: 4px solid #0d7377;
}

.trust-card h3 {
  color: #0f172a;
  font-size: 1.05em;
  font-weight: 700;
  margin-bottom: 0.75em;
}

.trust-card p {
  color: #4b5563;
  font-size: 0.92em;
  line-height: 1.85;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 2.4em;
  min-width: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.testimonial-card p {
  color: #374151;
  font-size: 0.94em;
  line-height: 1.9;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5em;
  position: relative;
}

.testimonial-card p::before {
  content: '\201C';
  font-size: 3em;
  line-height: 0;
  color: #f59e0b;
  vertical-align: -0.5em;
  margin-right: 0.1em;
  font-family: Georgia, serif;
}

.testimonial-meta { border-top: 1px solid #f1f5f9; padding-top: 1.2em; }
.testimonial-meta strong { display: block; color: #0f172a; font-size: 0.88em; font-weight: 700; }
.testimonial-meta span { color: #6b7280; font-size: 0.83em; }

/* ===== INVESTOR SECTION ===== */
.investor-section {
  background: #fffbeb;
  border-top: 1px solid #fde68a;
  border-bottom: 1px solid #fde68a;
  padding: 4.5em 4em;
  text-align: center;
}

.investor-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border: 1px solid #fde68a;
  border-radius: 16px;
  padding: 1.8em 4em;
  box-shadow: 0 4px 20px rgba(245,158,11,0.12);
  margin-top: 2em;
}

.investor-badge .inv-label {
  color: #92400e;
  font-size: 0.72em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.6em;
}

.investor-badge .inv-name {
  color: #0f172a;
  font-size: 1.35em;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.investor-badge .inv-round {
  color: #6b7280;
  font-size: 0.83em;
  margin-top: 0.3em;
  font-style: italic;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #0d7377 0%, #0a5c5f 100%);
  padding: 6em 4em;
  text-align: center;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 2.4em;
  font-weight: 800;
  margin-bottom: 0.65em;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.cta-section p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05em;
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 2.5em;
}

.btn-amber {
  display: inline-block;
  padding: 0.95em 2.6em;
  background: #f59e0b;
  color: #111827 !important;
  text-decoration: none;
  border-radius: 9px;
  font-weight: 700;
  font-size: 1em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  min-width: fit-content;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.btn-amber:hover { background: #d97706; transform: translateY(-2px); }

.btn-outline-white {
  display: inline-block;
  padding: 0.95em 2.6em;
  background: transparent;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 9px;
  border: 2px solid rgba(255,255,255,0.55);
  font-weight: 700;
  font-size: 1em;
  margin-left: 1em;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
  min-width: fit-content;
}
.btn-outline-white:hover { border-color: #ffffff; background: rgba(255,255,255,0.1); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(160deg, #f0fdfa 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
  padding: 6em 4em 4.5em;
  text-align: center;
}

.page-hero h1 {
  color: #0f172a;
  font-size: 2.8em;
  font-weight: 800;
  margin-bottom: 0.7em;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-hero p {
  color: #4b5563;
  font-size: 1.1em;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5em;
  align-items: center;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}

.story-content h2 {
  font-size: 2em;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1em;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.story-content p {
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 1.2em;
  font-size: 0.96em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2.5em;
  margin-top: 3.5em;
  overflow: hidden;
  align-items: stretch;
}

.value-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 2.4em 2.2em;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.value-card:hover { border-color: #a7f3d0; }

.value-icon {
  width: 46px; height: 46px;
  background: #ecfdf5;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2em;
  flex-shrink: 0;
}

.value-icon i { color: #0d7377; font-size: 1.15em; }

.value-card h3 {
  font-size: 1.02em;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.7em;
}

.value-card p {
  color: #4b5563;
  font-size: 0.91em;
  line-height: 1.85;
  flex: 1;
}

.team-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 3em 2.5em;
  max-width: 500px;
  margin: 3em auto 0;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5em;
  display: block;
  border: 4px solid #f59e0b;
  box-shadow: 0 4px 20px rgba(245,158,11,0.2);
}

.team-card h3 {
  font-size: 1.35em;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25em;
}

.team-card .role {
  color: #0d7377;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.4em;
  display: block;
}

.team-card p {
  color: #4b5563;
  font-size: 0.93em;
  line-height: 1.9;
  text-align: left;
}

/* ===== PRODUCT PAGE ===== */
.product-feature-wrap {
  padding: 5em 4em;
}

.product-feature-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5em;
  align-items: center;
  overflow: hidden;
}

.product-feature-inner.flip { direction: rtl; }
.product-feature-inner.flip > * { direction: ltr; }

.product-screen {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}

.product-screen img {
  width: 100%;
  display: block;
}

.product-feature-content h2 {
  font-size: 1.9em;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.85em;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.product-feature-content p {
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 1em;
  font-size: 0.95em;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.6em 0 0;
}

.feature-list li {
  color: #374151;
  font-size: 0.93em;
  line-height: 1.7;
  padding: 0.45em 0 0.45em 1.8em;
  position: relative;
  border-bottom: 1px solid #f1f5f9;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0d7377;
  flex-shrink: 0;
}

/* ===== PRICING PAGE ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2.2em;
  margin-top: 3.5em;
  overflow: hidden;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 18px;
  padding: 2.8em 2.4em;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.2s;
  overflow-wrap: break-word;
}

.pricing-card:hover {
  box-shadow: 0 12px 44px rgba(13,115,119,0.1);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: #0d7377;
  background: linear-gradient(160deg, #f0fdfa 0%, #ffffff 100%);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #111827;
  font-size: 0.72em;
  font-weight: 800;
  padding: 0.35em 1.2em;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card .tier-name {
  font-size: 0.78em;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0d7377;
  margin-bottom: 0.8em;
  display: block;
}

.pricing-card .tier-price {
  font-size: 1.9em;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.4em;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pricing-card .tier-desc {
  color: #4b5563;
  font-size: 0.9em;
  line-height: 1.75;
  padding-bottom: 1.6em;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 1.6em;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2em;
  flex: 1;
}

.pricing-features li {
  color: #374151;
  font-size: 0.88em;
  line-height: 1.6;
  padding: 0.5em 0 0.5em 1.6em;
  position: relative;
  border-bottom: 1px solid #f1f5f9;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.88em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0d7377;
}

.btn-pricing {
  display: block;
  text-align: center;
  padding: 0.9em 1.5em;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.94em;
  text-decoration: none;
  margin-top: auto;
  white-space: nowrap;
  background: #0d7377;
  color: #ffffff !important;
  transition: background 0.2s, transform 0.15s;
}
.btn-pricing:hover { background: #0a5c5f; transform: translateY(-1px); }

.pricing-card.featured .btn-pricing {
  background: #f59e0b;
  color: #111827 !important;
  box-shadow: 0 4px 14px rgba(245,158,11,0.35);
}
.pricing-card.featured .btn-pricing:hover { background: #d97706; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5em;
  align-items: flex-start;
  overflow: hidden;
}

.contact-info h2 {
  font-size: 1.6em;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.8em;
  letter-spacing: -0.01em;
}

.contact-info-item {
  display: flex;
  gap: 1.2em;
  align-items: flex-start;
  margin-bottom: 2em;
  min-width: 0;
}

.ci-icon {
  width: 46px; height: 46px;
  background: #ecfdf5;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid #a7f3d0;
}

.ci-icon i { color: #0d7377; font-size: 1.05em; }

.ci-text strong {
  display: block;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.88em;
  margin-bottom: 0.35em;
}

.ci-text span, .ci-text a {
  color: #4b5563;
  font-size: 0.93em;
  text-decoration: none;
  line-height: 1.7;
}

.ci-text a:hover { color: #0d7377; }

.contact-form-wrap h2 {
  font-size: 1.6em;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.8em;
  letter-spacing: -0.01em;
}

.contact-form .field { margin-bottom: 1.4em; }

.contact-form label {
  display: block;
  font-size: 0.88em;
  font-weight: 700;
  color: #374151;
  margin-bottom: 0.45em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85em 1.1em;
  border: 1.5px solid #d1d5db;
  border-radius: 9px;
  font-size: 0.93em;
  color: #111827;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #0d7377;
  box-shadow: 0 0 0 3px rgba(13,115,119,0.12);
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-form .submit-btn {
  background: #f59e0b;
  color: #111827;
  border: none;
  padding: 0.9em 2.5em;
  border-radius: 9px;
  font-size: 0.95em;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(245,158,11,0.3);
}
.contact-form .submit-btn:hover { background: #d97706; transform: translateY(-1px); }

/* ===== BLOG PAGE ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 2.2em;
  margin-top: 3.5em;
  overflow: hidden;
  align-items: stretch;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.blog-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.blog-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 1.8em;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  gap: 0.8em;
  align-items: center;
  margin-bottom: 0.9em;
}

.blog-tag {
  background: #ecfdf5;
  color: #0d7377;
  font-size: 0.72em;
  font-weight: 800;
  padding: 0.3em 0.75em;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-date { color: #9ca3af; font-size: 0.82em; }

.blog-card h3 {
  font-size: 1.02em;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75em;
  line-height: 1.45;
}

.blog-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card h3 a:hover { color: #0d7377; }

.blog-card p {
  color: #4b5563;
  font-size: 0.89em;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.4em;
}

.blog-card .read-more {
  color: #0d7377;
  font-size: 0.88em;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.blog-card .read-more:hover { color: #0a5c5f; }

/* ===== ARTICLE PAGE ===== */
.article-hero {
  background: linear-gradient(160deg, #f0fdfa 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
  padding: 6em 4em 4em;
}

.article-hero-inner { max-width: 820px; margin: 0 auto; }

.article-tag {
  display: inline-block;
  background: #ecfdf5;
  color: #0d7377;
  font-size: 0.75em;
  font-weight: 800;
  padding: 0.35em 0.9em;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2em;
  border: 1px solid #a7f3d0;
}

.article-hero h1 {
  color: #0f172a;
  font-size: 2.5em;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1em;
  letter-spacing: -0.02em;
}

.article-meta {
  display: flex;
  gap: 1.5em;
  align-items: center;
}

.article-meta .author { color: #374151; font-size: 0.88em; font-weight: 700; }
.article-meta .pub-date { color: #6b7280; font-size: 0.88em; }

.article-body-wrap {
  padding: 5em 4em;
  max-width: 820px;
  margin: 0 auto;
}

.article-featured-image {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 3em;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.article-content h2 {
  font-size: 1.55em;
  font-weight: 800;
  color: #0f172a;
  margin: 2.2em 0 0.8em;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.article-content h3 {
  font-size: 1.15em;
  font-weight: 700;
  color: #0f172a;
  margin: 1.8em 0 0.65em;
}

.article-content p {
  color: #374151;
  font-size: 1em;
  line-height: 1.95;
  margin-bottom: 1.5em;
}

.article-content ul, .article-content ol {
  color: #374151;
  font-size: 1em;
  line-height: 1.9;
  margin: 0 0 1.5em 1.5em;
}

.article-content li { margin-bottom: 0.5em; }

.article-content blockquote {
  border-left: 4px solid #f59e0b;
  margin: 2.5em 0;
  padding: 1.2em 1.8em;
  background: #fffbeb;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #4b5563;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 0;
  border-top: 1px solid #e2e8f0;
  margin-top: 3em;
  gap: 1em;
  flex-wrap: wrap;
}

.article-nav a { color: #0d7377; text-decoration: none; font-size: 0.9em; font-weight: 700; }
.article-nav a:hover { color: #0a5c5f; }

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: linear-gradient(160deg, #f0fdfa 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
  padding: 6em 4em 4em;
  text-align: center;
}

.legal-hero h1 {
  color: #0f172a;
  font-size: 2.5em;
  font-weight: 800;
  margin-bottom: 0.7em;
  letter-spacing: -0.02em;
}

.legal-hero p {
  color: #4b5563;
  font-size: 1em;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-body {
  padding: 5em 4em;
  max-width: 820px;
  margin: 0 auto;
}

.legal-effective {
  background: #ecfdf5;
  border-radius: 10px;
  padding: 1.2em 1.8em;
  margin-bottom: 2.5em;
  color: #065f46;
  font-size: 0.9em;
  border: 1px solid #a7f3d0;
  font-weight: 600;
}

.legal-body h2 {
  font-size: 1.5em;
  font-weight: 800;
  color: #0f172a;
  margin: 2.8em 0 0.8em;
  padding-top: 1.2em;
  border-top: 1px solid #e2e8f0;
  letter-spacing: -0.01em;
}

.legal-body h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }

.legal-body h3 {
  font-size: 1.08em;
  font-weight: 700;
  color: #0f172a;
  margin: 1.8em 0 0.6em;
}

.legal-body p {
  color: #374151;
  font-size: 0.96em;
  line-height: 1.95;
  margin-bottom: 1.3em;
}

.legal-body ul, .legal-body ol {
  color: #374151;
  font-size: 0.96em;
  line-height: 1.9;
  margin: 0 0 1.3em 1.8em;
}

.legal-body li { margin-bottom: 0.4em; }
.legal-body a { color: #0d7377; }
.legal-body a:hover { color: #0a5c5f; }

/* ===== FOOTER ===== */
#sitefooter {
  background: #0f172a;
  padding: 5em 4em 2.5em;
}

.footer-inner { max-width: 1120px; margin: 0 auto; }

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3em;
  margin-bottom: 3.5em;
  overflow: hidden;
}

.footer-brand .logo-text {
  font-size: 1.5em;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 1em;
}

.footer-brand .logo-text span { color: #f59e0b; }

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.87em;
  line-height: 1.85;
  max-width: 280px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.82em;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.3em;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.75em; }

.footer-col ul li a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.87em;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #f59e0b; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
  overflow: hidden;
}

.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82em; }

.footer-legal-links { display: flex; gap: 2em; flex-wrap: wrap; }

.footer-legal-links a {
  color: rgba(255,255,255,0.3);
  font-size: 0.82em;
  text-decoration: none;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.65); }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 1.2em 2em;
  background: #ffffff;
  border-top: 2px solid #e2e8f0;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.1);
}

.cookie-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}

.cookie-inner p {
  margin: 0;
  color: #374151;
  font-size: 0.875em;
  line-height: 1.65;
  flex: 1;
  min-width: 220px;
}

.cookie-inner p a { color: #0d7377; text-decoration: underline; }

.cookie-btns { display: flex; gap: 0.75em; flex-shrink: 0; }

.cookie-decline {
  padding: 0.6em 1.4em;
  border: 1.5px solid #d1d5db;
  background: transparent;
  color: #4b5563;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.875em;
  font-family: inherit;
  transition: border-color 0.2s;
}
.cookie-decline:hover { border-color: #6b7280; }

.cookie-accept {
  padding: 0.6em 1.4em;
  border: none;
  background: #0d7377;
  color: #fff;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.875em;
  font-weight: 700;
  font-family: inherit;
  transition: background 0.2s;
}
.cookie-accept:hover { background: #0a5c5f; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3em; }
  .hero-visual { display: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .features-grid, .trust-grid, .steps-grid,
  .values-grid, .pricing-grid, .blog-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .story-inner, .product-feature-inner, .contact-layout { grid-template-columns: 1fr; gap: 2.5em; }
  .product-feature-inner.flip { direction: ltr; }
  .stats-inner { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .section { padding: 4em 1.5em; }
  .hero { padding: 5em 1.5em 4em; }
  .product-feature-wrap { padding: 4em 1.5em; }
}

@media (max-width: 640px) {
  #topnav ul li:not(:last-child) { display: none; }
  .hero h1 { font-size: 2.2em; }
  .section-title { font-size: 1.8em; }
  .footer-cols { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 4em 1.5em; }
  .btn-outline-white { margin-left: 0; margin-top: 0.75em; }
}
