/*
 * Theme Name:  Restore the Day Child
 * Theme URI:   https://restoretheday.com
 * Description: GeneratePress child theme — Restore the Day brand tokens and component styles.
 * Author:      The Marketing Squad
 * Template:    generatepress
 * Version:     1.0.0
 */

/* ==========================================================
   GENERATEPRESS OVERRIDES
   Remove default GP content padding so page sections sit
   flush to the viewport edges.
   ========================================================== */

/* No horizontal padding on full pages */
.rtd-full-page.inside-article,
.rtd-full-page .entry-content {
    padding: 0;
    margin: 0;
}

/* Remove GP's default max-width constraint on page content */
.rtd-site .page .inside-article {
    max-width: none;
    padding: 0;
}

/* Ensure the content area spans full width */
.rtd-site .page .content-area,
.rtd-site .page .site-content,
.rtd-site .page #content {
    width: 100%;
    max-width: none;
    padding: 0;
}

/* Remove top margin GP adds below the nav */
.rtd-site .page .content-area {
    margin-top: 0;
}

/* Push page content below the sticky nav (80px height) */
.rtd-site .page .content-area {
    padding-top: 80px;
}

/*
 * NOTE — Google Fonts:
 * Enqueue Poppins in your child theme's functions.php:
 *
 *   wp_enqueue_style(
 *     'rtd-poppins',
 *     'https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap',
 *     [], null
 *   );
 */

/* ==========================================================
   BRAND TOKENS
   ========================================================== */
:root {
  --rtd-daybreak:      #254688;
  --rtd-daybreak-soft: #3b5ea3;
  --rtd-sky:           #4388f7;
  --rtd-sunlit:        #EE7B44;
  --rtd-sunlit-soft:   #f5a37a;
  --rtd-sunlit-hover:  #e26a31;
  --rtd-ink:           #1b2436;
  --rtd-muted:         #5a6477;
  --rtd-paper:         #FAFAF6;
  --rtd-cream:         #FBF6EC;
  --rtd-white:         #ffffff;
  --rtd-rule:          #E8E4DA;
  --rtd-card-shadow:   0 1px 2px rgba(20,30,50,0.04), 0 8px 24px rgba(20,30,50,0.06);
  --rtd-card-shadow-hv:0 4px 8px rgba(20,30,50,0.06), 0 24px 48px rgba(20,30,50,0.12);
  --rtd-icon-white:    url('https://restorethedstg.wpenginepowered.com/wp-content/uploads/2026/05/Restore-the-Day-Icon-White.svg');
}

/* ==========================================================
   BASE OVERRIDES (GeneratePress-safe)
   ========================================================== */

/* Heavier bold weight to match mockup (Poppins 800) */
b, strong { font-weight: 800; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--rtd-ink);
  background: var(--rtd-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Inner container — max-width wrapper inside every section */
.rtd-inner {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
.rtd-inner--narrow { max-width: 820px; }
.rtd-inner--mid    { max-width: 1080px; }

/* ==========================================================
   SHARED TYPOGRAPHY
   ========================================================== */
.rtd-eyebrow {
  font-weight: 300 !important;
  font-size: 18px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--rtd-sunlit) !important;
  margin: 0 0 22px !important;
}
.rtd-eyebrow--sky { color: var(--rtd-sky) !important; }

/* ==========================================================
   SHARED BUTTONS
   ========================================================== */
.rtd-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 36px;
  border-radius: 5px;
  transition: all 0.22s ease;
  cursor: pointer;
}
.rtd-btn--primary {
  background: var(--rtd-sunlit);
  color: var(--rtd-white);
  border: 2px solid var(--rtd-sunlit);
  box-shadow: 0 8px 22px rgba(238,123,68,0.32);
}
.rtd-btn--primary:hover {
  background: var(--rtd-sunlit-hover);
  border-color: var(--rtd-sunlit-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(238,123,68,0.38);
  color: var(--rtd-white);
}
.rtd-btn--ghost {
  background: transparent;
  color: var(--rtd-white);
  border: 2px solid rgba(255,255,255,0.85);
}
.rtd-btn--ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--rtd-white);
  transform: translateY(-1px);
  color: var(--rtd-white);
}
.rtd-btn--dark {
  background: var(--rtd-daybreak);
  color: var(--rtd-white);
  box-shadow: 0 8px 22px rgba(37,70,136,0.22);
}
.rtd-btn--dark:hover {
  background: var(--rtd-daybreak-soft);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(37,70,136,0.30);
  color: var(--rtd-white);
}
.rtd-btn--pill {
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 13px;
  letter-spacing: 0.12em;
  background: var(--rtd-sunlit);
  color: var(--rtd-white);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}
.rtd-btn--pill:hover {
  background: #d96a35;
  transform: translateX(2px);
  color: var(--rtd-white);
}

/* ==========================================================
   HEADER / NAV
   ========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(37,70,136,0.08);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 36px;
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo svg {
  height: 50px;
  width: auto;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-menu a {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rtd-daybreak);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--rtd-sunlit);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }
/* ==========================================================
   MOBILE NAV — two-row layout
   Row 1: logo centered | Row 2: hamburger + CTA
   ========================================================== */
@media (max-width: 880px) {

  .nav { height: auto; padding: 0 24px; }

  .nav-inner {
    flex-wrap: wrap;
    padding: 0;
    align-items: center;
    gap: 0;
  }

  /* Row 1 — logo centered, full width */
  .logo {
    width: 100%;
    justify-content: center;
    padding: 16px 0 14px;
    border-bottom: 1px solid rgba(37,70,136,0.08);
    order: 0;
  }

  /* Row 2 — hamburger left, CTA right */
  .nav-right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 18px 0;
    gap: 0;
    order: 1;
  }

  /* Hamburger button */
  .nav-hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1.5px solid rgba(37,70,136,0.22);
    border-radius: 5px;
    cursor: pointer;
    padding: 9px;
    flex-shrink: 0;
    order: 1;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .nav-hamburger:hover,
  .nav-hamburger[aria-expanded="true"] {
    background: rgba(37,70,136,0.06);
    border-color: rgba(37,70,136,0.40);
  }

  /* CTA pushed to the right */
  .nav-cta { margin-left: auto; order: 2; }

  /* Nav menu — hidden by default, full width when open */
  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    border-top: 1px solid rgba(37,70,136,0.08);
    margin-top: 10px;
    order: 3;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu li { padding: 0; }
  .nav-menu a {
    display: block;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(37,70,136,0.06);
    font-size: 13px;
  }
  .nav-menu li:last-child a { border-bottom: none; }
}
.nav-cta {
  display: inline-block;
  background: var(--rtd-sunlit);
  color: var(--rtd-white) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover {
  background: var(--rtd-sunlit-hover);
  transform: translateY(-1px);
  color: var(--rtd-white) !important;
}

/* ==========================================================
   SECTION 1 — HERO
   ========================================================== */
.rtd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rtd-white);
  overflow: hidden;
  padding: 120px 32px 80px;
  /* Set background-image as inline style on the section element:
     style="--rtd-hero-bg: url('YOUR_UPLOADED_IMAGE_URL')"        */
  background-color: var(--rtd-daybreak);
  background-image: var(--rtd-hero-bg);
  background-size: cover;
  background-position: 20% center;
}
.rtd-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,26,63,0.70) 0%, rgba(10,26,63,0.80) 100%);
  z-index: 0;
}
.rtd-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.rtd-hero__pre {
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rtd-sunlit);
  margin: 0 0 24px;
}
.rtd-hero__h1 {
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.08;
  color: var(--rtd-white);
  margin: 0 0 28px;
  letter-spacing: -0.015em;
}
@media (min-width: 768px) {
  .rtd-hero__h1 { white-space: nowrap; }
}
.rtd-hero__sub {
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0 auto 44px;
  max-width: 820px;
}
.rtd-hero__ctas {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ==========================================================
   ANNOUNCEMENT BAND
   ========================================================== */
.rtd-announce {
  background: var(--rtd-cream);
  border-bottom: 1px solid var(--rtd-rule);
  padding: 22px 32px 20px;
}
.rtd-announce__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.rtd-announce__text {
  font-size: 15px;
  font-weight: 400;
  color: var(--rtd-ink);
  line-height: 1.55;
  margin: 0 0 10px;
}
.rtd-announce__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rtd-sunlit);
  text-decoration: none;
  border-bottom: 1px solid rgba(238,123,68,0.30);
  padding-bottom: 3px;
  transition: border-color 0.2s ease;
}
.rtd-announce__cta:hover {
  border-bottom-color: var(--rtd-sunlit);
  color: var(--rtd-sunlit);
}
.rtd-announce__text strong { color: var(--rtd-daybreak); font-weight: 600; }

/* ==========================================================
   SECTION 2 — PORTAL (audience self-select)
   ========================================================== */
.rtd-portal {
  padding: 96px 32px 110px;
  background: var(--rtd-white);
}

/* Positioning: logo 1/3, statement 2/3 */
.rtd-position {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 18px;
}
.rtd-position__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.rtd-position__logo img {
  width: 100%;
  max-width: 280px;
  height: auto;
}
.rtd-position__body {}
.rtd-position__statement {
  font-weight: 400;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.6;
  color: var(--rtd-ink);
  margin: 0 0 14px;
  letter-spacing: -0.003em;
}
.rtd-position__statement:last-of-type { margin-bottom: 0; }
.rtd-position__statement strong { color: var(--rtd-daybreak); font-weight: 600; }

/* 3-col audience card grid */
.rtd-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 72px;
}

/* Audience card */
.rtd-aud-card {
  position: relative;
  background: var(--rtd-white);
  border: 1px solid var(--rtd-rule);
  border-radius: 14px;
  box-shadow: var(--rtd-card-shadow);
  transition: transform 0.32s cubic-bezier(0.2,0.7,0.2,1),
              box-shadow 0.32s cubic-bezier(0.2,0.7,0.2,1),
              border-color 0.32s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.rtd-aud-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--rtd-card-shadow-hv);
  border-color: var(--rtd-sunlit-soft);
}
.rtd-aud-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 2.25;
  overflow: hidden;
  background: var(--rtd-rule);
}
.rtd-aud-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rtd-aud-content {
  padding: 28px 32px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rtd-aud-title {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rtd-daybreak);
  margin: 0 0 12px;
}
.rtd-aud-hook {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: var(--rtd-ink);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.rtd-aud-body {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--rtd-muted);
  margin: 0 0 22px;
}
.rtd-aud-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: var(--rtd-sunlit);
  color: var(--rtd-white);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
  margin-top: auto;
}
.rtd-aud-cta:hover {
  background: #d96a35;
  transform: translateX(2px);
  color: var(--rtd-white);
}

/* ==========================================================
   SECTION 3 — STAKES
   ========================================================== */
.rtd-stakes {
  position: relative;
  overflow: hidden;
  background: var(--rtd-daybreak);
  color: var(--rtd-white);
  padding: 110px 32px;
}
/* Oversized white brand icon watermark — set --rtd-icon-white in Additional CSS
   after uploading Restore-the-Day-Icon-White.svg to the Media Library:
   :root { --rtd-icon-white: url('PASTE_SVG_URL_HERE'); } */
.rtd-stakes::before {
  content: "";
  position: absolute;
  left: -230px;
  top: 50%;
  width: 920px;
  height: 920px;
  transform: translateY(-50%);
  background-image: var(--rtd-icon-white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.rtd-stakes > * { position: relative; z-index: 1; }
@media (max-width: 768px) {
  .rtd-stakes::before { width: 620px; height: 620px; left: -200px; }
}
.rtd-stakes__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 72px;
  align-items: center;
}
.rtd-stakes__left {}
.rtd-stakes__left h2 {
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--rtd-white);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.rtd-stakes__left p {
  font-weight: 400;
  font-size: 17.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin: 0 0 22px;
}
.rtd-stakes__left p:last-of-type { margin-bottom: 0; }
.rtd-stakes__left p strong { color: var(--rtd-white); font-weight: 600; }
.rtd-stakes .rtd-eyebrow { color: var(--rtd-white) !important; }
.rtd-stakes__right {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  overflow: hidden;
}
.rtd-stat-block {
  padding: 26px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.rtd-stat-block:last-child { border-bottom: none; }
.rtd-stat-setting {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin: 0 0 10px;
}
.rtd-stat-number {
  font-weight: 700;
  font-size: 38px;
  color: var(--rtd-sunlit);
  margin: 0 0 10px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.rtd-stat-body {
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.rtd-stat-body strong { color: var(--rtd-white); font-weight: 600; }

/* ==========================================================
   SECTION 4 — GUIDE (pillars)
   ========================================================== */
.rtd-guide {
  background: var(--rtd-paper);
  padding: 110px 32px 120px;
}
.rtd-guide__intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.rtd-guide__intro h2 {
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.1;
  color: var(--rtd-daybreak);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.rtd-guide__lead {
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6;
  color: var(--rtd-ink);
  margin: 0 auto;
  max-width: 820px;
}
.rtd-guide__lead strong { color: var(--rtd-daybreak); font-weight: 800; }

/* 4-col pillar grid */
.rtd-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.rtd-pillar {
  padding: 38px 24px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rtd-pillar__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rtd-pillar__icon svg { width: 100%; height: 100%; }
.rtd-pillar__stat {
  font-weight: 700;
  font-size: 32px;
  color: var(--rtd-sunlit);
  margin: 0 0 14px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.rtd-pillar__title {
  font-weight: 600;
  font-size: 20px;
  color: var(--rtd-daybreak);
  margin: 0 0 10px;
  line-height: 1.25;
}
.rtd-pillar__body {
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--rtd-muted);
  margin: 0;
}
.rtd-pillar__body strong { color: var(--rtd-ink); font-weight: 500; }

/* Plan section — dark navy background */
.rtd-step__body strong { color: var(--rtd-white); font-weight: 600; }

/* ==========================================================
   SECTION 5 — PLAN (3 steps)
   ========================================================== */
.rtd-plan {
  background: var(--rtd-daybreak);
  padding: 110px 32px 120px;
}
.rtd-plan__intro {
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
}
.rtd-plan__intro h2 {
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.1;
  color: var(--rtd-white);
  margin: 0;
  letter-spacing: -0.01em;
}
/* Compact variant for How It Works page */
.rtd-plan--compact { padding: 84px 32px 92px; }
.rtd-plan--compact .rtd-plan__intro { margin-bottom: 52px; }
.rtd-plan--compact .rtd-plan__intro h2 { font-size: clamp(30px, 3.6vw, 44px); }

.rtd-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.rtd-steps::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 12%; right: 12%;
  height: 2px;
  background: var(--rtd-sunlit);
  opacity: 0.55;
  z-index: 0;
}
.rtd-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}
.rtd-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--rtd-white);
  border: 2px solid var(--rtd-sunlit);
  color: var(--rtd-sunlit);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
/* Compact step numbers for How It Works */
.rtd-plan--compact .rtd-steps::before { top: 38px; }
.rtd-plan--compact .rtd-step__num { width: 76px; height: 76px; font-size: 28px; margin-bottom: 22px; }
.rtd-step__title {
  font-weight: 600;
  font-size: 22px;
  color: var(--rtd-white);
  margin: 0 0 12px;
  line-height: 1.25;
}
.rtd-plan--compact .rtd-step__title { font-size: 19px; }
.rtd-step__body {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0 auto;
  max-width: 280px;
}
.rtd-plan--compact .rtd-step__body { font-size: 15px; }
.rtd-plan__cta-block {
  text-align: center;
  margin-top: 88px;
}
.rtd-plan--compact .rtd-plan__cta-block { margin-top: 56px; }
.rtd-plan__cta-lead {
  font-weight: 500;
  font-size: 19px;
  color: var(--rtd-white);
  margin: 0 0 24px;
  line-height: 1.4;
}

/* ==========================================================
   SECTION 6 — PROOF
   ========================================================== */
.rtd-proof {
  background: var(--rtd-white);
  padding: 110px 32px 64px;
}
.rtd-proof__intro {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}
.rtd-proof__intro h2 {
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.1;
  color: var(--rtd-daybreak);
  margin: 0;
  letter-spacing: -0.01em;
}

/* Pullquote */
.rtd-pullquote {
  margin: 0 auto 84px;
  max-width: 900px;
  padding: 0 24px;
}
.rtd-pullquote__box {
  background: var(--rtd-sky);
  border-radius: 14px;
  padding: 44px 48px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  box-shadow: 0 8px 28px rgba(67,136,247,0.22);
}
.rtd-pullquote__mark {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 140px;
  line-height: 0.78;
  color: var(--rtd-white);
  opacity: 0.78;
  flex-shrink: 0;
  margin-top: -10px;
  user-select: none;
}
.rtd-pullquote__content { flex: 1; }
.rtd-pullquote__text {
  font-weight: 500;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.45;
  color: var(--rtd-white);
  margin: 0 0 22px;
  letter-spacing: -0.005em;
}
.rtd-pullquote__attr {
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

/* Case study grid */
.rtd-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.rtd-case {
  background: var(--rtd-paper);
  border: 1px solid var(--rtd-rule);
  border-radius: 14px;
  padding: 0;
  position: relative;
  box-shadow: var(--rtd-card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(0.2,0.7,0.2,1),
              box-shadow 0.32s cubic-bezier(0.2,0.7,0.2,1),
              border-color 0.32s ease;
}
.rtd-case:hover {
  transform: translateY(-4px);
  box-shadow: var(--rtd-card-shadow-hv);
  border-color: rgba(67,136,247,0.55);
}
.rtd-case__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 2;
  overflow: hidden;
  background: var(--rtd-rule);
}
.rtd-case__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.rtd-case__content {
  padding: 32px 34px 34px;
}
.rtd-case__setting {
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rtd-daybreak);
  margin: 0 0 20px;
}
.rtd-case__stat {
  font-weight: 700;
  font-size: 64px;
  color: var(--rtd-sky);
  margin: 0 0 14px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.rtd-case__headline {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--rtd-daybreak);
  margin: 0 0 14px;
}
.rtd-case__body {
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--rtd-muted);
  margin: 0;
}
.rtd-case__body strong { color: var(--rtd-ink); font-weight: 600; }

/* ==========================================================
   SECTION 7 — WHITEPAPER DOWNLOAD
   ========================================================== */
.rtd-whitepaper {
  background: var(--rtd-paper);
  padding: 56px 32px 110px;
}
.rtd-wp-transition {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--rtd-ink);
}
.rtd-wp-transition strong { color: var(--rtd-daybreak); font-weight: 600; }
.rtd-wp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.rtd-wp-left {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}
.rtd-wp-cover {
  width: 100%;
  max-width: 340px;
  border-radius: 6px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 12px 28px rgba(20,30,50,0.18), 0 30px 60px rgba(20,30,50,0.12);
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1);
  display: block;
}
.rtd-wp-cover:hover { transform: rotate(0deg) translateY(-4px); }
.rtd-wp-cover img { width: 100%; height: auto; display: block; }
.rtd-wp-inside { width: 100%; max-width: 380px; }
.rtd-wp-inside__label {
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rtd-sunlit);
  margin: 0 0 18px;
}
.rtd-wp-inside__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rtd-wp-inside__list li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-top: 1px solid var(--rtd-rule);
  font-size: 15px;
  line-height: 1.55;
  color: var(--rtd-ink);
}
.rtd-wp-inside__list li:last-child { border-bottom: 1px solid var(--rtd-rule); }
.rtd-wp-inside__list li strong { color: var(--rtd-daybreak); font-weight: 600; }
.rtd-wp-inside__list li::before {
  content: "";
  position: absolute;
  left: 6px; top: 19px;
  width: 12px; height: 2px;
  background: var(--rtd-sunlit);
  border-radius: 2px;
}

/* Whitepaper form card */
.rtd-wp-form-card {
  background: var(--rtd-white);
  border: 1px solid var(--rtd-rule);
  border-radius: 14px;
  padding: 40px 38px 36px;
  box-shadow: var(--rtd-card-shadow);
}
.rtd-wp-form-card h3 {
  font-weight: 600;
  font-size: 22px;
  color: var(--rtd-daybreak);
  margin: 0 0 6px;
  line-height: 1.25;
}
.rtd-wp-form-card p {
  font-weight: 400;
  font-size: 14px;
  color: var(--rtd-muted);
  margin: 0 0 26px;
}

/* ==========================================================
   SECTION 8 — CLOSING CTA BAND
   ========================================================== */
.rtd-cta-band {
  background: var(--rtd-white);
  padding: 110px 32px 120px;
}
.rtd-cta-band__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.rtd-cta-band h2 {
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  color: var(--rtd-daybreak);
  margin: 0 0 32px;
  letter-spacing: -0.014em;
}
.rtd-cta-band p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--rtd-ink);
  margin: 0 auto 22px;
 
}
.rtd-cta-band p:last-of-type { margin-bottom: 40px; }

/* ==========================================================
   LANDING PAGE — MINIMAL HEADER
   ========================================================== */
.rtd-lp-header {
  background: var(--rtd-white);
  border-bottom: 1px solid var(--rtd-rule);
  padding: 0 36px;
  height: 72px;
  display: flex;
  align-items: center;
}
.rtd-lp-header__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rtd-lp-header__logo img {
  height: 44px;
  width: auto;
  display: block;
}
.rtd-lp-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--rtd-daybreak);
  text-decoration: none;
  transition: color 0.2s ease;
}
.rtd-lp-header__phone:hover { color: var(--rtd-sunlit); }

/* ==========================================================
   LANDING PAGE — TRUST STRIP
   ========================================================== */
.rtd-trust-strip {
  background: var(--rtd-paper);
  border-bottom: 1px solid var(--rtd-rule);
  padding: 64px 32px;
}
.rtd-trust-strip__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.rtd-trust-item__number {
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--rtd-daybreak);
  line-height: 1;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.rtd-trust-item__label {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--rtd-muted);
  margin: 0;
}
.rtd-trust-item__label strong { color: var(--rtd-ink); font-weight: 600; }

/* ==========================================================
   LANDING PAGE — TESTIMONIAL WRAPPER
   ========================================================== */
.rtd-lp-quote {
  background: var(--rtd-white);
  padding: 96px 32px;
}

/* ==========================================================
   LANDING PAGE — CONVERSION FORM SECTION
   ========================================================== */
.rtd-convert {
  background: var(--rtd-paper);
  padding: 96px 32px 110px;
}
.rtd-convert__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.rtd-convert__left h2 {
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  color: var(--rtd-daybreak);
  margin: 0 0 18px;
  letter-spacing: -0.012em;
}
.rtd-convert__left p {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--rtd-ink);
  margin: 0 0 28px;
}
.rtd-convert__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rtd-convert__list li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-top: 1px solid var(--rtd-rule);
  font-size: 15px;
  line-height: 1.55;
  color: var(--rtd-ink);
}
.rtd-convert__list li:last-child { border-bottom: 1px solid var(--rtd-rule); }
.rtd-convert__list li::before {
  content: "";
  position: absolute;
  left: 6px; top: 19px;
  width: 12px; height: 2px;
  background: var(--rtd-sunlit);
  border-radius: 2px;
}
.rtd-convert__list li strong { color: var(--rtd-daybreak); font-weight: 600; }
.rtd-convert__form-card {
  background: var(--rtd-white);
  border: 1px solid var(--rtd-rule);
  border-radius: 14px;
  padding: 44px 40px;
  box-shadow: var(--rtd-card-shadow);
  position: sticky;
  top: 24px;
}
.rtd-convert__form-card h3 {
  font-weight: 700;
  font-size: 26px;
  color: var(--rtd-daybreak);
  margin: 0 0 8px;
  line-height: 1.2;
}
.rtd-convert__form-card p {
  font-size: 15px;
  color: var(--rtd-muted);
  margin: 0 0 28px;
  line-height: 1.5;
}

/* ==========================================================
   LANDING PAGE — MINIMAL FOOTER
   ========================================================== */
.rtd-lp-footer {
  background: var(--rtd-daybreak);
  padding: 28px 36px;
}
.rtd-lp-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.rtd-lp-footer img {
  height: 50px;
  width: auto;
  display: block;
}
.rtd-lp-footer__legal {
  font-size: 12.5px;
  color: rgba(255,255,255,0.50);
  margin: 0;
}
.rtd-lp-footer__legal a {
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  margin-left: 18px;
  transition: color 0.2s ease;
}
.rtd-lp-footer__legal a:hover { color: var(--rtd-sunlit); }

/* Landing page responsive */
@media (max-width: 860px) {
  .rtd-convert__inner { grid-template-columns: 1fr; }
  .rtd-convert__form-card { position: static; }
  .rtd-trust-strip__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================
   CONTACT PAGE — FORM SECTION
   ========================================================== */
.rtd-contact {
  background: var(--rtd-white);
  padding: 96px 32px 110px;
}
.rtd-contact__inner {
  max-width: 820px;
  margin: 0 auto;
}
.rtd-contact__intro {
  text-align: center;
  margin-bottom: 48px;
}
.rtd-contact__intro h2 {
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  color: var(--rtd-daybreak);
  margin: 0 0 16px;
  letter-spacing: -0.012em;
}
.rtd-contact__intro p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--rtd-muted);
  margin: 0;
}
.rtd-contact__form-card {
  background: var(--rtd-white);
  border: 1px solid var(--rtd-rule);
  border-radius: 14px;
  padding: 48px 44px;
  box-shadow: var(--rtd-card-shadow);
}

/* ==========================================================
   HOW IT WORKS — PAGE TITLE BAND
   ========================================================== */
.rtd-title-band {
  position: relative;
  margin-top: 80px;
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 56px 32px;
  background-color: var(--rtd-daybreak);
}
.rtd-title-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--rtd-icon-white);
  background-size: 920px 920px;
  background-position: center -230px;
  background-repeat: no-repeat;
  z-index: 0;
}
.rtd-title-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(37,70,136,0.97);
  z-index: 1;
}
.rtd-title-band__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.rtd-title-band h1 {
  font-weight: 700;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.05;
  color: var(--rtd-white);
  margin: 0 0 18px;
  letter-spacing: -0.015em;
}
.rtd-title-band__rule {
  width: 56px;
  height: 3px;
  background: var(--rtd-sunlit);
  border-radius: 2px;
  margin: 0 auto;
}

/* ==========================================================
   HOW IT WORKS — PROMISE SECTION
   ========================================================== */
.rtd-promise {
  padding: 96px 32px 110px;
  background: var(--rtd-white);
}
.rtd-promise__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}
.rtd-promise__content h2 {
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  color: var(--rtd-daybreak);
  margin: 0 0 28px;
  letter-spacing: -0.012em;
}
.rtd-promise__content p {
  font-weight: 400;
  font-size: clamp(16.5px, 1.45vw, 18.5px);
  line-height: 1.65;
  color: var(--rtd-ink);
  margin: 0 0 18px;
}
.rtd-promise__we-can-help {
  font-weight: 700;
  color: var(--rtd-daybreak);
  font-size: clamp(22px, 1.9vw, 26px);
  margin: 8px 0 20px;
  letter-spacing: -0.005em;
}
.rtd-when-list {
  margin: 10px 0 22px;
  padding-left: 26px;
  list-style: none;
}
.rtd-when-list li {
  position: relative;
  font-weight: 400;
  font-size: clamp(16.5px, 1.45vw, 18.5px);
  line-height: 1.45;
  color: var(--rtd-ink);
  margin: 0 0 2px;
}
.rtd-when-list li::before {
  content: "";
  position: absolute;
  left: -16px; top: 0.65em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rtd-sky);
}
/* Photo placeholder frame */
.rtd-promise__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #d8d4cb 0%, #c2bdb1 50%, #a8a298 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(20,30,50,0.04), 0 16px 36px rgba(20,30,50,0.08);
}

/* ==========================================================
   HOW IT WORKS — HELP BAND
   ========================================================== */
.rtd-help-band {
  background: var(--rtd-sky);
  padding: 88px 32px 96px;
  text-align: center;
}
.rtd-help-band__inner { max-width: 820px; margin: 0 auto; }
.rtd-help-band__lead {
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.25;
  color: var(--rtd-white);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.rtd-help-band__body {
  font-weight: 400;
  font-size: clamp(16.5px, 1.55vw, 18.5px);
  line-height: 1.65;
  color: rgba(255,255,255,0.95);
  margin: 28px 0 0;
}
.rtd-help-band__body strong { color: var(--rtd-white); font-weight: 700; }
.rtd-help-band__emphasis {
  font-weight: 700;
  font-size: clamp(18px, 1.75vw, 21px);
  color: var(--rtd-white);
  margin: 24px 0 0;
  letter-spacing: -0.003em;
}
.rtd-help-band__cta-lead {
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 19px);
  color: rgba(255,255,255,0.95);
  margin: 40px 0 18px;
  line-height: 1.5;
}

/* ==========================================================
   HOW IT WORKS — STORIES
   ========================================================== */
.rtd-stories {
  background: var(--rtd-white);
  padding: 110px 32px 120px;
}
.rtd-stories__inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.rtd-stories__title {
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  color: var(--rtd-daybreak);
  margin: 0 0 18px;
  letter-spacing: -0.012em;
}
.rtd-stories__lead {
  font-weight: 400;
  font-size: clamp(17px, 1.55vw, 19.5px);
  line-height: 1.55;
  color: var(--rtd-muted);
  margin: 0 auto 56px;
  max-width: 820px;
}
.rtd-story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: left;
}
.rtd-story-card {
  position: relative;
  background: var(--rtd-cream);
  border: 1px solid rgba(37,70,136,0.08);
  border-radius: 14px;
  padding: 44px 40px 38px;
  box-shadow: var(--rtd-card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(0.2,0.7,0.2,1),
              box-shadow 0.32s cubic-bezier(0.2,0.7,0.2,1),
              border-color 0.32s ease;
}
.rtd-story-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rtd-sunlit);
}
.rtd-story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rtd-card-shadow-hv);
  border-color: var(--rtd-sunlit-soft);
}
.rtd-story-kicker {
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rtd-sky);
  margin: 0 0 14px;
}
.rtd-story-title {
  font-weight: 700;
  font-size: clamp(22px, 1.9vw, 26px);
  line-height: 1.25;
  color: var(--rtd-daybreak);
  margin: 0 0 22px;
  letter-spacing: -0.008em;
}
.rtd-story-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--rtd-ink);
  margin: 0 0 14px;
}
.rtd-story-punch {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.35;
  color: var(--rtd-daybreak);
  margin: auto 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(37,70,136,0.10);
  letter-spacing: -0.003em;
}
.rtd-story-punch p { margin-bottom: 0; }
.rtd-story-punch img {
  width: 32px; height: 32px;
  flex-shrink: 0;
}

/* ==========================================================
   HOW IT WORKS — WHITEPAPER CTA BAND
   ========================================================== */
.rtd-wp-cta {
  background: var(--rtd-paper);
  padding: 88px 32px 96px;
}
.rtd-wp-cta__inner {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: center;
}
.rtd-wp-cta__cover-wrap {
  position: relative;
  width: 220px;
  perspective: 1400px;
}
.rtd-wp-cta__cover {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
  transform: rotate(-3deg) rotateY(-8deg);
  box-shadow: 0 1px 2px rgba(15,30,70,0.10), 0 10px 22px rgba(15,30,70,0.14), 0 28px 50px rgba(15,30,70,0.18);
  transition: transform 0.45s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.45s ease;
}
.rtd-wp-cta__cover:hover {
  transform: rotate(-1deg) rotateY(-3deg) translateY(-6px);
  box-shadow: 0 1px 2px rgba(15,30,70,0.10), 0 14px 28px rgba(15,30,70,0.18), 0 36px 64px rgba(15,30,70,0.22);
}
.rtd-wp-cta__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.rtd-wp-cta__tag {
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  color: var(--rtd-daybreak);
  margin: 0 0 12px;
  letter-spacing: -0.008em;
}
.rtd-wp-cta__sub {
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: var(--rtd-muted);
  margin: 0;
  max-width: 560px;
}
.rtd-wp-cta__action { margin-top: 28px; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--rtd-daybreak);
  color: rgba(255,255,255,0.6);
  padding: 64px 32px 28px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 44px;
}
@media (max-width: 920px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-brand img {
  height: 90px;
  width: auto;
  display: block;
}
.footer-brand-tag {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin: 0;
  max-width: 280px;
}
.footer-col h4 {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin: 0 0 14px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--rtd-sunlit); }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.60);
  transition: color 0.2s ease;
}
.footer-contact a:hover svg { color: var(--rtd-sunlit); }
.footer-bottom {
  max-width: 1180px;
  margin: 48px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom .legal a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-left: 18px;
}
.footer-bottom .legal a:hover { color: var(--rtd-sunlit); }

/* ==========================================================
   GRAVITY FORMS — RTD Brand Styles (markup version 2 / GF 2.5+)
   Uses .gravity-theme selectors + !important to beat GF defaults
   ========================================================== */

/* Override GF's primary colour CSS variables at the source */
.gform_wrapper.gravity-theme {
  --color-primary: #EE7B44;
  --color-primary-rgb: 238, 123, 68;
  --input-border-color: #E8E4DA;
  --input-border-color-focus: #EE7B44;
}

/* --- Field spacing --- */
.gform_wrapper.gravity-theme .gform_fields { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.gform_wrapper.gravity-theme .gfield { margin-bottom: 16px !important; padding: 0 !important; }
.gform_wrapper.gravity-theme .gfield:last-child { margin-bottom: 0 !important; }

/* --- Labels --- */
.gform_wrapper.gravity-theme .gfield_label {
  display: block !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  color: var(--rtd-daybreak) !important;
  margin-bottom: 6px !important;
}

/* Required indicator */
.gform_wrapper.gravity-theme .gfield_required {
  font-weight: 400 !important;
  font-size: 11.5px !important;
  color: var(--rtd-muted) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-left: 6px !important;
}

/* Description / helper text */
.gform_wrapper.gravity-theme .gfield_description {
  font-size: 13px !important;
  color: var(--rtd-muted) !important;
  line-height: 1.5 !important;
  margin-top: 4px !important;
  margin-bottom: 8px !important;
}

/* --- Inputs, selects, textareas --- */
.gform_wrapper.gravity-theme .gfield input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]),
.gform_wrapper.gravity-theme .gfield select,
.gform_wrapper.gravity-theme .gfield textarea {
  width: 100% !important;
  box-sizing: border-box !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  color: var(--rtd-ink) !important;
  background: var(--rtd-paper) !important;
  border: 1px solid var(--rtd-rule) !important;
  border-radius: 6px !important;
  padding: 12px 14px !important;
  box-shadow: none !important;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

/* Custom select arrow */
.gform_wrapper.gravity-theme .gfield select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--rtd-muted) 50%),
    linear-gradient(135deg, var(--rtd-muted) 50%, transparent 50%) !important;
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px) !important;
  background-size: 5px 5px, 5px 5px !important;
  background-repeat: no-repeat !important;
  padding-right: 36px !important;
  cursor: pointer !important;
}

/* Textarea */
.gform_wrapper.gravity-theme .gfield textarea {
  min-height: 120px !important;
  resize: vertical !important;
}

/* Focus state */
.gform_wrapper.gravity-theme .gfield input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):focus,
.gform_wrapper.gravity-theme .gfield select:focus,
.gform_wrapper.gravity-theme .gfield textarea:focus {
  outline: none !important;
  background: var(--rtd-white) !important;
  border-color: var(--rtd-sunlit) !important;
  box-shadow: 0 0 0 3px rgba(238,123,68,0.14) !important;
}

/* --- Name field: first + last side by side --- */
.gform_wrapper.gravity-theme .ginput_container_name {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}
.gform_wrapper.gravity-theme .ginput_container_name span { display: flex !important; flex-direction: column !important; }
.gform_wrapper.gravity-theme .ginput_container_name label {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500 !important;
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--rtd-muted) !important;
  margin-bottom: 4px !important;
  display: block !important;
}
@media (max-width: 480px) {
  .gform_wrapper.gravity-theme .ginput_container_name { grid-template-columns: 1fr !important; }
}

/* --- Submit button --- */
.gform_wrapper.gravity-theme .gform_footer { padding: 0 !important; margin-top: 8px !important; }
.gform_wrapper.gravity-theme .gform_button {
  display: block !important;
  width: 100% !important;
  background: var(--rtd-sunlit) !important;
  background-color: var(--rtd-sunlit) !important;
  color: var(--rtd-white) !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 16px 24px !important;
  cursor: pointer !important;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: 0 8px 22px rgba(238,123,68,0.30) !important;
  margin-top: 22px !important;
}
.gform_wrapper.gravity-theme .gform_button:hover {
  background: var(--rtd-sunlit-hover) !important;
  background-color: var(--rtd-sunlit-hover) !important;
  color: var(--rtd-white) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 12px 28px rgba(238,123,68,0.38) !important;
}

/* --- Validation errors --- */
.gform_wrapper.gravity-theme .gfield_error .gfield_label { color: #b91c1c !important; }
.gform_wrapper.gravity-theme .gfield_error input,
.gform_wrapper.gravity-theme .gfield_error select,
.gform_wrapper.gravity-theme .gfield_error textarea {
  border-color: #ef4444 !important;
  background: #fff8f8 !important;
}
.gform_wrapper.gravity-theme .gfield_error input:focus,
.gform_wrapper.gravity-theme .gfield_error select:focus,
.gform_wrapper.gravity-theme .gfield_error textarea:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.14) !important;
}
.gform_wrapper.gravity-theme .gfield_validation_message {
  font-size: 12.5px !important;
  color: #b91c1c !important;
  font-weight: 500 !important;
  margin-top: 5px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}
.gform_wrapper.gravity-theme .gform_validation_errors {
  background: #fff0f0 !important;
  border: 1px solid rgba(239,68,68,0.30) !important;
  border-radius: 8px !important;
  padding: 16px 20px !important;
  margin-bottom: 24px !important;
}
.gform_wrapper.gravity-theme .gform_validation_errors h2,
.gform_wrapper.gravity-theme .gform_validation_errors .gform_submission_error {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #b91c1c !important;
  margin: 0 !important;
}

/* --- Confirmation message --- */
.gform_confirmation_wrapper { text-align: center; padding: 32px 24px; }
.gform_confirmation_message {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--rtd-daybreak);
  line-height: 1.55;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
  .rtd-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .rtd-stakes__inner { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 920px) {
  .rtd-wp-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  .rtd-position { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .rtd-card-grid { grid-template-columns: 1fr; gap: 20px; }
  .rtd-steps { grid-template-columns: 1fr; gap: 48px; }
  .rtd-steps::before { display: none; }
  .rtd-promise__inner { grid-template-columns: 1fr; gap: 40px; }
  .rtd-story-grid { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 800px) {
  .rtd-case-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .rtd-wp-cta__inner { grid-template-columns: 1fr; gap: 36px; justify-items: center; text-align: center; }
  .rtd-wp-cta__content { align-items: center; text-align: center; }
}
@media (max-width: 600px) {
  .rtd-pillars { grid-template-columns: 1fr; }
  .rtd-pullquote__box { padding: 32px 28px; gap: 18px; flex-direction: column; }
  .rtd-pullquote__mark { font-size: 86px; margin-top: 0; }
}
@media (max-width: 767px) {
  .rtd-hero { background-position: 20% center !important; }
}
@media (min-width: 881px) {
  .nav-hamburger { display: none; }
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
  }
}

/*ec global rules*/

.margin-b-1{
  margin-bottom:1rem;
}

.rtd-pillar .gb-shape{
  width:75px;
}