/* ==== Base ==== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body { font-family: Inter, Arial, sans-serif; color: #111; background: #fff; line-height: 1.5; }

/* Simple container helper (optional) */
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ==== Header & Logo ==== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid #e5e7eb;
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 110px;                 /* header height */
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: #111; }
.brand img {
  height: 180px;                 /* <<< CHANGE THIS NUMBER to resize the logo */
  width: auto; display: block;
}
.brand .dot { color: #5b8cff; }
.brand .tld { color: #6b7280; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 18px; }
.main-nav a { text-decoration: none; color: #111; font-weight: 600; }
.main-nav a:hover { color: #2563eb; }
.btn { display: inline-block; padding: 10px 16px; border-radius: 999px; text-decoration: none; }
.btn-small { padding: 8px 12px; font-weight: 600; }
.btn-primary { background: #5b8cff; color: #fff; }

/* ==== Hero basics (kept minimal so your page still looks fine) ==== */
.hero { padding: 72px 0; background: #f7f9ff; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.hero h1 { font-size: 44px; line-height: 1.1; margin-bottom: 12px; color: #111; }
.subtitle { font-size: 18px; color: #374151; margin-bottom: 18px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.video-shell { border-radius: 16px; overflow: hidden; background: #000; }
.video-shell video { display: block; width: 100%; height: auto; }

/* Sections (kept) */
.section { padding: 72px 0; }
.section-title { font-size: 32px; margin-bottom: 28px; }
.cards { display: grid; gap: 18px; }
.cards.two { grid-template-columns: 1fr 1fr; }
.cards.three { grid-template-columns: repeat(3,1fr); }
.card { background: #fff; border: 1px solid #eef1f7; border-radius: 16px; padding: 22px; box-shadow: 0 10px 30px rgba(15,20,50,.08); }
.bullets { padding-left: 18px; margin: 10px 0 12px; }
.price { font-weight: 800; color: #1f2b5f; margin-top: 8px; }

/* Footer (simple) */
.site-footer { margin-top: 64px; padding: 40px 0; background: #0e1024; color: #e7eaf6; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; }
.footer-links { list-style: none; }
.footer-links a { color: #c9cfeb; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #2a2f55; margin-top: 16px; padding-top: 16px; color: #9aa3d1; text-align: center; }

/* Responsive */
@media (max-width: 980px) {
  .header-row { height: 90px; }
  .brand img { height: 140px; }         /* mobile logo size */
  .hero-grid, .cards.two, .cards.three { grid-template-columns: 1fr; }
}
