:root {
  --brand: #911b26;
  --accent: #8fe245;
  --page-bg: #fff;
  --nav-bg: #fbfbfb;
  --text-body: #3c3c3c;
  --overlay: rgba(5, 5, 5, 0.6);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-body);
  background: var(--page-bg);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; padding: 0 5rem; } }
@media (min-width: 1536px) { .container { max-width: 1536px; } }

/* ---------- Header ---------- */
.header {
  background: var(--nav-bg);
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.top-menu-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 .5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) { .top-menu-inner { padding: 0 1rem; } }
@media (min-width: 1280px) { .top-menu-inner { max-width: 1280px; padding: 0 5rem; } }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--brand);
  display: block;
}

.logo { display: flex; align-items: center; }
.logo-img.logo-full { width: 230px; height: 50px; }
.logo-img.logo-small { width: 180px; height: 45px; display: none; }

@media (max-width: 640px) {
  .logo-full { display: none; }
  .logo-small { display: block; }
}

.top-right { display: flex; align-items: center; gap: 1.5rem; }

.phone-link { display: none; }

.cta-btn {
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .6rem 1.25rem;
  border-radius: 6px;
  font-size: .95rem;
  white-space: nowrap;
}
.cta-btn:hover { opacity: .9; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,.1);
  padding: 1rem 1.25rem;
}
.mobile-menu a {
  padding: .6rem 0;
  color: #555;
  font-size: 1rem;
  border-bottom: 1px solid #eee;
}
.mobile-menu.open { display: flex; }

@media (max-width: 640px) {
  .menu-toggle { display: flex; }
  .phone-link span { display: none; }
  .cta-btn { padding: .5rem .75rem; font-size: .8rem; }
}

/* ---------- Sections ---------- */
.section { padding: 3rem 0; }
.section:nth-child(odd) { background: var(--page-bg); }

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 1.5rem;
  white-space: pre-line;
}
h1.center { text-align: center; }
.center { text-align: center; }

.heading-link { cursor: pointer; }
.heading-link:hover { color: var(--brand); }

@media (max-width: 768px) {
  h1 { font-size: 1.75rem; text-align: center; }
}

.content-text {
  font-size: 1.25rem;
  color: var(--text-body);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.center-text { text-align: center; max-width: 900px; margin-left: auto; margin-right: auto; }

/* ---------- Hero ---------- */
.hero-banner {
  height: 300px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* ---------- Two column layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col.reverse .video-col { order: -1; }

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse .video-col { order: 0; }
  .two-col h1, .two-col .content-text { text-align: center; }
  .btn-row { justify-content: center; }
}

.btn-row { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }

.my-btn {
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
  padding: .9rem 1.75rem;
  border-radius: 8px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.my-btn:hover { opacity: .9; }

.social-icon { width: 40px; height: 40px; }

/* ---------- Video ---------- */
.video-wrap { border-radius: 12px; overflow: hidden; }
.yt-lite {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.yt-lite iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 48px;
  background: rgba(17,17,17,.8);
  border: none;
  border-radius: 14px;
  cursor: pointer;
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent #fff;
}
.yt-lite:hover .play-btn { background: var(--brand); }

/* ---------- Wide cards (Security / Privacy) ---------- */
.card-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .card-grid-2 { grid-template-columns: 1fr; }
}

.wide-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ddd;
}
.wide-card img { width: 100%; height: 100%; object-fit: cover; }
.wide-card .overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}
.wc-top, .wc-bottom {
  position: absolute;
  left: 30px; right: 30px;
  text-align: center;
  color: #fff;
}
.wc-top { top: 30px; }
.wc-bottom { bottom: 30px; }
.wc-title { font-weight: 700; font-size: 1.4rem; margin-bottom: .5rem; }
.wc-top p, .wc-bottom p { font-size: 1.1rem; margin: 0; }

/* ---------- Information Center ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .info-grid { grid-template-columns: 1fr; } }

.info-card {
  display: block;
  border: 2px solid #eee;
  border-radius: 24px;
  padding: 1.5rem;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.info-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.icon-bg {
  width: 70px; height: 70px;
  border-radius: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 12px;
}
.icon-bg img { width: 100%; height: 100%; }
.info-card h3 { font-size: 1.3rem; margin: 0 0 .75rem; }
.info-card p { font-size: 1.05rem; color: var(--text-body); margin: 0; }

/* ---------- Footer ---------- */
.footer { padding: 2rem 0 3rem; }
.footer hr { border: none; border-top: 1px solid #e5e5e5; margin-bottom: 1.5rem; }
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: #777;
  flex-wrap: wrap;
  text-align: center;
}
.footer-bottom a:hover { color: var(--brand); }
.divider { opacity: .5; }
