/* === ACROWizard Landing Page Styles (Baked-In) === */

:root {
  --acrowizard-purple: #6D0887;
  --acrowizard-blue: #0078D4;
  --acrowizard-dark: #232323;
  --acrowizard-light: #F7F7FA;
  --acrowizard-yellow: #FFD700;
  --acrowizard-gray: #55576A;
}

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: var(--acrowizard-light);
  color: var(--acrowizard-dark);
  font-family: "Segoe UI", "Arial", "Inter", sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  color: var(--acrowizard-purple);
  margin-bottom: 0.5em;
  font-weight: 600;
}

a {
  color: var(--acrowizard-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  padding-left: 1.5em;
}

/* Hero Section */
.hero {
  background: #fff;
  box-shadow: 0 4px 24px rgba(109, 8, 135, 0.09);
  border-radius: 18px;
  padding: 2.5em 1.5em 1.5em 1.5em;
  text-align: center;
  margin: 1.2em auto 2em auto;
  max-width: 860px;
}

.logo {
  width: 220px;         /* Display size on desktop—adjust as needed */
  max-width: 90vw;      /* Responsive: never wider than viewport */
  height: auto;         /* Preserve aspect ratio */
  display: block;
  margin: 0 auto 1em auto;
}
.subtitle {
  font-size: 1.15em;
  color: #374151;
  margin: 1em auto 1.5em auto;
  max-width: 540px;
  font-weight: 400;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 1.5em 0 1em 0;
}

.benefits li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-size: 1.07em;
  margin-bottom: 0.3em;
}

.shield {
  font-size: 1.15em;
  vertical-align: middle;
  color: var(--acrowizard-yellow);
}

.product-image {
  margin-top: 2em; /* adds space above screenshot */
  margin-bottom: 1em;
  display: flex;
  justify-content: center;
}

.product-image img {
  width: 100%;
  max-width: 540px;  /* Reduce this from 600 to 540 or even 480 for a narrower feel */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 18px rgba(109,8,135,0.05);
  display: block;
}


/* Trust/Privacy Section */
.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5em;
  margin: 2em auto 2.5em auto;
  max-width: 920px;
}

.trust-point {
  text-align: center;           /* Center all children (including img) */
  display: flex;
  flex-direction: column;
  align-items: center;          /* This ensures the image and all text are centered */
  justify-content: flex-start;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(109,8,135,0.07);
  padding: 1.7em 1.5em 1.3em 1.5em;
  flex: 1 1 270px;
  max-width: 370px;
  min-width: 220px;
}

.trust-point img {
  width: 72px;
  height: 72px;
  margin-bottom: 1.2em;
  display: block;
}

.trust-point h3 {
  color: var(--acrowizard-blue);
  margin-bottom: 0.3em;
}

/* Install Guide */
.install-guide {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(109,8,135,0.07);
  max-width: 730px;
  margin: 0 auto 2.5em auto;
  padding: 2.3em 1.7em;
}

.install-guide h2 {
  margin-top: 0;
  margin-bottom: 0.9em;
}

.install-guide ol {
  margin: 1.1em 0 0.7em 1.2em;
  padding: 0;
}

.install-guide li {
  margin-bottom: 2.1em;
  background: #faf6fc;
  border-left: 6px solid var(--acrowizard-purple);
  border-radius: 7px;
  padding: 1.1em 1.2em 1.1em 1.2em;
  position: relative;
  box-shadow: 0 1px 5px rgba(109, 8, 135, 0.06);
  transition: background 0.18s;
  cursor: pointer;
}

.install-guide li:hover {
  background: #f2eafd;
}

.step-img {
  display: block;
  margin: 1em auto 0.2em auto;
  width: 95%;
  max-width: 340px;
  border-radius: 7px;
  box-shadow: 0 1px 10px rgba(109,8,135,0.09);
}

.highlight {
  background: var(--acrowizard-yellow);
  color: var(--acrowizard-dark);
  padding: 0 4px;
  border-radius: 3px;
  font-weight: 500;
}

/* Install Help */
.install-help {
  text-align: right;
  margin-top: 0.7em;
}

.install-help a {
  font-size: 0.98em;
  color: var(--acrowizard-blue);
}

/* Email Capture */
.email-capture {
  max-width: 440px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(109,8,135,0.08);
  margin: 0 auto 2em auto;
  padding: 2em 1.2em 1.5em 1.2em;
  text-align: center;
}

.email-capture h3 {
  margin-bottom: 0.8em;
  color: var(--acrowizard-purple);
  font-weight: 600;
}

.email-capture form {
  display: flex;
  gap: 0.6em;
  justify-content: center;
  margin-bottom: 0.6em;
  flex-wrap: wrap;
}

.email-capture input[type="email"] {
  padding: 0.5em 1em;
  border: 1px solid #b6c2cd;
  border-radius: 5px;
  font-size: 1em;
  min-width: 180px;
  font-family: inherit;
}

.email-capture button {
  padding: 0.5em 1.5em;
  border: none;
  background: var(--acrowizard-purple);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.13s;
  box-shadow: 0 2px 8px rgba(109,8,135,0.10);
}

.email-capture button:hover {
  background: var(--acrowizard-blue);
}

.email-capture .small {
  color: #5f7287;
  font-size: 0.94em;
}

/* FAQ Section */
.faq {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(109,8,135,0.07);
  max-width: 780px;
  margin: 2.5em auto 2.5em auto;
  padding: 2em 1.6em 1.3em 1.6em;
}

.faq h2 {
  margin-top: 0;
  color: var(--acrowizard-purple);
}

.faq-item {
  margin-bottom: 1.5em;
  padding-bottom: 1em;
  border-bottom: 1px solid #ecf1f8;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-item h4 {
  color: var(--acrowizard-blue);
  font-size: 1.07em;
  margin-bottom: 0.2em;
  font-weight: 500;
}

/* Footer */
footer {
  text-align: center;
  color: var(--acrowizard-gray);
  font-size: 0.97em;
  padding: 2.2em 1em 2em 1em;
  background: transparent;
}

footer a {
  color: var(--acrowizard-blue);
}

/* Responsive Design */
@media (max-width: 980px) {
  .trust {
    flex-direction: column;
    align-items: center;
    gap: 1.2em;
    max-width: 98vw;
  }
  .hero, .install-guide, .faq, .email-capture {
    max-width: 98vw;
    border-radius: 10px;
    padding: 1.2em 0.7em;
  }
}

@media (max-width: 540px) {
  .product-image img, .step-img {
    max-width: 98vw;
    width: 100%;
  }
  .install-guide, .faq, .email-capture, .hero {
    padding: 0.9em 0.2em;
  }
  .trust {
    gap: 0.6em;
  }
}


.get-it-btn {
  display: inline-block;
  padding: 1.1em 2.3em;
  background: #6D0887;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.18em;
  text-align: center;
  box-shadow: 0 2px 8px rgba(109,8,135,0.12);
  margin: 2em auto 1em auto;
  transition: background 0.18s;
  text-decoration: none;
}
.get-it-btn:hover,
.get-it-btn:focus {
  background: #6D0887;
  color: #fff;
  text-decoration: none;
}


    
/*body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 40px;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}*/

.container {
    background: #fff;
    margin: 0 auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}
h1 {
    color: #6D0887; /* ACROWizard's button color */
    margin-bottom: 20px;
}
p {
    margin-bottom: 15px;
}
.instructions {
    background-color: #e9e9e9;
    padding: 15px;
    border-radius: 5px;
    margin-top: 25px;
    font-size: 0.95em;
}
.support-link {
    margin-top: 20px;
    display: block;
}