/* WebSite-Watcher - Modern CSS - No cookies, no tracking, privacy-friendly */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #2d3748;
  background: #ffffff;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #1d4ed8;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== LAYOUT ===== */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

main {
  flex: 1;
}

/* ===== NAVIGATION ===== */
.site-header {
  background: #1e3a5f;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo:hover {
  color: #93c5fd;
  text-decoration: none;
}

.nav-logo span {
  color: #93c5fd;
}

/* Main nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a,
.nav-menu > li > span {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: #e2e8f0;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > span:hover,
.nav-menu > li:hover > a,
.nav-menu > li:hover > span {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  text-decoration: none;
}

.nav-menu > li > a.active {
  background: rgba(147,197,253,0.2);
  color: #93c5fd;
}

/* Dropdown arrow */
.nav-arrow {
  font-size: 0.65rem;
  opacity: 0.7;
  transition: transform 0.2s;
}

.nav-menu > li:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 6px;
  padding-top: 14px;
  list-style: none;
}

/* Gap fix: invisible hover bridge between trigger and dropdown */
.nav-menu > li {
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.nav-menu > li:hover .nav-dropdown {
  display: block;
}

.nav-dropdown li a {
  display: block;
  padding: 8px 12px;
  color: #374151;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: background 0.15s;
}

.nav-dropdown li a:hover {
  background: #f0f7ff;
  color: #2563eb;
  text-decoration: none;
}

/* Language flags */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
}

.nav-lang a {
  opacity: 0.7;
  transition: opacity 0.15s;
}

.nav-lang a:hover,
.nav-lang a.active {
  opacity: 1;
}

.flag-icon {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  vertical-align: middle;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e2e8f0;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  background: #1e3a5f;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 24px 20px;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 10px 0;
  color: #e2e8f0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-mobile a:hover {
  color: #93c5fd;
  text-decoration: none;
}

.nav-mobile .nav-mobile-section {
  font-size: 0.8rem;
  font-weight: 700;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 16px;
  margin-bottom: 4px;
}

/* ===== PRODUCT SUB-MENU ===== */
.product-nav {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.product-nav-inner {
  display: flex;
  align-items: center;
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-nav-inner::-webkit-scrollbar {
  display: none;
}

.product-nav-inner a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #4b5563;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.product-nav-inner a:hover {
  color: #2563eb;
  text-decoration: none;
}

.product-nav-inner a.active {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  color: #ffffff;
  padding: 72px 0 64px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  max-width: 520px;
}

.hero-checklist {
  list-style: none;
  margin: 20px 0 32px;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  color: rgba(255,255,255,0.9);
  font-size: 0.97rem;
}

.hero-checklist li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: cover;
  margin-top: 2px;
}

/* H1 hero - prevent wrapping on typical desktop widths */
.hero-h1-nowrap {
  white-space: nowrap;
}

/* Rotating use-case line below main hero heading */
.hero-usecases {
  margin-top: 10px;
  margin-bottom: 32px;
  min-height: 2.2em;
  display: flex;
  align-items: center;
}

#heroUsecase {
  display: inline-block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.52);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 4px 14px;
  transition: opacity 0.4s ease;
  opacity: 1;
  line-height: 1.5;
}

#heroUsecase.fade-out {
  opacity: 0;
}

.hero-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  font-style: italic;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-width: 280px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  text-decoration: none;
  border: none;
  line-height: 1.4;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: #f97316;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}

.btn-primary:hover {
  background: #ea6c0a;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(249,115,22,0.45);
}

.btn-secondary {
  background: #10b981;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(16,185,129,0.35);
}

.btn-secondary:hover {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(16,185,129,0.45);
}

.btn-outline {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline:hover {
  background: #2563eb;
  color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: #1e3a5f;
}

.btn-white:hover {
  background: #f0f7ff;
  color: #1e3a5f;
}

.btn-blue {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}

.btn-blue:hover {
  background: #1d4ed8;
  color: #ffffff;
}

.btn-sm {
  padding: 7px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ===== SECTIONS ===== */
.section {
  padding: 64px 0;
}

.section-gray {
  background: #f8fafc;
}

.section-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: #6b7280;
  max-width: 560px;
  line-height: 1.6;
}

.section-header {
  margin-bottom: 40px;
}

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #bfdbfe;
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ===== BENEFITS ===== */
.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f4f8;
  font-size: 0.95rem;
  color: #374151;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: #10b981;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: cover;
  margin-top: 1px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 3rem;
  color: #bfdbfe;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.65;
  margin-top: 24px;
  margin-bottom: 16px;
}

.testimonial-text strong {
  color: #1e3a5f;
}

.testimonial-author {
  font-size: 0.85rem;
  color: #9ca3af;
  font-style: italic;
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.pricing-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.pricing-card.featured {
  border-color: #2563eb;
  box-shadow: 0 8px 32px rgba(37,99,235,0.15);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 20px;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1e3a5f;
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-price span {
  font-size: 1.1rem;
  font-weight: 500;
  color: #6b7280;
}

.pricing-period {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: #4b5563;
  border-bottom: 1px solid #f4f6f8;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .check {
  color: #10b981;
  font-weight: 700;
  min-width: 16px;
}

.pricing-features .dash {
  color: #d1d5db;
  min-width: 16px;
}

/* ===== COMPARISON TABLE ===== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #f0f4f8;
}

.compare-table th {
  background: #1e3a5f;
  color: #ffffff;
  font-weight: 600;
}

.compare-table th:first-child {
  border-radius: 8px 0 0 0;
}

.compare-table th:last-child {
  border-radius: 0 8px 0 0;
}

.compare-table tr:nth-child(even) td {
  background: #f8fafc;
}

.compare-table tr:hover td {
  background: #eff6ff;
}

.compare-table .section-row th {
  background: #e8f0fe;
  color: #1e3a5f;
  font-weight: 700;
  font-size: 0.85rem;
}

.compare-table td:not(:first-child) {
  text-align: center;
}

.compare-table .yes {
  color: #10b981;
  font-weight: 700;
}

.compare-table .no {
  color: #d1d5db;
}

.compare-table .limited {
  color: #f59e0b;
  font-size: 0.85rem;
}

/* ===== CTA BOX ===== */
.cta-box {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  color: #ffffff;
}

.cta-box h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== INFO BOX ===== */
.info-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 20px 0;
}

.info-box p {
  font-size: 0.92rem;
  color: #1e40af;
}

/* ===== PAGE HEADER ===== */
.page-hero {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 36px 0;
}

.page-hero h1 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 1rem;
  color: #6b7280;
  max-width: 560px;
}

/* ===== DOWNLOAD CARD ===== */
.download-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.download-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.download-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 6px;
}

.download-info p {
  font-size: 0.88rem;
  color: #6b7280;
  margin-bottom: 14px;
}

.download-meta {
  font-size: 0.82rem;
  color: #9ca3af;
  margin-top: 8px;
}

.download-meta a {
  color: #6b7280;
}

/* ===== SYSTEM REQUIREMENTS ===== */
.sysreq-list {
  list-style: none;
  font-size: 0.9rem;
  color: #4b5563;
}

.sysreq-list li {
  padding: 5px 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.sysreq-list li::before {
  content: ">";
  color: #2563eb;
  font-weight: 700;
}

/* ===== NEWS ===== */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}

.news-date {
  font-size: 0.82rem;
  color: #9ca3af;
  margin-bottom: 8px;
}

.news-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 10px;
}

.news-item p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.65;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 12px;
  line-height: 1.65;
}

.contact-info a {
  color: #2563eb;
}

.contact-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px;
}

/* ===== SCREENSHOTS ===== */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.screenshot-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.2s, transform 0.2s;
}

.screenshot-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.screenshot-item img {
  width: 100%;
  display: block;
}

.screenshot-caption {
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #6b7280;
  background: #f8fafc;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1e3a5f;
  color: rgba(255,255,255,0.7);
  padding: 40px 0 28px;
  margin-top: 80px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 20px;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 8px;
}

.footer-copy a {
  color: rgba(255,255,255,0.55);
}

/* ===== INLINE STAR RATING ===== */
.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-muted { color: #9ca3af; }
.text-sm { font-size: 0.88rem; }
.text-xs { font-size: 0.78rem; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mb-0 { margin-bottom: 0; }

.strikethrough {
  text-decoration: line-through;
  color: #9ca3af;
}

.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

.badge-green {
  background: #d1fae5;
  color: #065f46;
}

.badge-blue {
  background: #dbeafe;
  color: #1e40af;
}

.badge-orange {
  background: #ffedd5;
  color: #9a3412;
}

/* ===== DIVIDER ===== */
.divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 48px 0;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

/* ===== ICON LIST ===== */
.icon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.icon-list .icon-box {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #eff6ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.icon-list .icon-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 2px;
}

.icon-list .icon-text p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
}

/* ===== TOPINFO AREA ===== */
.topinfo {
  background: #f0f7ff;
  border-bottom: 1px solid #bfdbfe;
  padding: 8px 0;
  font-size: 0.85rem;
  text-align: center;
  color: #1e40af;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-image {
    display: none;
  }
  .hero-text h1 {
    font-size: 1.9rem;
  }
  .two-col,
  .two-col-wide {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero-h1-nowrap {
    white-space: normal;
  }
  .nav-menu {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero {
    padding: 48px 0 40px;
  }
  .hero-text h1 {
    font-size: 1.6rem;
  }
  .section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    padding: 36px 24px;
  }
  .compare-table {
    font-size: 0.82rem;
  }
  .compare-table th,
  .compare-table td {
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .nav-inner {
    padding: 0 16px;
  }
  .product-nav-inner {
    padding: 0 16px;
  }
  .hero-text h1 {
    font-size: 1.4rem;
  }
  .btn {
    padding: 10px 18px;
  }
  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }
}
