/* =========================================================
   WebCare v3 — Stylesheet
   Responsive: 1920px | 1280px | 1024px | 768px | 375px
   Font: Inter (Google Fonts)
   ========================================================= */

/* ─── Google Fonts ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --green: #88c540;
  --green-dark: #48b749;
  --green-darker: #2d7a2e;
  --blue: #1099d6;
  --blue-dark: #005b8e;

  --text-dark: #0a0a0a;
  --text-heading: #0f172b;
  --text-body: #314158;
  --text-muted: #45556c;
  --text-subtle: #62748e;
  --text-faint: #90a1b9;

  --border: #e2e8f0;
  --bg-page: #f8fafc;
  --bg-white: #ffffff;

  --green-bg: #e8f5d8;
  --green-border: #c3e5a1;
  --blue-bg: #e6f7ff;
  --blue-border: #b3e0ff;

  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, .10), 0 1px 2px -1px rgba(0, 0, 0, .10);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .10), 0 2px 4px -2px rgba(0, 0, 0, .10);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .10), 0 4px 6px -4px rgba(0, 0, 0, .10);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .10), 0 8px 10px -6px rgba(0, 0, 0, .10);

  --shadow-green: 0 10px 25px 0 rgba(136, 197, 64, .30);
  --shadow-blue: 0 10px 25px 0 rgba(16, 153, 214, .30);

  --container: 1180px;
  --gap: 24px;
  --section-pt: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-body);
  background: var(--bg-page);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none !important;
  color: inherit;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* ─── Helpers ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.webcare-logo {
  display: inline;
}

.webcare-logo .w {
  color: var(--green);
}

.webcare-logo .c {
  color: var(--blue);
}

.badge-active {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 14px;
  line-height: 20px;
}

.badge-active .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.handled-badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--green-bg);
  border: 1px solid var(--green-border);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12px;
  line-height: 16px;
  color: var(--green-darker);
  white-space: nowrap;
}

.handled-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 18px 32px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-green);
  transition: opacity .2s;
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: .9;
  color: #fff !important;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  color: var(--text-body);
  font-size: 16px;
  line-height: 24px;
  padding: 18px 34px;
  border-radius: 16px;
  border: 2px solid #cad5e2;
  cursor: pointer;
  transition: border-color .2s;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--blue);
}

.btn-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  padding: 14px 24px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  width: 100%;
  transition: opacity .2s;
}

.btn-blue:hover {
  opacity: .9;
}

.btn-green-full {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  padding: 14px 24px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-green);
  width: 100%;
  transition: opacity .2s;
}

.btn-green-full:hover {
  opacity: .9;
}

/* Cards */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.card-sm {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  position: relative;
}

/* Section spacing */
section {
  padding-top: var(--section-pt);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Radial gradient blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
}

.hero-blob-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.hero-blob-2 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  bottom: -200px;
  left: -200px;
}

.hero-blob-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--green-dark) 0%, transparent 70%);
  top: 200px;
  right: 400px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding-top: 5px;
  padding-bottom: 28px;
  min-height: 762px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: 60px;
  font-weight: 400;
  line-height: 75px;
  color: var(--text-dark);
}

.hero-title .highlight {
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-muted);
  max-width: 512px;
  margin-bottom: 0;
}

.hero-subtitle .wc {
  color: var(--green);
}

.hero-subtitle .wc-blue {
  color: var(--blue);
}

.hero-uptime-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 21px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.hero-uptime-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  box-shadow: var(--shadow-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-uptime-icon svg {
  color: #fff;
}

.hero-uptime-text .title {
  font-size: 18px;
  color: var(--text-heading);
  line-height: 28px;
}

.hero-uptime-text .sub {
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 20px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Right — Dashboard Card */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-right img {
  position: relative;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136, 197, 64, .3) 0%, rgba(76, 175, 139, .3) 50%, rgba(16, 153, 214, .3) 100%);
  filter: blur(60px);
  opacity: .5;
  pointer-events: none;
}

.dashboard-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
  padding: 25px;
  width: 420px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

.status-title {
  font-size: 18px;
  color: var(--text-heading);
  line-height: 28px;
}

.toggle {
  width: 48px;
  height: 24px;
  background: var(--green-bg);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 4px;
}

.toggle .knob {
  width: 16px;
  height: 16px;
  background: var(--green);
  border-radius: 50%;
}

/* Uptime Chart Panel */
.uptime-panel {
  background: rgba(248, 250, 252, .5);
  border: 1px solid rgba(226, 232, 240, .5);
  border-radius: 16px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.uptime-stats {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.uptime-number {
  font-size: 30px;
  line-height: 36px;
  color: var(--text-heading);
  font-weight: 400;
}

.uptime-label {
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 20px;
}

.uptime-delta {
  font-size: 14px;
  color: var(--green);
  line-height: 20px;
  text-align: right;
}

.uptime-delta-sub {
  font-size: 12px;
  color: var(--text-faint);
  text-align: right;
  line-height: 16px;
}

/* SVG chart area */
.chart-area {
  height: 100px;
  width: 100%;
  overflow: hidden;
}

/* Status rows */
.status-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px;
  background: var(--bg-white);
  border: 1px solid rgba(226, 232, 240, .5);
  border-radius: 14px;
}

.status-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.status-icon.blue {
  background: var(--blue-bg);
}

.status-icon.green {
  background: var(--green-bg);
}

.status-row-text .title {
  font-size: 14px;
  color: var(--text-heading);
  line-height: 20px;
}

.status-row-text .sub {
  font-size: 12px;
  color: var(--text-subtle);
  line-height: 16px;
}

.check-circle {
  width: 24px;
  height: 24px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── PROBLEMS SECTION ───────────────────────────────────── */
.problems {
  background: var(--bg-page);
  padding-bottom: 10px;
}

.section-heading-center {
  text-align: center;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
}

.section-subtext-center {
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-muted);
  max-width: 768px;
  margin: 0 auto;
}

.problems-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.four-col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.icon-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  padding: 33px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.icon-card-icon {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

.icon-card-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.icon-card-title {
  width: 100%;
  font-size: 20px;
  line-height: 28px;
  color: var(--text-dark);
  text-align: center;
  padding-top: 8px;
  font-weight: 500;
}

.icon-card-text {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 0;
}

.problems-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-muted);
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 24px;
}

/* ─── CONSEQUENCES SECTION ───────────────────────────────── */
.consequences {
  background: var(--bg-white);
}

.consequences-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* ─── PREVENT SECTION ────────────────────────────────────── */
.prevent {
  /*background: var(--bg-page);*/
  position: relative;
  overflow: hidden;
}

.prevent-bg-icon {
  position: absolute;
  left: -48px;
  top: 28px;
  width: 256px;
  opacity: .1;
  pointer-events: none;
}

.prevent-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.prevent-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
  color: var(--text-dark);
  text-align: center;
}

/* ─── PLATFORM SECTION ───────────────────────────────────── */
.platform {
  background: var(--bg-white);
}

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

.platform-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
  color: var(--text-dark);
}

.platform-sub {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
}

.pill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 20px;
}

.pill.blue {
  background: var(--blue-bg);
  color: var(--blue-dark);
}

.pill.green {
  background: var(--green-bg);
  color: var(--green-darker);
}

.feature-highlight-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 21px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.feature-hl-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}

.platform-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.platform-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 153, 214, .3) 0%, rgba(76, 175, 139, .3) 50%, rgba(136, 197, 64, .3) 100%);
  filter: blur(60px);
  opacity: .5;
}

/* Dashboard card — shared styles above, reuse */
.score-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 17px;
  border-radius: 16px;
}

.score-row.green-bg {
  background: var(--green-bg);
  border: 1px solid var(--green-border);
}

.score-row.blue-bg {
  background: var(--blue-bg);
  border: 1px solid var(--blue-border);
}

.score-row.grey-bg {
  background: var(--bg-page);
  border: 1px solid var(--border);
}

.score-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.score-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 20px;
}

.score-value-green {
  font-size: 24px;
  color: var(--green);
  line-height: 32px;
}

.score-value-blue {
  font-size: 24px;
  color: var(--blue);
  line-height: 32px;
}

.score-value-dark {
  font-size: 14px;
  color: var(--text-heading);
  line-height: 20px;
}

.score-value-sub {
  font-size: 12px;
  color: var(--text-subtle);
  line-height: 16px;
}

.progress-bar {
  height: 8px;
  background: var(--bg-white);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill-green {
  height: 100%;
  width: 95%;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 999px;
}

.progress-fill-blue {
  height: 100%;
  width: 98%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 999px;
}

/* ─── FEATURES GRID ──────────────────────────────────────── */
.features {
  background: linear-gradient(#ffffff, #e4f2d6, #ffffff);
  padding-bottom: var(--section-pt);
}

.features-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
}

.feature-card-top {
  flex: 1;
}

.feature-card-title {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.feature-card-desc {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.feature-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-box.blue {
  background: var(--blue-bg);
}

.feature-icon-box.green {
  background: var(--green-bg);
}

/* ─── COMPARISON SECTION ─────────────────────────────────── */
.comparison {
  background: var(--bg-white);
  padding-bottom: var(--section-pt);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comparison-card {
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(5px);
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comparison-card.without {
  border: 1px solid rgba(16, 153, 214, .2);
}

.comparison-card.with {
  border: 1px solid rgba(136, 197, 64, .3);
}

.comparison-photo {
  width: 100%;
  height: 192px;
  border-radius: 16px;
  overflow: hidden;
}

.comparison-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.comparison-heading {
  font-size: 30px;
  line-height: 36px;
  color: var(--text-heading);
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 12px;
  list-style: none;
  margin-bottom: 0;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-body);
}

.ci-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 16px;
}

.ci-icon.bad {
  background: rgba(239, 68, 68, .15);
  border: 1px solid rgba(239, 68, 68, .3);
  color: #dc2626;
}

.ci-icon.good {
  background: rgba(136, 197, 64, .2);
  border: 1px solid rgba(136, 197, 64, .4);
  color: var(--green);
}

.with-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.active-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(136, 197, 64, .2);
  border: 1px solid rgba(136, 197, 64, .4);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-darker);
}

.active-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* ─── PRICING SECTION ────────────────────────────────────── */
  .pricing {
  background: linear-gradient(#ffffff, #D6F1FF, #ffffff);
  padding-bottom: var(--section-pt);
}

.pricing-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.pricing-header {
  align-items: center;
}

.pricing-title {
  font-size: 48px;
  font-weight: 400;
  color: var(--text-dark);
  text-align: center;
}

.pricing-subtitle {
  font-size: 24px;
  line-height: 32px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 0;
}

.pricing-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.pricing-pill {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 21px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 20px;
}

.form-wrapper {
  width: 100%;
  max-width: 900px;
}

.form-section-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  text-align: center;
}

.form-section-sub {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-muted);
  text-align: center;
}

.form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 33px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  color: var(--text-body);
  line-height: 20px;
}

.form-label .required {
  color: #fb2c36;
}

.form-input {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 17px;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-white);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

.form-input::placeholder {
  color: rgba(10, 10, 10, .5);
}

.form-input:focus {
  border-color: var(--blue);
}

.plan-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.plan-label-title {
  font-size: 14px;
  color: var(--text-body);
  line-height: 20px;
}

.plan-label-title .required {
  color: #fb2c36;
}

.billing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.billing-toggle .active {
  color: var(--blue-dark);
  font-weight: 700;
}

.billing-toggle .inactive {
  color: var(--text-subtle);
}

.toggle-switch {
  width: 56px;
  height: 28px;
  background: #cbd5e1;
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 4px;
  cursor: pointer;
}

.toggle-switch .knob {
  width: 20px;
  height: 20px;
  background: var(--bg-white);
  border-radius: 50%;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.plan-card {
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  transition: border-color .2s;
  position: relative;
}

.plan-card:hover {
  border-color: var(--green);
}

.plan-card.selected {
  border-color: var(--green);
}

.plan-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #767676;
  background: var(--bg-white);
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-radio.checked {
  border-color: var(--green);
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}

.plan-radio.checked::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: block;
}

.plan-card-header {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.plan-name {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-heading);
}

.plan-name.selected {
  color: var(--green);
}

.plan-pages {
  font-size: 12px;
  line-height: 16px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.plan-price .amount {
  font-size: 24px;
  line-height: 32px;
  color: var(--text-dark);
}

.plan-price .period {
  font-size: 10px;
  color: var(--text-subtle);
  line-height: 16px;
	margin-right: -10px;
}

.recommended-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.all-plans-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-bg);
  border: 1px solid var(--blue-border);
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 14px;
  color: var(--blue-dark);
  align-self: center;
}

.get-started-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  padding: 16px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  width: 100%;
  box-shadow: var(--shadow-md);
  transition: opacity .2s;
}

.get-started-btn:hover {
  opacity: .9;
}

.get-started-btn-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);  
  font-size: 14px;
  line-height: 26px;
  justify-content: center;
}

.schedule-btn {
margin-top:0px;  
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  padding: 16px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  width: 60%;
  box-shadow: var(--shadow-md);
  transition: opacity .2s;
  transition: none;
}

.schedule-btn:hover {
  opacity: .9;
}

.covered-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 13px 25px;
  box-shadow: var(--shadow-sm);
  align-self: center;
}

.covered-icon {
  width: 32px;
  height: 32px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.covered-text .title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 20px;
}

.covered-text .sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 16px;
}

/* ─── CLIENTS SECTION ────────────────────────────────────── */
.clients {
  background: var(--bg-page);
  padding-bottom: 76px;
}

.clients-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}

.clients-title {
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  color: var(--text-dark);
  text-align: center;
}

.clients-track-wrapper {
  width: 100%;
  overflow: hidden;
	padding-bottom: 5px
}

.clients-track {
  display: flex;
  animation: scroll-clients 30s linear infinite;
  width: max-content;
}

@keyframes scroll-clients {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  width: 208px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  margin: 0 16px;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, box-shadow .3s ease;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.client-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients-track-wrapper:hover .clients-track {
  animation-play-state: paused;
}


.client-logo.green1 {
  background: rgba(72, 183, 73, .13);
}

.client-logo.blue1 {
  background: rgba(16, 153, 214, .13);
}

.client-logo.green2 {
  background: rgba(136, 197, 64, .13);
}

.client-logo.navy {
  background: rgba(0, 91, 142, .13);
}

.client-logo-inner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.client-logo-inner.c-green1 {
  background: #48b749;
}

.client-logo-inner.c-blue1 {
  background: var(--blue);
}

.client-logo-inner.c-green2 {
  background: var(--green);
}

.client-logo-inner.c-navy {
  background: var(--blue-dark);
}

.client-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-body);
  text-align: center;
  line-height: 20px;
  padding-bottom: 10px;
}

/* ─── INLINE ICONS (SVG) ─────────────────────────────────── */
.icon-check {
  color: #fff;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

/* 1280px */
@media (max-width: 1280px) {
  :root {
    --container: 1100px;
  }

  .hero-title {
    font-size: 52px;
    line-height: 66px;
  }

  .section-heading-center {
    font-size: 42px;
  }

  .platform-title {
    font-size: 42px;
    line-height: 54px;
  }
}

/* 1024px — Tablet landscape */
@media (max-width: 1024px) {
  :root {
    --container: 960px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .hero-right {
    justify-content: center;
  }

  .dashboard-card {
    width: 100%;
    max-width: 500px;
  }

  .hero-title {
    font-size: 44px;
    line-height: 56px;
  }

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

  .platform-right {
    justify-content: center;
    margin-top: 32px;
  }

  .platform-right .dashboard-card {
    max-width: 480px;
  }

  .four-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-heading-center {
    font-size: 38px;
  }

  .pricing-title {
    font-size: 38px;
  }

  .form-section-title {
    font-size: 38px;
  }
}

/* 768px — Tablet portrait */
@media (max-width: 768px) {
  :root {
    --section-pt: 48px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 46px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .section-heading-center {
    font-size: 30px;
  }

  .platform-title {
    font-size: 30px;
    line-height: 40px;
  }

  .pricing-title {
    font-size: 30px;
  }

  .form-section-title {
    font-size: 30px;
  }

  .prevent-title {
    font-size: 30px;
    line-height: 40px;
  }

  .comparison-heading {
    font-size: 22px;
    line-height: 30px;
  }

  .four-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .comparison-list {
    padding-left: 0;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-track {
    animation-duration: 20s;
  }
}

/* 375px — Mobile */
@media (max-width: 480px) {
  :root {
    --section-pt: 40px;
  }

  body {
    font-size: 15px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 36px;
  }

  .section-heading-center {
    font-size: 26px;
    line-height: 34px;
  }

  .platform-title {
    font-size: 26px;
    line-height: 34px;
  }

  .pricing-title {
    font-size: 26px;
  }

  .form-section-title {
    font-size: 26px;
  }

  .prevent-title {
    font-size: 26px;
    line-height: 34px;
  }

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .dashboard-card {
    width: 100%;
    padding: 16px;
    gap: 16px;
  }

  .hero-uptime-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-pills {
    flex-wrap: wrap;
  }
}

section.consequences {
  padding-top: 46px;
  padding-bottom: 50px;
}

section.prevent {
  padding-bottom: 76px;
}

section.prevent {
  padding-bottom: 76px;
}

.prevent .container:before {
 
  /*  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22256%22%20height%3D%22256%22%20viewBox%3D%220%200%20256%20256%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cg%20opacity%3D%220.1%22%20clip-path%3D%22url(%23clip0_17_468)%22%3E%3Cpath%20d%3D%22M0%20128C42.6667%2085.3333%2085.3333%2085.3333%20128%20128C170.667%20170.667%20213.333%20170.667%20256%20128%22%20stroke%3D%22%231099D6%22%20stroke-width%3D%2251.2%22/%3E%3C/g%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_17_468%22%3E%3Crect%20width%3D%22256%22%20height%3D%22256%22%20fill%3D%22white%22/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left;
   */
  position: absolute;
  top: 0;
  left: 14%;
  right: 0;
  bottom: 0;
  content: "";
}

.prevent .container {
  position: relative;
}

section.platform {
  padding-bottom: var(--section-pt);
}

.platform-right img.platform-dashboard-img {
  position: relative;
}

/* Align items side-by-side */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* Switch Container: Blue by Default */
.toggle-switch {
  width: 50px;
  height: 26px;
  background-color: #007bff; /* default blue */
  border-radius: 26px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* The white dot inside the switch */
.toggle-switch .knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* --- ACTIVE STATE (Annual) --- */

/* Switch Container Active: Changes to Green */
.toggle-switch.annual-active {
  background-color: #28a745 !important; /* green when active */
}

/* Switch Knob Active: Moves to the Right */
.toggle-switch.annual-active .knob {
  transform: translateX(24px) !important; 
}
