/* ==========================================================================
   Relaise SEO Suite — landing page styles
   White-labeled from the marketgoo storefront template.
   Drop-in replacement for style.css scoped to .seo-suite
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --re-navy:     #000066;
  --re-navy-d:   #00004d;
  --re-navy-f:   rgba(0,0,102,.07);
  --re-navy-r:   rgba(0,0,102,.15);
  --re-orange:   #ec7211;
  --re-orange-d: #d4650f;
  --re-orange-f: rgba(236,114,17,.10);
  --re-orange-r: rgba(236,114,17,.22);
  --re-ink:  #0a0d1a;
  --re-ink2: #4a4e6a;
  --re-ink3: #7a7e9a;
  --re-bg:   #ffffff;
  --re-bg2:  #f5f6fb;
  --re-bg3:  #ecedf5;
  --re-bdr:  rgba(0,0,102,.09);
  --re-bdr2: rgba(0,0,102,.18);
  --re-t: .18s;

  --re-font-display: 'Sora', 'Helvetica Neue', Arial, sans-serif;
  --re-font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --re-radius: 14px;
  --re-radius-sm: 8px;
  --re-shadow: 0 4px 24px rgba(0,0,102,.08);
  --re-shadow-lg: 0 12px 40px rgba(0,0,102,.14);
}

.seo-suite {
  font-family: var(--re-font-body);
  color: var(--re-ink);
  background: var(--re-bg);
  -webkit-font-smoothing: antialiased;
}

.seo-suite * { box-sizing: border-box; }

.seo-suite h1, .seo-suite h2, .seo-suite h3, .seo-suite h4 {
  font-family: var(--re-font-display);
  color: var(--re-navy);
  margin: 0;
  letter-spacing: -0.01em;
}

.seo-suite a { transition: color var(--re-t); }

/* ---------- wordmark (swap for <img> logo once available) ---------- */
.seo-suite .re-logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--re-font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--re-navy);
  letter-spacing: -0.02em;
}
.seo-suite .re-logo .dot { color: var(--re-orange); }
.seo-suite .re-logo .suffix {
  font-weight: 600;
  color: var(--re-ink2);
  font-size: 14px;
  margin-left: 6px;
  padding-left: 8px;
  border-left: 1px solid var(--re-bdr2);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---------- nav ---------- */
.seo-suite .navbar {
  background: var(--re-bg);
  border: none;
  border-bottom: 1px solid var(--re-bdr);
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.seo-suite .navbar .container { display: flex; align-items: center; justify-content: space-between; }
.seo-suite .navbar-nav { display: flex; gap: 4px; }
.seo-suite .navbar-nav > li > a {
  font-family: var(--re-font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--re-ink2);
  padding: 20px 16px;
  border-radius: var(--re-radius-sm);
}
.seo-suite .navbar-nav > li > a:hover,
.seo-suite .navbar-nav > li > a:focus {
  color: var(--re-navy);
  background: var(--re-navy-f);
  text-decoration: none;
}

/* ---------- hero ---------- */
.seo-suite .hero {
  position: relative;
  background: linear-gradient(180deg, var(--re-bg2) 0%, var(--re-bg) 100%);
  padding: 72px 0 56px;
  overflow: hidden;
  text-align: center;
}
.seo-suite .hero .container { position: relative; z-index: 2; max-width: 720px; }
.seo-suite .hero .logo { margin-bottom: 28px; display: flex; justify-content: center; }
.seo-suite .hero h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
}
.seo-suite .hero h2.strong-green { color: var(--re-orange); } /* legacy class name kept for tpl compat */
.seo-suite .hero h2 + h2 {
  margin-top: 14px;
  font-size: 19px;
  font-weight: 500;
  color: var(--re-ink2);
  font-family: var(--re-font-body);
  letter-spacing: 0;
}

/* signature element: rising rank-line, sits behind hero copy */
.seo-suite .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, transparent 0%, var(--re-bg) 92%),
    repeating-linear-gradient(90deg, var(--re-bdr) 0, var(--re-bdr) 1px, transparent 1px, transparent 64px);
  opacity: .6;
  z-index: 0;
}
.seo-suite .rank-line {
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  width: 100%;
  height: 140px;
  z-index: 1;
  opacity: .9;
}

/* ---------- video banner ---------- */
.seo-suite .video-banner { background: var(--re-navy); padding: 0; }
.seo-suite .video-banner .embed-responsive {
  position: relative; width: 100%; padding-top: 42%;
  max-width: 860px; margin: 0 auto;
}
.seo-suite .video-banner .embed-responsive-item {
  position: absolute; top: 40px; left: 0; width: 100%; height: calc(100% - 40px);
  border: 0;
}

/* ---------- content blocks / how-it-works ---------- */
.seo-suite .content-block { padding: 64px 0; }
.seo-suite .content-block.feature-blocks:nth-of-type(2) { background: var(--re-bg2); }

.seo-suite .feature-blocks .block {
  text-align: center;
  background: var(--re-bg);
  border: 1px solid var(--re-bdr);
  border-radius: var(--re-radius);
  padding: 32px 24px;
  height: 100%;
  transition: transform var(--re-t), box-shadow var(--re-t), border-color var(--re-t);
}
.seo-suite .feature-blocks .block:hover {
  transform: translateY(-3px);
  box-shadow: var(--re-shadow);
  border-color: var(--re-bdr2);
}
.seo-suite .feature-blocks .block img { max-height: 64px; margin-bottom: 18px; }
.seo-suite .feature-blocks .block span {
  display: block;
  font-family: var(--re-font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--re-navy);
  margin-bottom: 8px;
}
.seo-suite .feature-blocks .block p {
  color: var(--re-ink2);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}
.seo-suite .feature-wrapper .row { display: flex; flex-wrap: wrap; gap: 0; }

/* ---------- pricing / plans ---------- */
.seo-suite #features { background: var(--re-bg); }
.seo-suite .plan-container {
  display: flex;
  gap: 20px;
  align-items: stretch;
  overflow-x: auto;
  padding-bottom: 8px;
}
.seo-suite .plan {
  background: var(--re-bg);
  border: 1px solid var(--re-bdr);
  border-radius: var(--re-radius);
  padding: 28px 24px;
  min-width: 240px;
  flex: 1;
  transition: border-color var(--re-t), box-shadow var(--re-t), transform var(--re-t);
}
.seo-suite .plan.labels {
  background: transparent;
  border: none;
  color: var(--re-ink3);
  font-size: 13.5px;
}
.seo-suite .plan:not(.labels):hover {
  border-color: var(--re-orange-r);
  box-shadow: var(--re-shadow);
  transform: translateY(-2px);
}
.seo-suite .plan .header { text-align: center; margin-bottom: 20px; }
.seo-suite .plan .header h4 { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.seo-suite .plan .header h4 span:first-child {
  font-family: var(--re-font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--re-navy);
}
.seo-suite .plan .best-value {
  display: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--re-orange);
  background: var(--re-orange-f);
  border: 1px solid var(--re-orange-r);
  border-radius: 999px;
  padding: 3px 10px;
}
/* surface "Best value" on a designated plan option via configoption1 class from tpl, e.g. plan.pro */
.seo-suite .plan.pro .best-value,
.seo-suite .plan.recommended .best-value { display: inline-block; }
.seo-suite .plan.pro,
.seo-suite .plan.recommended {
  border-color: var(--re-orange-r);
  box-shadow: var(--re-shadow-lg);
}
.seo-suite .plan .pricing {
  display: block;
  font-family: var(--re-font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--re-ink);
}
.seo-suite .plan ul { list-style: none; padding: 0; margin: 0 0 22px; }
.seo-suite .plan:not(.labels) ul li {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid var(--re-bdr);
  font-size: 14px;
  color: var(--re-ink2);
}
.seo-suite .plan.labels ul li {
  padding: 10px 0;
  border-top: 1px solid var(--re-bdr);
  font-weight: 600;
  color: var(--re-ink);
}
.seo-suite .plan ul li:first-child { border-top: none; }
.seo-suite .plan ul li img { height: 16px; }

.seo-suite .btn-signup {
  width: 100%;
  background: var(--re-orange);
  border: none;
  color: #fff;
  font-family: var(--re-font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 18px;
  border-radius: var(--re-radius-sm);
  transition: background var(--re-t), transform var(--re-t);
}
.seo-suite .btn-signup:hover { background: var(--re-orange-d); transform: translateY(-1px); }
.seo-suite .btn-signup:active { transform: translateY(0); }

.seo-suite .currency-selector,
.seo-suite select.form-control {
  border: 1px solid var(--re-bdr2);
  border-radius: var(--re-radius-sm);
  color: var(--re-ink2);
  font-size: 13.5px;
  padding: 8px 10px;
}

/* ---------- testimonials ---------- */
.seo-suite .testimonials { background: var(--re-navy); color: #fff; }
.seo-suite .testimonials .testimonial {
  font-family: var(--re-font-display);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto 28px;
  text-align: center;
  color: #fff;
}
.seo-suite .testimonials .testimonial::before { content: "\201C"; color: var(--re-orange); }
.seo-suite .testimonials .testimonial::after { content: "\201D"; color: var(--re-orange); }
.seo-suite .testimonials .user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.seo-suite .testimonials .user img {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--re-orange);
}
.seo-suite .testimonials .bio { text-align: left; }
.seo-suite .testimonials .bio span { display: block; font-weight: 700; }
.seo-suite .testimonials .bio em {
  display: block; font-style: normal; font-size: 13px; color: rgba(255,255,255,.65);
}
.seo-suite .testimonials .bio a {
  font-size: 12.5px; color: var(--re-orange); font-weight: 600;
}
.seo-suite .carousel-indicators li { border-color: rgba(255,255,255,.4); }
.seo-suite .carousel-indicators .active { background: var(--re-orange); border-color: var(--re-orange); }

/* ---------- faqs ---------- */
.seo-suite .faqs { background: var(--re-bg2); }
.seo-suite .faqs h3 { margin-bottom: 40px; font-size: 26px; }
.seo-suite .faq {
  background: var(--re-bg);
  border: 1px solid var(--re-bdr);
  border-radius: var(--re-radius);
  padding: 24px;
  height: 100%;
}
.seo-suite .faq h4 {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.seo-suite .faq p { color: var(--re-ink2); font-size: 14.5px; line-height: 1.65; }
.seo-suite .faq img { border-radius: var(--re-radius-sm); margin-top: 10px; max-width: 100%; }

/* ---------- responsive ---------- */
@media (max-width: 768px) {
  .seo-suite .hero { padding: 48px 0 36px; }
  .seo-suite .hero h2 { font-size: 28px; }
  .seo-suite .hero h2 + h2 { font-size: 16px; }
  .seo-suite .content-block { padding: 44px 0; }
  .seo-suite .plan-container { flex-direction: column; }
  .seo-suite .plan { min-width: 0; }
}

/* ---------- accessibility ---------- */
.seo-suite a:focus-visible,
.seo-suite button:focus-visible,
.seo-suite select:focus-visible {
  outline: 2px solid var(--re-orange);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .seo-suite * { transition: none !important; animation: none !important; }
}


/* ==========================================
   RELAISE SEO SUITE
   Product Platform Layout
========================================== */

.seo-suite {
    background: #fff;
}

/* ==========================================
   HERO
========================================== */

.seo-suite .hero {
    background: #fff;
    padding: 120px 0 100px;
    text-align: center;
    border-bottom: 1px solid #eef2f7;
}

.seo-suite .hero .container {
    max-width: 900px;
}

.seo-suite .product-badge {
    display: inline-block;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #000066;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.seo-suite .hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 30px;
}

.seo-suite .hero-description {
    font-size: 21px;
    line-height: 1.8;
    color: #6b7280;
    max-width: 760px;
    margin: auto;
}

.seo-suite .hero-buttons {
    margin-top: 45px;
}

.seo-suite .hero-buttons .btn {
    padding: 14px 32px;
    font-weight: 700;
    border-radius: 10px;
    margin: 0 8px;
}

.seo-suite .btn-primary {
    background: #000066;
    border: none;
    color: #fff;
}

.seo-suite .btn-primary:hover {
    background: #00004d;
}

.seo-suite .btn-outline {
    background: #fff;
    border: 1px solid #d1d5db;
    color: #111827;
}

.seo-suite .btn-outline:hover {
    background: #f8fafc;
}

/* ==========================================
   NAVBAR
========================================== */

.seo-suite .seo-navbar {
    background: #fff;
    border-top: none;
    border-bottom: 1px solid #eef2f7;
    box-shadow: none;
}

.seo-suite .navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.seo-suite .navbar-nav > li > a {
    padding: 20px;
    font-weight: 600;
    color: #4b5563;
}

.seo-suite .navbar-nav > li > a:hover {
    background: transparent;
    color: #000066;
}

/* ==========================================
   SECTIONS
========================================== */

.seo-suite section {
    padding: 100px 0;
}

.seo-suite .section-header {
    text-align: center;
    max-width: 700px;
    margin: auto auto 70px;
}

.seo-suite .section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111827;
}

.seo-suite .section-header p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.8;
}

/* ==========================================
   OVERVIEW
========================================== */

.seo-suite .overview-section {
    text-align: center;
}

.seo-suite .overview-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #111827;
}

.seo-suite .overview-section p {
    max-width: 800px;
    margin: auto;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.9;
}

/* ==========================================
   FEATURES
========================================== */

.seo-suite .features-grid {
    background: #fafbfc;
}

.seo-suite .feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 40px;
    margin-bottom: 30px;
    transition: .3s;
    height: 100%;
}

.seo-suite .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
}

.seo-suite .icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(0,0,102,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.seo-suite .icon-box img {
    width: 34px;
    height: 34px;
}

.seo-suite .feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111827;
}

.seo-suite .feature-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* ==========================================
   USE CASES
========================================== */

.seo-suite .use-cases {
    background: #fff;
}

.seo-suite .use-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 40px;
    text-align: center;
    height: 100%;
}

.seo-suite .use-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.seo-suite .use-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* ==========================================
   PRICING
========================================== */

.seo-suite .pricing-section {
    background: #fafbfc;
}

.seo-suite .plan {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: none;
}

.seo-suite .plan:hover {
    border-color: #000066;
    transform: translateY(-5px);
}

.seo-suite .plan .pricing {
    color: #111827;
    font-size: 36px;
}

.seo-suite .btn-signup {
    background: #000066;
    border-radius: 10px;
}

.seo-suite .btn-signup:hover {
    background: #00004d;
}

/* ==========================================
   FAQ
========================================== */

.seo-suite .faqs {
    background: #fff;
}

.seo-suite .faq {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 35px;
}

.seo-suite .faq h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #111827;
}

.seo-suite .faq p {
    color: #6b7280;
    line-height: 1.9;
}

/* ==========================================
   CTA
========================================== */

.seo-suite .cta-section {
    background: #000066;
    color: #fff;
    text-align: center;
}

.seo-suite .cta-section h2 {
    color: #fff;
    font-size: 46px;
    margin-bottom: 25px;
}

.seo-suite .cta-section p {
    font-size: 20px;
    color: rgba(255,255,255,.8);
    margin-bottom: 40px;
}

.seo-suite .cta-section .btn {
    background: #ec7211;
    border: none;
    color: #fff;
}

.seo-suite .cta-section .btn:hover {
    background: #d4650f;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .seo-suite .hero {
        padding: 80px 0;
    }

    .seo-suite .hero h1 {
        font-size: 42px;
    }

    .seo-suite .hero-description {
        font-size: 18px;
    }

    .seo-suite section {
        padding: 70px 0;
    }

    .seo-suite .section-header h2,
    .seo-suite .overview-section h2 {
        font-size: 32px;
    }

    .seo-suite .navbar-nav {
        display: block;
    }

    .seo-suite .hero-buttons .btn {
        display: block;
        margin: 10px 0;
    }
}

.pricing-section {
    background: #f8fafc;
}

.plan-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.plan {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    width: 330px;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
}

.plan.pro,
.plan.recommended {
    border: 2px solid #000066;
    transform: scale(1.04);
}

.plan .header {
    text-align: center;
    margin-bottom: 35px;
}

.plan .header h4 {
    font-size: 30px;
    color: #111827;
    margin-bottom: 20px;
}

.plan .pricing {
    font-size: 48px;
    font-weight: 800;
    color: #000066;
}

.plan ul {
    margin-top: 30px;
}

.plan ul li {
    padding: 15px 0;
    border-top: 1px solid #f1f5f9;
    color: #4b5563;
}

.btn-signup {
    background: #000066;
    border-radius: 12px;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 30px;
}

.btn-signup:hover {
    background: #00004d;
}