.elementor-13934 .elementor-element.elementor-element-8a9dfe4{--display:flex;}.elementor-13934 .elementor-element.elementor-element-00672c3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-13934 .elementor-element.elementor-element-184a101{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-13934 .elementor-element.elementor-element-241ba67{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-13934 .elementor-element.elementor-element-06883c3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-abf016d *//* ========== BASE / DESKTOP ========== */
:root {
  --pw-color-bg-hero: #f5f7fa;
  --pw-color-primary: var(--e-global-color-primary, #0077b6);
  --pw-color-accent: var(--e-global-color-accent, #00b4d8);
  --pw-color-text-main: var(--e-global-color-text, #1b1f23);
  --pw-color-text-muted: #5b6470;
  --pw-radius-lg: 24px;
  --pw-spacing-xl: 4rem;
  --pw-spacing-lg: 2rem;
  --pw-spacing-md: 1.25rem;
  --pw-spacing-sm: 0.75rem;
  --pw-max-width: 1200px;
}

.pw-hero {
  background: var(--pw-color-bg-hero);
  padding: 4rem 1.5rem 3.5rem;
}

.pw-hero__inner {
  max-width: var(--pw-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--pw-spacing-xl);
  align-items: center;
}

.pw-hero__content {
  color: var(--pw-color-text-main);
}

/* Eyebrow text */
.pw-hero__eyebrow {
  display: inline-block;
  margin-bottom: var(--pw-spacing-sm);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pw-color-accent);
  font-weight: 600;
}

/* HEADLINE + SUBHEAD (desktop/base) */
.pw-hero__title {
  margin: 0 0 var(--pw-spacing-md);
  font-family: var(--e-global-typography-primary-font-family);
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.pw-hero__subtitle {
  margin: 0 0 var(--pw-spacing-md);
  font-family: var(--e-global-typography-text-font-family);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--pw-color-text-muted);
  max-width: 34rem;
}

/* Benefits list */
.pw-hero__benefits {
  margin: 0 0 var(--pw-spacing-lg);
  padding-left: 1.2rem;
  color: var(--pw-color-text-main);
  font-size: 0.98rem;
}

.pw-hero__benefits li + li {
  margin-top: 0.4rem;
}

/* Actions */
.pw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

/* Buttons */
.pw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.12s ease;
}

.pw-btn--primary {
  background: var(--pw-color-primary);
  color: #ffffff;
  border: 1px solid var(--pw-color-primary);
}

.pw-btn--primary:hover {
  background: #005c8a;
  border-color: #005c8a;
  transform: translateY(-1px);
}

.pw-btn--ghost {
  background: transparent;
  color: var(--pw-color-primary);
  border: 1px solid rgba(0, 119, 182, 0.25);
}

.pw-btn--ghost:hover {
  border-color: var(--pw-color-primary);
  transform: translateY(-1px);
}

/* Right side visual */
.pw-hero__visual {
  display: flex;
  flex-direction: column;
  gap: var(--pw-spacing-md);
}

/* Frame with image */
.pw-hero__image-frame {
  border-radius: var(--pw-radius-lg);
  overflow: hidden;
  background: #d9e3f0; /* fallback color */
  min-height: 260px;
  position: relative;
}

/* Actual hero image */
.pw-hero__image-placeholder {
  width: 100%;
  height: 100%;
  background-image: url('https://your-site.com/path-to-image.jpg');
  background-size: cover;
  background-position: center;
}

.pw-hero__meta {
  font-size: 0.85rem;
  color: var(--pw-color-text-muted);
}

.pw-hero__meta-line + .pw-hero__meta-line {
  margin-top: 0.25rem;
}

/* ========== TABLET (≤ 1024px) ========== */
@media (max-width: 1024px) {
  .pw-hero {
    padding: 3rem 1.25rem 3rem;
  }

  .pw-hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: var(--pw-spacing-lg);
  }

  .pw-hero__title {
    font-size: clamp(1.9rem, 2.6vw, 2.2rem);
  }

  .pw-hero__subtitle {
    max-width: 100%;
  }

  .pw-hero__image-frame {
    min-height: 220px;
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  .pw-hero {
    padding: 2.2rem 1.1rem 2.4rem;
  }

  .pw-hero__inner {
    display: flex;
    flex-direction: column;
    gap: var(--pw-spacing-md);
    text-align: center;
  }

  .pw-hero__title {
    font-size: 1.5rem;   /* smaller mobile headline */
    line-height: 1.2;
  }

  .pw-hero__subtitle {
    font-size: 0.9rem;   /* smaller mobile subhead */
    max-width: 100%;
  }

  .pw-hero__benefits {
    font-size: 0.9rem;
    text-align: left;
  }

  .pw-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pw-btn {
    width: 100%;
    justify-content: center;
  }

  .pw-hero__image-frame {
    min-height: 200px;
  }

  .pw-hero__meta {
    font-size: 0.78rem;
    text-align: left;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c5cd31f *//* ========== SECTION 2: WHAT IS A THINTANK? ========== */

.pw-section {
  padding: 3.5rem 1.5rem;
}

.pw-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Two-column layout */
.pw-thintanks-what .pw-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Text column */
.pw-section__title {
  margin: 0 0 1rem;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: clamp(1.8rem, 2.4vw, 2.1rem);
  line-height: 1.2;
  color: var(--pw-color-text-main);
}

.pw-section__intro {
  margin: 0 0 1.5rem;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--pw-color-text-muted);
}

/* Bullet points */
.pw-thintanks-what__points {
  margin: 0;
  padding-left: 1.2rem;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 0.98rem;
  color: var(--pw-color-text-main);
  line-height: 1.5;
}

.pw-thintanks-what__points li + li {
  margin-top: 0.5rem;
}

/* Visual/card column */
.pw-thintanks-what__visual {
  display: flex;
  align-items: stretch;
}

.pw-thintanks-what__card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  padding: 1.6rem 1.8rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.pw-thintanks-what__card-title {
  margin: 0 0 0.6rem;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--pw-color-text-main);
}

.pw-thintanks-what__card-text {
  margin: 0;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--pw-color-text-muted);
}

/* ========== TABLET (≤ 1024px) ========== */
@media (max-width: 1024px) {
  .pw-section {
    padding: 3rem 1.25rem;
  }

  .pw-thintanks-what .pw-section__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2rem;
  }

  .pw-section__title {
    font-size: clamp(1.7rem, 2.2vw, 2rem);
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  .pw-section {
    padding: 2.4rem 1.1rem;
  }

  .pw-thintanks-what .pw-section__inner {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }

  .pw-section__title {
    font-size: 1.5rem;
    text-align: left;
  }

  .pw-section__intro {
    font-size: 0.95rem;
  }

  .pw-thintanks-what__points {
    font-size: 0.92rem;
  }

  .pw-thintanks-what__card {
    padding: 1.4rem 1.5rem;
  }

  .pw-thintanks-what__card-text {
    font-size: 0.9rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8d2ce2f *//* ========== SECTION 3: KEY FEATURES ========== */

.pw-thintanks-features {
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.pw-thintanks-features .pw-section__inner {
  max-width: 1100px;
}

/* Header */
.pw-thintanks-features__header {
  max-width: 42rem;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.pw-thintanks-features .pw-section__title {
  margin-bottom: 0.75rem;
}

.pw-thintanks-features .pw-section__intro {
  margin: 0;
}

/* Features grid */
.pw-thintanks-features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
}

.pw-thintanks-feature {
  background: #f9fafb;
  border-radius: 16px;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.pw-thintanks-feature__title {
  margin: 0 0 0.5rem;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--pw-color-text-main);
}

.pw-thintanks-feature__text {
  margin: 0;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--pw-color-text-muted);
}

/* ========== TABLET (≤ 1024px) ========== */
@media (max-width: 1024px) {
  .pw-thintanks-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .pw-thintanks-features__header {
    margin-bottom: 2rem;
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  .pw-thintanks-features__header {
    text-align: left;
    margin-bottom: 1.8rem;
  }

  .pw-thintanks-features__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
  }

  .pw-thintanks-feature {
    padding: 1.25rem 1.2rem 1.3rem;
  }

  .pw-thintanks-feature__title {
    font-size: 0.98rem;
  }

  .pw-thintanks-feature__text {
    font-size: 0.9rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-943a1fb *//* ========== SECTION 4: APPLICATIONS IN WESTERN WASHINGTON ========== */

.pw-thintanks-applications {
  background: #f9fafb;
}

.pw-thintanks-applications .pw-section__inner {
  max-width: 1100px;
}

/* Header */
.pw-thintanks-applications__header {
  max-width: 44rem;
  margin: 0 auto 2.3rem;
  text-align: center;
}

.pw-thintanks-applications .pw-section__title {
  margin-bottom: 0.75rem;
}

.pw-thintanks-applications .pw-section__intro {
  margin: 0;
}

/* Applications grid */
.pw-thintanks-applications__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.pw-thintanks-app {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem 1.5rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.pw-thintanks-app__title {
  margin: 0 0 0.5rem;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--pw-color-text-main);
}

.pw-thintanks-app__text {
  margin: 0 0 0.75rem;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--pw-color-text-muted);
}

.pw-thintanks-app__list {
  margin: 0;
  padding-left: 1.2rem;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--pw-color-text-main);
}

.pw-thintanks-app__list li + li {
  margin-top: 0.4rem;
}

/* ========== TABLET (≤ 1024px) ========== */
@media (max-width: 1024px) {
  .pw-thintanks-applications__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .pw-thintanks-applications__header {
    margin-bottom: 2rem;
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  .pw-thintanks-applications__header {
    text-align: left;
    margin-bottom: 1.8rem;
  }

  .pw-thintanks-applications__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
  }

  .pw-thintanks-app {
    padding: 1.35rem 1.25rem 1.4rem;
  }

  .pw-thintanks-app__title {
    font-size: 0.98rem;
  }

  .pw-thintanks-app__text {
    font-size: 0.9rem;
  }

  .pw-thintanks-app__list {
    font-size: 0.88rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-aa3d251 *//* ========== SECTION 5: HOW THE PROCESS WORKS ========== */

.pw-thintanks-process {
  background: #ffffff;
}

.pw-thintanks-process .pw-section__inner {
  max-width: 1100px;
}

/* Header */
.pw-thintanks-process__header {
  max-width: 44rem;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.pw-thintanks-process .pw-section__title {
  margin-bottom: 0.75rem;
}

.pw-thintanks-process .pw-section__intro {
  margin: 0;
}

/* Steps grid */
.pw-thintanks-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.8rem;
}

.pw-thintanks-step {
  background: #f9fafb;
  border-radius: 16px;
  padding: 1.5rem 1.4rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  position: relative;
}

/* Number badge */
.pw-thintanks-step__badge {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--pw-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pw-thintanks-step__title {
  margin: 0 0 0.5rem;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--pw-color-text-main);
}

.pw-thintanks-step__text {
  margin: 0;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--pw-color-text-muted);
}

/* ========== TABLET (≤ 1024px) ========== */
@media (max-width: 1024px) {
  .pw-thintanks-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .pw-thintanks-process__header {
    margin-bottom: 2rem;
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  .pw-thintanks-process__header {
    text-align: left;
    margin-bottom: 1.8rem;
  }

  .pw-thintanks-process__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
  }

  .pw-thintanks-step {
    padding: 1.35rem 1.25rem 1.4rem;
  }

  .pw-thintanks-step__title {
    font-size: 0.98rem;
  }

  .pw-thintanks-step__text {
    font-size: 0.9rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1a7b252 *//* ========== SECTION 6: THINTANKS CONTACT / LEAD FORM ========== */

.pw-thintanks-contact {
  background: #0f172a;
  color: #e5e7eb;
}

.pw-thintanks-contact .pw-section__inner {
  max-width: 1100px;
}

/* Two-column layout */
.pw-thintanks-contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Left: copy */
.pw-thintanks-contact .pw-section__title {
  margin: 0 0 0.85rem;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: clamp(1.8rem, 2.4vw, 2.1rem);
  line-height: 1.2;
  color: #f9fafb;
}

.pw-thintanks-contact .pw-section__intro {
  margin: 0 0 1.4rem;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5f5;
}

.pw-thintanks-contact__points {
  margin: 0 0 1.4rem;
  padding-left: 1.2rem;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e5e7eb;
}

.pw-thintanks-contact__points li + li {
  margin-top: 0.4rem;
}

.pw-thintanks-contact__note {
  margin: 0;
  font-family: var(--e-global-typography-text-font-family);
  font-size: 0.9rem;
  line-height: 1.6;
  color: #9ca3af;
}

/* Right: form wrapper */
.pw-thintanks-contact__form-wrap {
  background: #020617;
  border-radius: 18px;
  padding: 1.6rem 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.6);
}

/* Optional: tighten Elementor form inside wrapper */
.pw-thintanks-contact__form-wrap form {
  /* This .elementor-13934 .elementor-element.elementor-element-1a7b252 may vary slightly depending on Elementor form markup */
  font-family: var(--e-global-typography-text-font-family);
  color: #e5e7eb;
}

.pw-thintanks-contact__form-wrap label {
  color: #e5e7eb;
  font-size: 0.9rem;
}

.pw-thintanks-contact__form-wrap input,
.pw-thintanks-contact__form-wrap textarea,
.pw-thintanks-contact__form-wrap select {
  background: #020617;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #f9fafb;
}

.pw-thintanks-contact__form-wrap button,
.pw-thintanks-contact__form-wrap input[type="submit"] {
  border-radius: 999px;
}

/* ========== TABLET (≤ 1024px) ========== */
@media (max-width: 1024px) {
  .pw-thintanks-contact__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
  }

  .pw-thintanks-contact .pw-section__title {
    font-size: clamp(1.7rem, 2.2vw, 1.9rem);
  }

  .pw-thintanks-contact__form-wrap {
    padding: 1.5rem 1.6rem;
  }
}

/* ========== MOBILE (≤ 767px) ========== */
@media (max-width: 767px) {
  .pw-thintanks-contact__layout {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }

  .pw-thintanks-contact .pw-section__title {
    font-size: 1.6rem;
  }

  .pw-thintanks-contact .pw-section__intro {
    font-size: 0.95rem;
  }

  .pw-thintanks-contact__points {
    font-size: 0.9rem;
  }

  .pw-thintanks-contact__note {
    font-size: 0.88rem;
  }

  .pw-thintanks-contact__form-wrap {
    padding: 1.4rem 1.4rem;
  }
}/* End custom CSS */