:root {
  --sura-blue: #007acc;
  --sura-cyan: #00a4e4;
  --sura-green: #2bc84c;
  --sura-dark: #1f2937;
  --bg-light: #f8fafc;
  --text-gray: #4b5563;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--sura-dark);
  line-height: 1.5;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.2;
}

a {
  text-decoration: none;
}

.text-center {
  text-align: center;
}

.pb-5 {
  padding-bottom: 3rem;
}

.bg-light {
  background-color: var(--bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-full {
  width: 100%;
}

.btn-blue-outline {
  background-color: var(--sura-blue);
  color: white;
  border: 2px solid var(--sura-blue);
  border-radius: 8px;
}

.btn-green {
  background-color: var(--sura-green);
  color: white;
  border-radius: 8px;
}

.btn-blue-solid {
  background-color: var(--sura-blue);
  color: white;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 122, 204, 0.3);
}

.icon-sm {
  width: 1.25rem;
  height: 1.25rem;
}

/* TOPBAR */
.topbar {
  background: white;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.topbar-logo img {
  height: 48px;
  width: auto;
}

.topbar-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .topbar-inner {
    flex-direction: column;
    text-align: center;
  }

  .topbar-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .topbar-actions .btn {
    width: 100%;
    max-width: 340px;
    white-space: nowrap;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    /* Optional, to match the look in the image better */
  }
}

/* HERO */
.hero {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1559839734-2b71ea197ec2?q=80&w=1470&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 4rem 1rem;
  min-height: 500px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(0, 164, 228, 0.85) 55%, rgba(0, 164, 228, 0.95) 100%);
}

@media (max-width: 900px) {
  .hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(0, 164, 228, 0.95) 100%);
  }
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-areas:
    "header form"
    "text form";
  gap: 0 3rem;
  align-items: center;
}

.hero-header {
  grid-area: header;
  align-self: end;
  padding-bottom: 1.5rem;
}

.hero-header h1 {
  color: var(--sura-dark);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-header h1 .highlight {
  color: var(--sura-blue);
}

.hero-header .subtitle {
  color: var(--text-gray);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.mobile-band {
  display: none;
}

.hero-text-box {
  grid-area: text;
  align-self: start;
}

.hero-text-box h2 {
  color: var(--sura-blue);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero-text-box p {
  color: var(--text-gray);
  font-size: 1.125rem;
  max-width: 450px;
}

.hero-formbox {
  grid-area: form;
}

@media (max-width: 900px) {
  .hero {
    padding: 0;
    min-height: auto;
    background: white;
  }

  .hero::before {
    display: none;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero-header {
    background-image: url('https://images.unsplash.com/photo-1559839734-2b71ea197ec2?q=80&w=1470&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 3rem 1.5rem;
    text-align: center;
    order: 1;
  }

  .hero-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 164, 228, 0.85);
    /* sura-cyan overlay */
  }

  .hero-header>* {
    position: relative;
    z-index: 2;
  }

  .hero-header h1 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
  }

  .hero-header h1 .highlight {
    color: white;
  }

  .hero-header .subtitle {
    color: white;
    font-size: 1rem;
    margin-bottom: 0;
  }

  .mobile-band {
    display: block;
    order: 2;
    background: white;
    color: var(--sura-dark);
    padding: 1rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  }

  .hero-formbox {
    order: 3;
    margin: 2rem 1.5rem;
    background-color: #d1d5db;
    /* gray background to emulate the box in screenshot */
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  }

  .formbox-header p.small-title {
    color: white;
    font-size: 0.95rem;
  }

  .formbox-header p.big-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
  }

  .hero-text-box {
    order: 4;
    padding: 0 1.5rem 3rem;
    margin-top: 1rem;
    text-align: center;
  }

  .hero-text-box h2 {
    color: var(--sura-dark);
    font-size: 1.3rem;
  }

  .hero-text-box p {
    color: var(--text-gray);
    margin: 0 auto;
  }
}

/* HERO FORM */
.hero-formbox {
  background-color: var(--sura-blue);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  color: white;
  text-align: center;
  position: relative;
}

.formbox-header p.small-title {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.formbox-header p.big-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lead-form input {
  padding: 0.875rem 1rem;
  border-radius: 24px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}

.lead-form input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.formbox-footer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}

/* FEATURES */
.features {
  padding: 4rem 0;
}

.section-header h2 {
  color: var(--sura-cyan);
  font-size: 1.75rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.container-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  text-align: center;
  padding: 1rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e0f2fe;
  color: var(--sura-blue);
  border-radius: 50%;
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature-card h3 {
  font-size: 1.125rem;
  color: var(--sura-dark);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.cta-features {
  margin-top: 2rem;
}

/* PLANS */
.plans {
  padding-top: 4rem;
}

.container-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.plan-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.plan-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.plan-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-content h3 {
  font-size: 1.5rem;
  color: var(--sura-dark);
  margin-bottom: 0.25rem;
}

.plan-subtitle {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.plan-features {
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.4;
}

.plan-features li::before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="%23007acc" width="20" height="20"><path stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5" /></svg>');
  display: inline-block;
  min-width: 20px;
  height: 20px;
}

.plan-action {
  margin-top: 2rem;
}

/* LEADERS */
.container-leaders {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.leader-card {
  width: 180px;
  text-align: center;
}

.leader-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e0f2fe;
  color: var(--sura-blue);
  border-radius: 50%;
}

.leader-icon svg {
  width: 30px;
  height: 30px;
}

.leader-card p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.4;
}

/* HOW TO */
.bg-blue {
  background-color: var(--sura-cyan);
}

.text-white {
  color: white;
}

.subtitle-small {
  font-size: 1rem;
  margin-top: 0;
  opacity: 0.9;
}

.container-howto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.step-card {
  background-color: var(--sura-cyan);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.step-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.15rem;
  letter-spacing: 1px;
}

.step-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.step-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

/* DIFFERENCES */
.py-5 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.pt-5 {
  padding-top: 4rem;
}

.differences-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .differences-inner {
    grid-template-columns: 1fr;
  }
}

.differences-heading-wrap {
  margin-bottom: 1.5rem;
}

.differences-heading-wrap h2 {
  color: var(--sura-dark);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.heading-line {
  width: 60px;
  height: 4px;
  background-color: var(--sura-blue);
}

.text-blue {
  color: var(--sura-blue);
  font-weight: 600;
}

.differences-text p {
  color: var(--text-gray);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.btn-yellow {
  background-color: #ffc107;
  color: #000;
  border-radius: 8px;
  font-weight: 800;
  padding: 1rem 2rem;
  border: none;
}

.action-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.action-box .note {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0;
}

/* IG MOCK */
.ig-mock {
  background: white;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
}

.ig-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.ig-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ig-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
}

.ig-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-username {
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
  color: #262626;
}

.ig-audio {
  font-size: 0.75rem;
  color: #8e8e8e;
  margin: 0;
}

.btn-small {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

.ig-image img {
  width: 100%;
  display: block;
}

.ig-footer {
  padding: 1rem;
}

.ig-link {
  color: var(--sura-blue);
  font-weight: 600;
  font-size: 0.85rem;
  margin: 0 0 0.5rem;
  cursor: pointer;
}

.ig-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.ig-likes {
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.ig-commentbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #dbdbdb;
  padding-top: 1rem;
  color: #8e8e8e;
  font-size: 0.9rem;
}

/* WHY CHOOSE US */
.container-whyus {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.why-card {
  width: 240px;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon.icon-cyan {
  color: var(--sura-cyan);
}

.why-icon svg {
  width: 40px;
  height: 40px;
}

.text-cyan {
  color: var(--sura-cyan);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin: 0;
}

/* FAQ SECTION */
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

.accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--sura-dark);
}

.question-text {
  font-weight: 600;
  font-size: 1.05rem;
  padding-right: 1.5rem;
}

.icon-wrapper {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--sura-blue);
}

.accordion-icon {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content-inner {
  padding-bottom: 1.25rem;
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.accordion-content-inner p {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.accordion-content-inner p:last-child {
  margin-bottom: 0;
}

.faq-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
  .faq-inner {
    grid-template-columns: 1fr;
  }
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--sura-dark);
  cursor: pointer;
  font-size: 0.95rem;
}

.faq-question svg {
  color: var(--text-gray);
}

.faq-image img.rounded-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* TESTIMONIALS */
.testimonials {
  padding-bottom: 5rem;
  background-color: white;
}

.testimonials-box {
  background-color: var(--sura-cyan);
  border-radius: 16px;
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  color: white;
}

@media (max-width: 768px) {
  .testimonials-box {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.testimonial-card {
  position: relative;
  text-align: center;
}

.testimonial-card::before {
  content: "“";
  font-family: serif;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 1.5rem;
  left: -1rem;
  line-height: 1;
}

.testimonial-card::after {
  content: "”";
  font-family: serif;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  bottom: -3rem;
  right: -1rem;
  line-height: 1;
}

.testimonial-name {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.5;
  font-style: italic;
  font-weight: 400;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* ALLY SECTION */
.ally {
  background-color: #f1f5f9;
  position: relative;
  overflow: hidden;
}

.ally-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1550684376-efcbd6e3f031?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  opacity: 0.05;
  mix-blend-mode: multiply;
}

.ally-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .ally-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.ally-text h2 {
  font-size: 1.5rem;
  color: var(--sura-dark);
  margin-bottom: 1.5rem;
}

.ally-text p {
  color: var(--text-gray);
  font-size: 1rem;
  margin: 0;
}

.ally-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: flex-start;
}

/* FINAL CTA */
.final-cta {
  background-color: #0f4a8a;
  color: white;
  padding: 5rem 1rem;
}

.final-cta h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.final-cta-text {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 3rem;
}

.cta-banner {
  background-color: var(--sura-blue);
  display: inline-block;
  padding: 2.5rem 4rem;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.cta-note {
  font-size: 1.15rem;
  line-height: 1.4;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .cta-banner {
    padding: 2rem 1.5rem;
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 340px;
    white-space: nowrap;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* FOOTER */
.footer {
  padding: 1.5rem 1rem;
  background-color: var(--sura-blue);
}