/* ============================================================
   SwiftGuard — Shared Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Roboto+Slab:wght@400;700&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:       #6EC1E4;
  --blue-dark:  #5aa8cb;
  --navy:       #263036;
  --navy-dark:  #1a2228;
  --green:      #61CE70;
  --green-dark: #4db55b;
  --body-text:  #54595F;
  --light-gray: #f5f5f5;
  --white:      #ffffff;
  --max-width:  1080px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.4px;
  color: var(--body-text);
  background: var(--white);
}

a {
  color: var(--blue);
  text-decoration: none;
}
a:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

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

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e2e8ed;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--navy);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  text-decoration: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
@media (max-width: 767px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid #e2e8ed;
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 12px 24px;
    color: var(--navy);
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.hero p {
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 36px;
  color: rgba(255,255,255,0.85);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Video embed */
.hero-video {
  margin: 52px auto 0;
  max-width: 720px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}
.hero-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--green);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 15px;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
  padding: 80px 0;
  background: var(--light-gray);
}

.section-title {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.feature-card h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--body-text);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--blue);
  padding: 48px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 24px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
}
.page-hero p {
  margin-top: 12px;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 10px;
  padding: 44px 36px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-card.featured {
  border-top: 4px solid var(--blue);
}

.pricing-card h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.4rem;
  color: var(--navy);
}
.pricing-price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--body-text);
}
.pricing-desc {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
  flex: 1;
}
.pricing-card .btn {
  margin-top: 8px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 767px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-item-text a {
  color: var(--body-text);
}
.contact-item-text a:hover { color: var(--blue); }

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: #25D366;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}
.whatsapp-link:hover { background: #1da851; color: var(--white); text-decoration: none; }

.contact-form-col h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 24px;
}

/* ============================================================
   DOWNLOADS
   ============================================================ */
.downloads-section {
  padding: 80px 0;
}
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.download-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: border-color 0.2s, transform 0.2s;
}
.download-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
}
.download-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.download-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.download-note {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
}

/* ============================================================
   SUPPORT
   ============================================================ */
.support-section {
  padding: 80px 0;
  text-align: center;
}
.support-section h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.support-section p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--body-text);
}

/* ============================================================
   LEGAL (Terms / Privacy)
   ============================================================ */
.legal-section {
  padding: 64px 0;
}
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h1 {
  font-family: 'Roboto Slab', serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.legal-content .effective-date {
  color: #999;
  font-size: 13px;
  margin-bottom: 36px;
}
.legal-content h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin: 36px 0 12px;
}
.legal-content p {
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 12px 0 16px 24px;
}
.legal-content ul li {
  margin-bottom: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 28px 24px;
  font-size: 13px;
}
.site-footer a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.site-footer a:hover { color: var(--blue); }
.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
