:root {
  --bg: #0a0f1f;
  --panel: #0f172a;
  --muted: #c5d0e6;
  --text: #e9eef7;
  --accent: #4f8bff;
  --accent-2: #7ce7c1;
  --accent-green: #5cbf9b;
  --border: #1f2a44;
  --card: #111a2f;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  /* Simplified background - single gradient for better performance */
  background: linear-gradient(135deg, rgba(79, 139, 255, 0.08) 0%, rgba(124, 231, 193, 0.06) 50%, rgba(79, 139, 255, 0.05) 100%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  /* Enable hardware acceleration */
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  /* Removed backdrop-filter for better performance - using solid background instead */
  /* backdrop-filter: blur(10px); */
  background: rgba(10, 15, 31, 0.95);
  border-bottom: 1px solid var(--border);
  /* Enable hardware acceleration */
  transform: translateZ(0);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.header-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.header-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #fff;
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.tagline {
  color: var(--muted);
  font-size: 14px;
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  margin: 12px 0 12px;
}

.lead {
  font-size: 18px;
  color: #f5f8ff;
}

.supporting {
  color: var(--muted);
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 12px;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  color: var(--text);
}

.cta.primary {
  background: linear-gradient(135deg, var(--accent), #1f62ff);
  box-shadow: var(--shadow);
}

.cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(79, 139, 255, 0.35);
}

.cta.ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.cta.ghost:hover {
  border-color: var(--accent);
  color: #fff;
}

.hero-visual {
  align-self: center;
  border-radius: 16px;
  border: 1px solid var(--border);
  /* Simplified gradient for better performance */
  background: linear-gradient(135deg, rgba(92, 191, 155, 0.08), rgba(79, 139, 255, 0.06));
  padding: 8px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(92, 191, 155, 0.2);
}

.card-title {
  font-weight: 600;
  color: #f5f8ff;
}

.delivery-strip {
  margin-top: 12px;
  padding: 12px 0 0;
}

.delivery-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(92, 191, 155, 0.25);
  padding-top: 14px;
}

.delivery-text {
  min-width: 220px;
}

.delivery-label {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-green);
  font-weight: 700;
}

.delivery-support {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.delivery-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  flex: 1;
  flex-wrap: wrap;
}

.delivery-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e1e9f7;
  white-space: nowrap;
  font-weight: 600;
}

.pill-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(92, 191, 155, 0.4), rgba(92, 191, 155, 0.2));
  border: 1px solid rgba(92, 191, 155, 0.5);
  box-shadow: 0 0 0 6px rgba(92, 191, 155, 0.08);
  display: inline-block;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.pill-list li {
  background: rgba(79, 139, 255, 0.08);
  border: 1px solid var(--border);
  padding: 10px 12px 10px 18px;
  border-radius: 10px;
  color: #d9e3ff;
  position: relative;
}

.pill-list li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(92, 191, 155, 0.12);
}

.stat-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.stat-title {
  color: var(--muted);
  margin: 0 0 6px;
}

.stat-value {
  font-size: 32px;
  margin: 0;
}

.stat-caption {
  color: var(--muted);
  margin: 6px 0 0;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: rgba(15, 23, 42, 0.7);
  border-block: 1px solid var(--border);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

h2 {
  margin: 8px 0 12px;
  font-size: clamp(26px, 3.2vw, 32px);
}

.muted {
  color: var(--muted);
  margin: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.card.accent-top {
  border-top: 2px solid var(--accent-green);
}

.card-heading {
  font-weight: 600;
  margin-top: 0;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
}

.checklist li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}

.checklist li::before {
  content: "✔";
  color: var(--accent-2);
  position: absolute;
  left: 0;
}

.list {
  padding-left: 20px;
  margin: 8px 0 0;
}

.pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pill-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pill {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
}

.pill.highlight {
  border-color: rgba(79, 139, 255, 0.5);
  background: rgba(79, 139, 255, 0.08);
}

.approach-media {
  align-self: center;
  justify-self: end;
  max-width: 520px;
  width: 100%;
}

.approach-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(92, 191, 155, 0.18);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.pill.accent-border {
  border-color: rgba(92, 191, 155, 0.6);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  min-height: 220px;
  box-shadow: var(--shadow);
}

.service-link {
  color: #e9eef7;
  text-decoration: none;
}

.service-link:hover {
  color: var(--accent);
}

.service-card.accent-top {
  border-top: 2px solid var(--accent-green);
}

.service-icon {
  font-size: 18px;
}

.steps {
  padding-left: 18px;
  margin: 12px 0 16px;
}

.steps li {
  margin-bottom: 8px;
}

.cta-panel {
  background: linear-gradient(135deg, rgba(79, 139, 255, 0.18), rgba(15, 23, 42, 0.9));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  color: var(--muted);
  font-size: 14px;
}

.form-field input,
.form-field textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 15px;
  outline: none;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79, 139, 255, 0.15);
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-actions {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.form-actions button {
  width: auto;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 36px;
  background: rgba(10, 15, 31, 0.92);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.foot-heading {
  font-weight: 600;
  margin: 0 0 6px;
}

.footer-cta {
  text-align: right;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
  text-decoration: none;
}

.whatsapp-link:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.whatsapp-link:hover .whatsapp-icon {
  transform: scale(1.1);
}

.accent-green {
  color: var(--accent-green);
}

/* Article content styles */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h1 {
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.2;
  margin: 0 0 24px;
  color: var(--text);
}

.article-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px;
}

.article-intro p {
  margin-bottom: 16px;
}

.article-content section {
  margin-bottom: 48px;
}

.article-content h2 {
  font-size: clamp(26px, 3.2vw, 32px);
  line-height: 1.3;
  margin: 32px 0 16px;
  color: var(--text);
}

.article-content h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.4;
  margin: 24px 0 12px;
  color: var(--text);
}

.article-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.article-content ul {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--muted);
}

.article-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.article-content .cta-panel {
  margin-top: 32px;
  text-align: center;
}

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

  .hero-visual {
    order: 2;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    text-align: left;
  }

  .actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .delivery-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .delivery-list {
    gap: 10px 14px;
  }

  .delivery-list li {
    white-space: normal;
  }

  .approach-media {
    justify-self: stretch;
    width: 100%;
  }
}

