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

:root {
  --blue: #008673;
  --blue-dark: #008673;
  --blue-light: #EFF6FF;
  --blue-mid: #DBEAFE;
  --ink: #0f172a;
  --cyan: #0891b2;
  --cyan-light: #ecfeff;
  --amber: #f59e0b;
  --amber-light: #fffbeb;
  --violet: #7c3aed;
  --violet-light: #f5f3ff;
  --text: #111827;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --border-strong: #D1D5DB;
  --surface: #F9FAFB;
  --surface-strong: #F3F4F6;
  --white: #ffffff;
  --red: #DC2626;
  --green: #16A34A;
  --green-light: #F0FDF4;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md: 0 14px 34px rgba(15,23,42,.09), 0 4px 10px rgba(15,23,42,.05);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: #fcfdff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px;
  gap: 20px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 18px; color: var(--text);
  text-decoration: none;
}
.nav-logo svg { color: var(--blue); flex-shrink: 0; }
.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-links a {
  color: var(--text-muted); font-size: 14px; font-weight: 500;
  padding: 6px 10px; border-radius: 6px; text-decoration: none;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-user { font-size: 14px; font-weight: 500; color: var(--text-muted); padding: 0 8px; }
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle-label {
  display: none; width: 42px; height: 42px; border: 1px solid var(--border);
  border-radius: var(--radius); align-items: center; justify-content: center;
  color: var(--text); background: var(--white); cursor: pointer;
}
.nav-toggle-label svg { width: 22px; height: 22px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: none; transition: transform .15s, box-shadow .15s, background .15s, border-color .15s, color .15s; text-decoration: none;
  line-height: 1;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 22px rgba(37,99,235,.18); }
.btn-primary:hover { background: var(--blue-dark); text-decoration: none; color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn-outline:hover { background: var(--surface); text-decoration: none; }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: #15803d; color: #fff; text-decoration: none; }
.btn-light { background: #fff; color: var(--blue); }
.btn-light:hover { text-decoration: none; color: var(--blue-dark); transform: translateY(-1px); }

/* FORMS */
.form-group { margin-bottom: 18px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
input[type=text], input[type=email], input[type=password] {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border-strong);
  border-radius: var(--radius); font-size: 15px; color: var(--text);
  background: var(--white); outline: none; transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
}
input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.form-error { font-size: 13px; color: var(--red); margin-top: 4px; }

/* ALERTS */
.alert {
  padding: 12px 16px; border-radius: var(--radius); font-size: 14px;
  margin-bottom: 20px; border: 1px solid;
}
.alert-error { background: #FEF2F2; color: var(--red); border-color: #FECACA; }
.alert-success { background: var(--green-light); color: var(--green); border-color: #BBF7D0; }
.alert-info { background: var(--blue-light); color: var(--blue-dark); border-color: var(--blue-mid); }

/* HERO */
.hero {
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 8% 8%, rgba(8,145,178,.13), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(245,158,11,.14), transparent 26%),
    linear-gradient(135deg, #f8fbff 0%, #fff 62%);
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 46px; align-items: center;
}
.hero-content { max-width: 650px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--cyan-light); color: #0e7490;
  font-size: 12px; font-weight: 700; padding: 6px 12px;
  border: 1px solid #cffafe;
  border-radius: 999px; margin-bottom: 22px; text-transform: uppercase; letter-spacing: .05em;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-size: clamp(38px, 5vw, 64px); font-weight: 800;
  line-height: 1.02; color: var(--ink); margin-bottom: 22px;
  letter-spacing: 0;
}
.hero p {
  font-size: 18px; color: var(--text-muted); max-width: 590px;
  margin: 0 0 32px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px; margin-top: 34px; max-width: 560px;
}
.hero-stats div {
  border: 1px solid var(--border); background: rgba(255,255,255,.76);
  border-radius: var(--radius); padding: 14px;
}
.hero-stats strong { display: block; font-size: 20px; line-height: 1; color: var(--ink); }
.hero-stats span { display: block; margin-top: 6px; font-size: 12px; color: var(--text-muted); }
.hero-panel {
  border: 1px solid rgba(148,163,184,.35); border-radius: 16px;
  background: rgba(255,255,255,.78); box-shadow: var(--shadow-md);
  padding: 18px; overflow: hidden;
}
.hero-panel-top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
  color: var(--text-muted); font-size: 13px; font-weight: 600;
}
.hero-panel-top span:first-child { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.hero-panel-top svg { width: 18px; height: 18px; color: var(--blue); }
.status-dot {
  background: var(--green-light); color: var(--green); border: 1px solid #bbf7d0;
  border-radius: 999px; padding: 4px 10px; flex-shrink: 0;
}
.code-window {
  margin: 18px 0; background: var(--ink); color: #e5e7eb;
  border-radius: 10px; padding: 18px; font-family: Consolas, Monaco, monospace;
  font-size: 13px; line-height: 1.9;
}
.code-window span { color: #67e8f9; margin-right: 8px; }
.code-window .success-line {
  display: flex; align-items: center; gap: 8px; color: #bbf7d0; margin-top: 6px;
}
.code-window .success-line svg { width: 16px; height: 16px; }
.hero-panel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hero-panel-grid div {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px; min-width: 0;
}
.hero-panel-grid svg { width: 20px; height: 20px; color: var(--cyan); margin-bottom: 10px; }
.hero-panel-grid strong { display: block; font-size: 13px; color: var(--ink); }
.hero-panel-grid span { display: block; font-size: 12px; color: var(--text-muted); line-height: 1.35; margin-top: 4px; }

.sucuri-hero {
  padding: 82px 0 64px;
  background:
    linear-gradient(115deg, rgba(0,134,115,.08), rgba(255,255,255,0) 45%),
    linear-gradient(180deg, #f7fbf9 0%, #fff 100%);
  border-bottom: 0;
}
.sucuri-hero-grid {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 56px; align-items: center;
}
.sucuri-hero-copy { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
  color: var(--blue); font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-eyebrow svg { width: 18px; height: 18px; }
.sucuri-hero h1 {
  max-width: 600px; font-size: clamp(42px, 5.5vw, 70px);
  line-height: 1.02; letter-spacing: 0; color: #163c35; margin-bottom: 22px;
}
.sucuri-hero p { max-width: 540px; color: #4b635e; font-size: 18px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 28px;
  color: #31524b; font-size: 14px; font-weight: 700;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--green); }
.security-visual {
  position: relative; min-height: 430px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e9f7f4, #fff);
  border-radius: 18px; border: 1px solid rgba(0,134,115,.16);
  box-shadow: 0 24px 50px rgba(22,60,53,.14); overflow: hidden;
}
.security-visual::before {
  content: ""; position: absolute; inset: 9%; border: 1px solid rgba(0,134,115,.12);
  border-radius: 18px; background: rgba(255,255,255,.45);
}
.security-visual img {
  position: relative; z-index: 1; width: min(88%, 620px); max-height: 340px;
  object-fit: contain; filter: drop-shadow(0 18px 28px rgba(22,60,53,.16));
}
.visual-card {
  position: absolute; z-index: 2; width: 190px; padding: 14px 16px;
  border-radius: 12px; background: #fff; border: 1px solid rgba(0,134,115,.14);
  box-shadow: 0 16px 30px rgba(22,60,53,.13);
}
.visual-card strong { display: block; color: #163c35; font-size: 14px; margin-bottom: 4px; }
.visual-card span { color: var(--text-muted); font-size: 12px; }
.visual-card-top { top: 28px; left: 28px; }
.visual-card-bottom { right: 24px; bottom: 28px; }

.metric-strip { background: #123d36; color: #fff; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric-grid div { padding: 28px 24px; border-left: 1px solid rgba(255,255,255,.12); }
.metric-grid div:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.metric-grid strong { display: block; font-size: 28px; line-height: 1; margin-bottom: 8px; }
.metric-grid span { color: rgba(255,255,255,.72); font-size: 13px; }

.promo-band { padding: 34px 0; background: #008673; color: #fff; }
.promo-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.promo-inner .section-kicker { color: #d7fff6; }
.promo-inner h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); line-height: 1.15; margin-bottom: 8px; }
.promo-inner p { color: rgba(255,255,255,.82); max-width: 620px; }

.cms-section { padding: 42px 0; background: #fff; border-bottom: 1px solid var(--border); }
.cms-section p { text-align: center; color: var(--text-muted); margin-bottom: 22px; }
.cms-row {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.cms-row span {
  display: inline-flex; align-items: center; gap: 8px; min-height: 42px;
  border: 1px solid var(--border); border-radius: 999px; padding: 9px 16px;
  color: #31524b; font-size: 14px; font-weight: 700; background: #fff;
}
.cms-row svg { width: 18px; height: 18px; color: var(--blue); }

.solutions-section { background: #f7fbf9; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.solution-card {
  display: flex; flex-direction: column; min-height: 310px; padding: 30px;
  background: #fff; border: 1px solid rgba(0,134,115,.14); border-radius: 14px;
  color: inherit; text-decoration: none; box-shadow: 0 14px 28px rgba(22,60,53,.06);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.solution-card:hover {
  transform: translateY(-5px); box-shadow: 0 22px 42px rgba(22,60,53,.11);
  border-color: rgba(0,134,115,.38); text-decoration: none;
}
.solution-card > div {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: #e8f8f4; color: var(--blue); margin-bottom: 24px;
}
.solution-card svg { width: 26px; height: 26px; }
.solution-card h3 { color: #163c35; font-size: 21px; line-height: 1.2; margin-bottom: 12px; }
.solution-card p { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin-bottom: 22px; }
.solution-card span {
  display: inline-flex; align-items: center; gap: 8px; margin-top: auto;
  color: var(--blue); font-size: 14px; font-weight: 800;
}
.solution-card span svg { width: 16px; height: 16px; }

.pricing-preview { background: #fff; }
.pricing-card .product-card-media { background: #f7fbf9; }

.feature-band { background: #fff; }
.feature-band-alt { background: #f7fbf9; }
.feature-band-grid {
  display: grid; grid-template-columns: minmax(360px, 1fr) minmax(0, .95fr);
  gap: 58px; align-items: center;
}
.feature-band-grid.reverse { grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr); }
.feature-band h2 {
  color: #163c35; font-size: clamp(30px, 4vw, 46px); line-height: 1.08; margin-bottom: 18px;
}
.feature-band p { color: var(--text-muted); font-size: 16px; max-width: 560px; }
.feature-band-media {
  min-height: 340px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,134,115,.14); border-radius: 18px;
  background: linear-gradient(135deg, #e8f8f4, #fff);
  box-shadow: 0 18px 38px rgba(22,60,53,.08); overflow: hidden;
}
.feature-band-media img { width: 88%; max-height: 300px; object-fit: contain; }
.check-list { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: #31524b; font-weight: 700; }
.check-list svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* SECTION */
.section { padding: 72px 0; }
.section-alt { background: var(--surface); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2, .split-section h2, .faq-layout h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; line-height: 1.12; margin-bottom: 12px; color: var(--ink); }
.section-header p, .split-section p, .faq-layout p { color: var(--text-muted); font-size: 16px; max-width: 660px; }
.section-header p { margin: 0 auto; }
.section-kicker {
  display: inline-flex; align-items: center; margin-bottom: 10px;
  color: var(--cyan); font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
}
.section-action { text-align: center; margin-top: 36px; }

/* FEATURE GRID */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-card {
  padding: 28px; border: 1px solid var(--border);
  border-radius: 12px; background: var(--white);
  box-shadow: 0 12px 24px rgba(15,23,42,.04);
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(8,145,178,.35); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--blue); }
.feature-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.split-section {
  display: grid; grid-template-columns: minmax(0, .78fr) minmax(360px, 1.22fr);
  gap: 42px; align-items: start;
}
.tool-tabs {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 14px; box-shadow: var(--shadow-md);
}
.tool-tabs input { position: absolute; opacity: 0; pointer-events: none; }
.tab-controls {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  background: var(--surface); padding: 6px; border-radius: 10px; border: 1px solid var(--border);
}
.tab-controls label {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 42px; margin: 0; border-radius: var(--radius); cursor: pointer;
  color: var(--text-muted); font-size: 13px; font-weight: 700;
}
.tab-controls svg { width: 18px; height: 18px; }
#tab-security:checked ~ .tab-controls label[for="tab-security"],
#tab-admin:checked ~ .tab-controls label[for="tab-admin"],
#tab-delivery:checked ~ .tab-controls label[for="tab-delivery"] {
  background: var(--white); color: var(--ink); box-shadow: var(--shadow);
}
.tab-panels { position: relative; min-height: 280px; margin-top: 14px; }
.tab-panel {
  display: none; min-height: 280px; border-radius: 12px; padding: 30px;
  border: 1px solid var(--border); background: linear-gradient(135deg, #fff 0%, var(--blue-light) 100%);
}
#tab-security:checked ~ .tab-panels .panel-security,
#tab-admin:checked ~ .tab-panels .panel-admin,
#tab-delivery:checked ~ .tab-panels .panel-delivery { display: block; }
.panel-admin { background: linear-gradient(135deg, #fff 0%, var(--violet-light) 100%); }
.panel-delivery { background: linear-gradient(135deg, #fff 0%, var(--amber-light) 100%); }
.panel-icon {
  width: 54px; height: 54px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--blue); box-shadow: var(--shadow); margin-bottom: 24px;
}
.panel-icon svg { width: 26px; height: 26px; }
.tab-panel h3 { font-size: 24px; line-height: 1.18; color: var(--ink); margin-bottom: 12px; }
.tab-panel p { max-width: 560px; margin-bottom: 22px; }
.inline-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; text-decoration: none; }
.inline-link svg { width: 17px; height: 17px; }

.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.workflow-step {
  position: relative; padding: 24px; background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; min-height: 220px; overflow: hidden;
}
.workflow-step > span {
  position: absolute; top: 18px; right: 20px; color: var(--border-strong);
  font-size: 24px; font-weight: 800; line-height: 1;
}
.workflow-step > div {
  width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--cyan); background: var(--cyan-light); margin-bottom: 32px;
}
.workflow-step:nth-child(2) > div { color: var(--blue); background: var(--blue-light); }
.workflow-step:nth-child(3) > div { color: var(--green); background: var(--green-light); }
.workflow-step:nth-child(4) > div { color: var(--amber); background: var(--amber-light); }
.workflow-step svg { width: 23px; height: 23px; }
.workflow-step h3 { font-size: 17px; color: var(--ink); margin-bottom: 8px; }
.workflow-step p { color: var(--text-muted); font-size: 14px; line-height: 1.55; }

/* PRODUCT CARDS */
.section-products { background: linear-gradient(180deg, var(--surface) 0%, #fff 100%); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.product-card {
  border: 1px solid var(--border); border-radius: 14px;
  background: var(--white); overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.product-card:hover { box-shadow: var(--shadow-md); border-color: rgba(37,99,235,.45); transform: translateY(-4px); text-decoration: none; }
.product-card-media {
  aspect-ratio: 16 / 9; background: var(--surface); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.product-card-media img {
  width: 100%; height: 100%; object-fit: contain; padding: 18px;
  transition: transform .2s;
}
.product-card:hover .product-card-media img { transform: scale(1.03); }
.product-card-top { padding: 24px 24px 0; }
.product-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
}
.product-icon svg { width: 24px; height: 24px; stroke: var(--blue); }
.product-category {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--blue); margin-bottom: 6px;
}
.product-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.product-card .short-desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.product-card-bottom {
  padding: 20px 24px; margin-top: auto;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.product-price { font-size: 20px; font-weight: 700; color: var(--text); }
.product-price span { font-size: 13px; color: var(--text-muted); font-weight: 400; }

.faq-layout {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(340px, 1.15fr);
  gap: 48px; align-items: start;
}
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 10px 22px rgba(15,23,42,.04); overflow: hidden;
}
.faq-list summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; color: var(--ink); font-weight: 700;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--blue); background: var(--blue-light); flex-shrink: 0;
  transition: transform .18s;
}
.faq-list summary svg { width: 16px; height: 16px; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { padding: 0 20px 20px 60px; font-size: 14px; line-height: 1.65; }

.cta-section { padding-top: 28px; }
.cta-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  background: linear-gradient(135deg, var(--ink), #1e3a8a 58%, #0e7490);
  border-radius: 18px; padding: 44px; color: #fff; overflow: hidden;
}
.cta-banner .section-kicker { color: #a7f3d0; }
.cta-banner h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.12; color: #fff; margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,.78); max-width: 560px; }

/* PRODUCT DETAIL */
.product-detail { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; padding: 56px 0; }
.product-detail-media {
  aspect-ratio: 16 / 9; background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 26px; box-shadow: var(--shadow);
}
.product-detail-media img { width: 100%; height: 100%; object-fit: contain; padding: 28px; }
.product-title-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.product-title-row h1 { font-size: 30px; line-height: 1.15; font-weight: 800; color: var(--ink); }
.product-detail-icon { width: 56px; height: 56px; border-radius: 14px; }
.product-detail-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; white-space: pre-line; }
.product-detail-desc p { margin-bottom: 16px; }
.purchase-box {
  border: 1px solid var(--border); border-radius: 14px;
  padding: 28px; background: var(--white); box-shadow: var(--shadow-md);
  position: sticky; top: 84px;
}
.purchase-box .price { font-size: 32px; font-weight: 700; margin-bottom: 4px; }
.purchase-box .price-note { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.purchase-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }
.includes-list { list-style: none; margin: 20px 0; }
.includes-list li {
  font-size: 14px; color: var(--text-muted); padding: 6px 0;
  border-bottom: 1px solid var(--border); display: flex; gap: 8px; align-items: flex-start;
}
.includes-list li:last-child { border-bottom: none; }
.check { color: var(--green); flex-shrink: 0; }

/* AUTH PAGES */
.auth-page {
  min-height: calc(100vh - 64px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px; background: var(--surface);
}
.auth-card {
  width: 100%; max-width: 420px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px;
  box-shadow: var(--shadow-md);
}
.auth-card h1 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.auth-card .subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.auth-divider { text-align: center; font-size: 13px; color: var(--text-muted); margin: 20px 0; }

/* DASHBOARD */
.dashboard-header { padding: 40px 0 32px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.dashboard-header h1 { font-size: 26px; font-weight: 700; }
.dashboard-header p { font-size: 15px; color: var(--text-muted); margin-top: 4px; }
.orders-empty { text-align: center; padding: 64px 0; color: var(--text-muted); }
.orders-empty h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.order-card {
  border: 1px solid var(--border); border-radius: 14px;
  padding: 20px 24px; background: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 14px;
}
.order-info h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.order-info p { font-size: 13px; color: var(--text-muted); }
.badge {
  display: inline-block; padding: 3px 10px;
  border-radius: 999px; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
}
.badge-paid { background: var(--green-light); color: var(--green); }
.badge-pending { background: #FEF3C7; color: #92400E; }

/* PAGE HEADER */
.page-header { padding: 48px 0 40px; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.page-header h1 { font-size: 30px; font-weight: 700; margin-bottom: 8px; }
.page-header p { font-size: 16px; color: var(--text-muted); }

/* FOOTER */
.footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.08); padding: 48px 0 28px; color: #fff; }
.footer-inner {
  display: grid; grid-template-columns: minmax(240px, 1.4fr) repeat(2, minmax(160px, .8fr));
  gap: 32px; align-items: start;
}
.footer-logo { color: #fff; font-size: 16px; margin-bottom: 12px; }
.footer-logo svg { color: var(--cyan); }
.footer-brand p { color: rgba(255,255,255,.68); max-width: 390px; font-size: 14px; line-height: 1.65; }
.footer-group h2 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: #93c5fd; margin-bottom: 12px; }
.footer-copy { grid-column: 1 / -1; font-size: 13px; color: rgba(255,255,255,.55); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-links { display: grid; gap: 10px; list-style: none; }
.footer-links a, .footer-links span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.68); }
.footer-links svg { width: 16px; height: 16px; color: #67e8f9; flex-shrink: 0; }
.footer-links a:hover { color: #fff; text-decoration: none; }

/* BREADCRUMB */
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { margin: 0 6px; }

/* SUCCESS PAGE */
.success-page { text-align: center; padding: 80px 0; }
.success-icon { font-size: 56px; margin-bottom: 20px; }
.success-page h1 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.success-page p { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; }

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .nav-inner { min-height: 64px; }
  .nav-toggle-label { display: flex; }
  .nav-links {
    position: absolute; top: calc(100% + 1px); left: 18px; right: 18px;
    display: none; flex-direction: column; align-items: stretch; gap: 6px;
    padding: 12px; background: #fff; border: 1px solid var(--border);
    border-radius: 12px; box-shadow: var(--shadow-md);
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links li, .nav-links form, .nav-links a, .nav-links button { width: 100%; }
  .nav-links a, .nav-links button { justify-content: center; text-align: center; padding: 11px 12px; }
  .nav-user { display: block; text-align: center; padding: 10px 0 4px; }
  .nav-links .btn-sm { display: inline-flex; }

  .hero { padding: 58px 0 52px; }
  .hero-grid, .split-section, .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .sucuri-hero { padding: 54px 0 46px; }
  .sucuri-hero-grid, .feature-band-grid, .feature-band-grid.reverse { grid-template-columns: 1fr; gap: 30px; }
  .sucuri-hero h1 { font-size: clamp(38px, 12vw, 50px); }
  .security-visual { min-height: 300px; border-radius: 14px; }
  .security-visual img { width: 94%; max-height: 240px; }
  .visual-card { position: relative; inset: auto; width: 100%; margin: 8px 0 0; }
  .security-visual { flex-direction: column; padding: 18px; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-grid div { padding: 22px 16px; }
  .promo-inner { align-items: stretch; flex-direction: column; }
  .promo-inner .btn { justify-content: center; }
  .cms-row { justify-content: flex-start; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 0; }
  .feature-band-media { min-height: 260px; }
  .feature-band-media img { max-height: 220px; }
  .hero-content { max-width: none; }
  .hero h1 { font-size: clamp(36px, 12vw, 48px); }
  .hero p { font-size: 16px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; margin-top: 24px; }
  .hero-panel-grid { grid-template-columns: 1fr; }
  .hero-panel-top { align-items: flex-start; flex-direction: column; }

  .section { padding: 54px 0; }
  .section-header { margin-bottom: 30px; text-align: left; }
  .section-header p { margin: 0; }
  .features-grid, .products-grid, .workflow-grid { grid-template-columns: 1fr; }
  .tab-controls { grid-template-columns: 1fr; }
  .tab-panel, .tab-panels { min-height: 0; }
  .tab-panel { padding: 24px; }
  .product-card-bottom { align-items: flex-start; flex-direction: column; }
  .product-card-bottom .btn { width: 100%; justify-content: center; }
  .faq-list details p { padding-left: 20px; }
  .cta-banner { align-items: stretch; flex-direction: column; padding: 30px 24px; border-radius: 14px; }
  .cta-banner .btn { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }

  .product-detail { grid-template-columns: 1fr; }
  .purchase-box { position: static; }
  .order-card { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 769px) and (max-width: 980px) {
  .hero-grid, .split-section, .faq-layout { grid-template-columns: 1fr; }
  .sucuri-hero-grid, .feature-band-grid, .feature-band-grid.reverse { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { max-width: 760px; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .btn-lg { padding: 13px 18px; font-size: 15px; }
  .hero h1 { font-size: 34px; }
  .sucuri-hero h1 { font-size: 36px; }
  .metric-grid { grid-template-columns: 1fr; }
  .cms-row span { width: 100%; justify-content: center; }
  .visual-card { padding: 12px; }
  .hero-panel { padding: 12px; }
  .code-window { padding: 14px; font-size: 12px; }
  .feature-card, .workflow-step { padding: 22px; }
  .footer { padding-top: 38px; }
}
