﻿/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  color: #797979;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 19px;
  font-weight: 400;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== TYPOGRAPHY (smallest = 19px, scaled proportionally) ===== */
h1 { font-size: 70px; font-weight: 900; color: #202020; line-height: 1.12; margin: 0; letter-spacing: -0.01em; }
h2 { font-size: 48px; font-weight: 700; color: #202020; line-height: 1.22; margin: 0; }
h4 { font-size: 19px; font-weight: 500; color: #8d8d8d; line-height: 1.5; margin: 0; }
h5 { font-size: 19px; font-weight: 600; color: #222; line-height: 1.4; margin: 0; }
h6 { font-size: 19px; font-weight: 700; color: #fff; margin: 0; }

/* ===== HEADER ===== */
.site-header { position: relative; z-index: 100; }
.header-inner {
  max-width: 1100px; margin: 0 auto; padding: 24px 30px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: inline-flex; align-items: center; }
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: 19px; font-weight: 700; color: #555;
  text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.2s;
}
.main-nav a:hover { color: #b2dd4c; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Raleway", sans-serif;
  font-size: 19px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 0 42px; height: 56px; border-radius: 3px;
  border: 2px solid transparent; cursor: pointer; transition: all 0.25s;
  white-space: nowrap; text-decoration: none;
}
.btn-lg { height: 64px; padding: 0 54px; font-size: 19px; }
.btn-sm { height: 48px; padding: 0 28px; font-size: 19px; }
.btn-green { background: #b2dd4c; color: #fff; border-color: #b2dd4c; }
.btn-green:hover { background: #9ecb35; border-color: #9ecb35; color: #fff; }
.btn-outline { background: transparent; color: #555; border-color: #ddd; }
.btn-outline:hover { background: #f9f9f9; border-color: #bbb; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; }

/* ===== HERO ===== */
.hero-section { padding: 40px 0 30px; }
.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 30px;
  display: flex; flex-direction: column; gap: 25px; align-items: center;
}
.hero-left { text-align: center; max-width: 900px !important; width: 100%; }
.hero-left h1 { margin-bottom: 15px; }
.hero-left p { margin-bottom: 20px; max-width: 850px; margin-left: auto; margin-right: auto; }
.hero-right { width: 100%; display: flex; justify-content: center; }

/* ===== 4 ICON FEATURES ===== */
.icon-features { padding: 30px 0; }
.connected-section { padding: 60px 0 50px; }
.if-row {
  max-width: 1100px; margin: 0 auto; padding: 0 30px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px;
}
.if-item { text-align: center; }
.if-circle {
  width: 80px; height: 80px; border-radius: 50%; background: #f5f5f5;
  display: grid; place-items: center; margin: 0 auto 22px;
  color: #b2dd4c; transition: all 0.3s;
}
.if-item:hover .if-circle { background: #b2dd4c; color: #fff; }
.if-item h5 { margin-bottom: 10px; }
.if-item p { margin: 0; font-size: 19px; color: #8d8d8d; line-height: 1.55; }

/* ===== BE CONNECTED ===== */
.connected-section { padding: 130px 0 100px; }
.connected-inner { max-width: 1320px; margin: 0 auto; padding: 0 30px; }
.connected-head { text-align: center; margin-bottom: 60px; }
.connected-head h2 { margin-bottom: 16px; }
.connected-head h4 { max-width: 560px; margin: 0 auto; }
.connected-mock {
  display: flex; background: #fff; border-radius: 12px;
  border: 1px solid #e8e8e8; box-shadow: 0 20px 60px -15px rgba(0,0,0,0.08);
  overflow: hidden; max-width: 750px; margin: 0 auto; min-height: 340px;
}
.cm-sidebar {
  width: 72px; background: #fafafa; border-right: 1px solid #eee;
  padding: 18px 12px; display: flex; flex-direction: column; gap: 10px;
}
.cm-sb-item { height: 36px; border-radius: 8px; background: #e8e8e8; }
.cm-sb-item.active { background: #b2dd4c; }
.cm-main { flex: 1; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.cm-card { background: #fafafa; border-radius: 10px; padding: 22px; border: 1px solid #f0f0f0; }
.cm-row { height: 10px; border-radius: 5px; background: #e8e8e8; margin-bottom: 10px; width: 70%; }
.cm-row.short { width: 45%; }
.cm-stats { display: flex; gap: 20px; margin-top: 14px; }
.cm-stat { text-align: center; flex: 1; }
.cm-stat strong { display: block; font-size: 24px; font-weight: 800; color: #b2dd4c; }
.cm-stat span { font-size: 19px; color: #aaa; }
.cm-card.small { padding: 16px; }

/* ===== PRICING (single plan) ===== */
.pricing-section { padding: 120px 0 80px; background: #fafafa; }
.pricing-inner { max-width: 1100px; margin: 0 auto; padding: 0 30px; }
.pricing-head { text-align: center; margin-bottom: 50px; }
.pricing-head h2 { margin-bottom: 16px; }
.pricing-head h4 { max-width: 560px; margin: 0 auto; }
.pricing-single {
  max-width: 500px; margin: 0 auto;
  background: #fff; border: 2px solid #b2dd4c; border-radius: 8px;
  padding: 50px 40px; text-align: center;
  box-shadow: 0 20px 60px -15px rgba(178,221,76,0.2);
}
.ps-badge {
  display: inline-block; background: #b2dd4c; color: #fff;
  padding: 6px 20px; border-radius: 3px;
  font-size: 19px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 20px;
}
.ps-name {
  font-size: 24px; font-weight: 800; color: #222; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.ps-price { font-size: 56px; font-weight: 900; color: #b2dd4c; line-height: 1; margin-bottom: 6px; }
.ps-price sup { font-size: 26px; vertical-align: super; }
.ps-price span {
  display: block; font-size: 19px; font-weight: 500; color: #aaa;
  margin-top: 6px; text-transform: uppercase; letter-spacing: 0.05em;
}
.ps-desc { font-size: 19px; color: #8d8d8d; margin: 16px 0 24px; line-height: 1.5; }
.ps-list { list-style: none; padding: 0; margin: 0 0 30px; text-align: left; }
.ps-list li {
  padding: 10px 0; color: #888; font-size: 19px;
  border-bottom: 1px solid #f5f5f5;
}
.ps-list li:last-child { border-bottom: none; }
.ps-list li::before { content: "✓ "; color: #b2dd4c; font-weight: 800; }
.pricing-single .btn { width: 100%; }

/* ===== DARK CTA ===== */
.cta-dark { padding: 130px 0 50px; background: #1a1a1a; text-align: center; }
.cta-dark-inner { max-width: 650px; margin: 0 auto; padding: 0 30px; }
.cta-dark h2 { color: #fff; margin-bottom: 18px; }
.cta-dark h4 { color: rgba(255,255,255,0.6); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ===== FEATURES + IMAGE ===== */
.feat-img-section { padding: 140px 0 90px; }
.feat-img-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.fi-left { display: flex; flex-direction: column; gap: 30px; }
.fi-item { display: flex; gap: 20px; align-items: flex-start; }
.fi-circle {
  width: 56px; height: 56px; border-radius: 50%; background: #f5f5f5;
  display: grid; place-items: center; flex-shrink: 0; color: #b2dd4c;
}
.fi-item h5 { margin-bottom: 6px; }
.fi-item p { margin: 0; font-size: 19px; color: #8d8d8d; line-height: 1.55; }
.fi-right { display: flex; justify-content: center; }
.fi-mock {
  width: 100%; max-width: 420px; background: #fff; border-radius: 12px;
  border: 1px solid #e8e8e8; box-shadow: 0 20px 60px -15px rgba(0,0,0,0.08);
  overflow: hidden;
}
.fi-mock-top {
  padding: 10px 14px; background: #f8f8f8; border-bottom: 1px solid #eee;
  display: flex; gap: 5px;
}
.fi-mock-top span { width: 9px; height: 9px; border-radius: 50%; background: #d0d0d0; }
.fi-mock-body { padding: 24px; }
.fi-mock-row { height: 10px; border-radius: 5px; background: #e8e8e8; margin-bottom: 10px; width: 80%; }
.fi-mock-row.short { width: 50%; }
.fi-mock-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.fi-mock-block { height: 70px; border-radius: 8px; background: #f0f0f0; }

/* ===== TOOLS ===== */
.tools-section { padding: 0 0 110px; }
.tools-inner { max-width: 1100px; margin: 0 auto; padding: 0 30px; }
.tools-head { text-align: center; margin-bottom: 50px; }
.tools-head h2 { margin-bottom: 16px; }
.tools-head h4 { max-width: 560px; margin: 0 auto; }
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 800px; margin: 0 auto; }
.tool-card {
  background: #fff; border: 1px solid #e8e8e8; border-radius: 8px;
  padding: 36px; text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.tool-card:hover { transform: translateY(-3px); box-shadow: 0 15px 40px -10px rgba(0,0,0,0.08); }
.tool-icon { font-size: 40px; margin-bottom: 16px; }
.tool-card h5 { margin-bottom: 10px; }
.tool-card p { margin: 0 0 18px; font-size: 19px; color: #8d8d8d; line-height: 1.55; }
.tool-tag {
  display: inline-block; padding: 6px 16px; background: #f5f5f5;
  color: #b2dd4c; border-radius: 3px; font-size: 19px; font-weight: 700; margin-bottom: 18px;
}
.tool-card .btn { width: 100%; }

/* ===== FOOTER ===== */
.site-footer { background: #111; color: #888; padding: 70px 0 24px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 30px 50px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-col h6 {
  color: #fff; font-size: 19px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; margin: 0 0 18px;
}
.footer-col p { margin: 8px 0; font-size: 19px; line-height: 1.6; }
.footer-col a { display: block; color: #888; font-size: 19px; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: #b2dd4c; }
.footer-bottom { max-width: 1100px; margin: 24px auto 0; padding: 0 30px; text-align: center; font-size: 19px; color: #666; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .if-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  h1 { font-size: 48px; } h2 { font-size: 34px; }
  body { font-size: 19px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-left h4 { margin-left: auto; margin-right: auto; }
  .hero-right { order: -1; }
  .feat-img-inner { grid-template-columns: 1fr; }
  .fi-right { order: -1; }
  .tools-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  h1 { font-size: 36px; } h2 { font-size: 28px; }
  .header-inner { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .main-nav { gap: 16px; }
  .if-row { grid-template-columns: 1fr; }
  .connected-mock { flex-direction: column; }
  .cm-sidebar { width: 100%; flex-direction: row; padding: 10px; }
  .cm-sb-item { width: 36px; height: 36px; }
  .pricing-single { padding: 36px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
}