:root {
  --primary-blue: #0056b3;
  --secondary-blue: #00c3ff;
  --dark-bg: #1a1a2e;
  --light-bg: #f4f7f6;
  --accent-orange: #ff6b6b;
  --text-main: #333;
  --text-light: #666;
  --gold: #f1c40f;
  --coral: #e88a7a;
  --navy: #1a4f8b;
}

* { box-sizing: border-box; }

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-main);
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(8px);
  color: #fff;
}

.site-header .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 900;
  font-size: 1.25rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand span { color: var(--secondary-blue); }

.nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.nav a {
  text-decoration: none;
  opacity: 0.9;
  font-weight: 600;
}
.nav a:hover { opacity: 1; color: var(--secondary-blue); }

.nav .buy {
  background: var(--accent-orange);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-blue) 100%);
  color: #fff;
  padding: 80px 0 90px;
  text-align: center;
}

.cloud-hero-title {
  text-align: center;
  direction: rtl;
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.45);
}

.cloud-hero-title .highlight {
  background: linear-gradient(135deg, #00c3ff 0%, #4facfe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-top: 10px;
}

.hero p.subtitle {
  font-size: 1.35rem;
  max-width: 820px;
  margin: 0 auto 30px;
  opacity: 0.92;
}

.cta-button {
  display: inline-block;
  background: var(--accent-orange);
  color: #fff;
  font-size: 1.35rem;
  font-weight: bold;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 25px rgba(255, 107, 107, 0.55);
}

.threat-section {
  background: var(--secondary-blue);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.threat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.threat-card {
  background: #fff;
  color: var(--primary-blue);
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  font-size: 1.1rem;
}

.content-section { padding: 80px 0; }
.content-section.light { background: var(--light-bg); }
.text-center { text-align: center; }

.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.flex-half { flex: 1; min-width: 280px; }

ul.check-list { list-style: none; padding: 0; margin: 0; }
ul.check-list li {
  position: relative;
  padding-right: 35px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
ul.check-list li::before {
  content: "✔";
  position: absolute;
  right: 0;
  top: 0;
  color: #27ae60;
  font-size: 1.4rem;
  font-weight: bold;
}

.table-responsive { overflow-x: auto; margin-top: 40px; }

table.comparison {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

table.comparison th,
table.comparison td {
  padding: 18px 16px;
  border-bottom: 1px solid #eee;
}

table.comparison th {
  background: var(--primary-blue);
  color: #fff;
  font-size: 1.1rem;
}

table.comparison th:first-child,
table.comparison td:first-child {
  text-align: right;
}

table.comparison th:first-child { background: var(--dark-bg); }
table.comparison td:first-child {
  font-weight: bold;
  background: #fafafa;
}

.check { color: var(--primary-blue); font-weight: bold; font-size: 1.4rem; }
.cross { color: #e74c3c; font-weight: bold; font-size: 1.4rem; }

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-right: 4px solid var(--primary-blue);
}

.faq-item h4 {
  margin-top: 0;
  color: var(--primary-blue);
  font-size: 1.15rem;
}

/* Pricing */
.pricing-hero {
  background: linear-gradient(135deg, #eef3f8, #f7f9fc);
  padding: 50px 0 20px;
  text-align: center;
}

.pricing-hero h1 {
  font-size: 2.4rem;
  margin: 0 0 10px;
  color: var(--dark-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 30px 0 70px;
  align-items: stretch;
}

.price-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(20, 40, 80, 0.08);
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #e8eef5;
}

.price-card.recommended {
  border: 3px solid var(--navy);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(26, 79, 139, 0.18);
}

.rec-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pkg-badge {
  display: inline-block;
  align-self: flex-start;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.price-card h2 {
  font-size: 1.15rem;
  line-height: 1.45;
  margin: 0 0 16px;
  min-height: 3.2em;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  flex: 1;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.98rem;
}

.feature-list .ico {
  width: 22px;
  flex: 0 0 22px;
  text-align: center;
}

.price-block {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin: 8px 0 16px;
}

.price-was {
  text-decoration: line-through;
  color: #999;
  font-size: 1.05rem;
}

.price-now {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark-bg);
  line-height: 1;
}

.price-now small {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
}

.discount-pill {
  background: #e74c3c;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.buy-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 16px;
  border-radius: 10px;
  transition: filter 0.2s, transform 0.2s;
}

.buy-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.cta-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

/* Order form */
.order-wrap {
  max-width: 640px;
  margin: 40px auto 80px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(20, 40, 80, 0.08);
  padding: 28px;
  border: 1px solid #e8eef5;
}

.order-wrap h1 { margin-top: 0; color: var(--dark-bg); }
.order-summary {
  background: #f4f8fc;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d2dce6;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}

.form-row textarea { min-height: 90px; resize: vertical; }

.site-footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.85);
  padding: 28px 0;
  text-align: center;
  font-size: 0.95rem;
}

.site-footer a { color: var(--secondary-blue); }

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.recommended { transform: none; }
  .cloud-hero-title { font-size: 2.1rem; }
}
