/*
Theme Name: Get Patients Easy
Theme URI: https://getpatientseasy.com
Author: Get Patients Easy
Description: A fast, conversion-focused WordPress theme for medical and dental patient acquisition websites.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: get-patients-easy
*/

:root {
  --gpe-ink: #102033;
  --gpe-muted: #5b6d7e;
  --gpe-line: #d9e4ec;
  --gpe-bg: #f6f9fb;
  --gpe-panel: #ffffff;
  --gpe-primary: #00a896;
  --gpe-primary-dark: #047f74;
  --gpe-accent: #f06449;
  --gpe-gold: #ffd166;
  --gpe-blue: #3a86ff;
  --gpe-success: #18a667;
  --gpe-radius: 8px;
  --gpe-shadow: 0 24px 70px rgba(16, 32, 51, 0.16);
  --gpe-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gpe-ink);
  background:
    linear-gradient(180deg, rgba(0, 168, 150, 0.05), rgba(255, 255, 255, 0) 420px),
    var(--gpe-bg);
  font-family: var(--gpe-font);
  font-size: 16px;
  line-height: 1.65;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--gpe-primary);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.gpe-container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
}

.gpe-button,
.wp-block-button__link,
button,
input[type="submit"] {
  align-items: center;
  background: linear-gradient(135deg, var(--gpe-primary), var(--gpe-blue));
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: 700 15px/1 var(--gpe-font);
  justify-content: center;
  min-height: 46px;
  padding: 14px 20px;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gpe-button:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
  background: linear-gradient(135deg, var(--gpe-primary-dark), #246cd5);
  color: #ffffff;
  transform: translateY(-1px);
}

.gpe-button--light {
  background: #ffffff;
  color: var(--gpe-ink);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.gpe-button--light:hover {
  background: #e9f4f5;
  color: var(--gpe-primary-dark);
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--gpe-line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  align-items: center;
  display: flex;
  min-height: 78px;
  gap: 24px;
  justify-content: space-between;
}

.site-branding {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 220px;
}

.site-branding__mark {
  align-items: center;
  background: linear-gradient(135deg, var(--gpe-primary), var(--gpe-accent));
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-size: 20px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.site-title {
  color: var(--gpe-ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.site-description {
  color: var(--gpe-muted);
  font-size: 13px;
  line-height: 1.2;
  margin: 4px 0 0;
}

.main-navigation {
  align-items: center;
  display: flex;
  gap: 24px;
}

.main-navigation ul {
  align-items: center;
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  border-radius: 6px;
  color: var(--gpe-ink);
  display: block;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 12px;
}

.main-navigation a:hover {
  background: #eaf4f5;
  color: var(--gpe-primary-dark);
}

.menu-toggle {
  display: none;
}

.gpe-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 209, 102, 0.34), transparent 28%),
    radial-gradient(circle at 10% 74%, rgba(0, 168, 150, 0.28), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #102033 48%, #f06449 140%);
  color: #ffffff;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  padding: 82px 0 72px;
  position: relative;
}

.gpe-hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
  position: absolute;
}

.gpe-hero > * {
  position: relative;
}

.gpe-hero__grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.98fr);
}

.gpe-eyebrow {
  color: var(--gpe-gold);
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.gpe-hero h1 {
  font-size: clamp(48px, 7vw, 94px);
  line-height: 0.98;
  margin: 0 0 24px;
  max-width: 850px;
  text-wrap: balance;
}

.gpe-hero__copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
  margin: 0 0 32px;
  max-width: 680px;
}

.gpe-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gpe-proof {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  max-width: 720px;
}

.gpe-proof__item {
  border-left: 3px solid var(--gpe-gold);
  padding-left: 14px;
}

.gpe-proof strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
}

.gpe-hero-visual {
  position: relative;
}

.gpe-hero-visual::before {
  background: linear-gradient(135deg, var(--gpe-primary), var(--gpe-gold), var(--gpe-accent));
  border-radius: 38px;
  content: "";
  inset: -16px;
  opacity: 0.72;
  position: absolute;
  transform: rotate(-3deg);
}

.gpe-hero-visual img {
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  object-fit: cover;
  position: relative;
}

.gpe-proof span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 13px;
  line-height: 1.35;
  margin-top: 4px;
}

.gpe-lead-form {
  background: #ffffff;
  border-radius: var(--gpe-radius);
  box-shadow: var(--gpe-shadow);
  color: var(--gpe-ink);
  padding: 28px;
}

.gpe-lead-form h2 {
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.gpe-lead-form p {
  color: var(--gpe-muted);
  margin: 0 0 20px;
}

.gpe-field {
  margin-bottom: 14px;
}

.gpe-field label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

.gpe-field input,
.gpe-field select,
.gpe-field textarea,
.comment-form input,
.comment-form textarea,
.search-form input[type="search"] {
  background: #ffffff;
  border: 1px solid #cfdce3;
  border-radius: 6px;
  color: var(--gpe-ink);
  font: 500 15px/1.4 var(--gpe-font);
  min-height: 46px;
  padding: 12px 13px;
  width: 100%;
}

.gpe-field textarea {
  min-height: 92px;
  resize: vertical;
}

.gpe-form-note {
  color: var(--gpe-muted);
  display: block;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 12px;
}

.gpe-section--lead {
  background:
    linear-gradient(90deg, rgba(0, 168, 150, 0.12), rgba(255, 209, 102, 0.12)),
    #ffffff;
}

.gpe-lead-band {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
}

.gpe-lead-band .gpe-section__heading {
  margin-bottom: 0;
}

.gpe-section {
  padding: 82px 0;
}

.gpe-section--white {
  background: #ffffff;
}

.gpe-section--teal {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 209, 102, 0.24), transparent 34%),
    linear-gradient(135deg, #102033, #047f74 74%, #00a896);
  color: #ffffff;
}

.gpe-section__heading {
  margin-bottom: 36px;
  max-width: 760px;
}

.gpe-section__heading h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin: 0 0 14px;
  text-wrap: balance;
}

.gpe-section__heading p {
  color: var(--gpe-muted);
  font-size: 18px;
  margin: 0;
}

.gpe-section--teal .gpe-section__heading p {
  color: rgba(255, 255, 255, 0.82);
}

.gpe-card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gpe-card {
  background: #ffffff;
  border: 1px solid var(--gpe-line);
  border-radius: var(--gpe-radius);
  box-shadow: 0 14px 42px rgba(16, 32, 51, 0.06);
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.gpe-card::after {
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.13), rgba(240, 100, 73, 0.13));
  content: "";
  height: 90px;
  position: absolute;
  right: -36px;
  top: -42px;
  transform: rotate(18deg);
  width: 150px;
}

.gpe-card > * {
  position: relative;
  z-index: 1;
}

.gpe-card__icon {
  align-items: center;
  background: #102033;
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.gpe-card h3 {
  font-size: 21px;
  line-height: 1.25;
  margin: 0 0 10px;
}

.gpe-card p {
  color: var(--gpe-muted);
  margin: 0;
}

.gpe-showcase {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 0.92fr);
}

.gpe-showcase--reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.98fr);
}

.gpe-showcase h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  margin: 0 0 16px;
  text-wrap: balance;
}

.gpe-showcase p {
  color: var(--gpe-muted);
  font-size: 18px;
  margin: 0;
}

.gpe-showcase__image {
  position: relative;
}

.gpe-showcase__image::before {
  background: linear-gradient(135deg, var(--gpe-gold), var(--gpe-primary), var(--gpe-blue));
  border-radius: 24px;
  content: "";
  inset: 18px -16px -18px 16px;
  opacity: 0.28;
  position: absolute;
}

.gpe-showcase__image img,
.gpe-image-stack > img {
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  box-shadow: var(--gpe-shadow);
  object-fit: cover;
  position: relative;
}

.gpe-process {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gpe-step {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--gpe-radius);
  border-top: 3px solid rgba(255, 255, 255, 0.28);
  padding: 18px 20px 20px;
}

.gpe-step span {
  color: var(--gpe-accent);
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 12px;
}

.gpe-step h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 8px;
}

.gpe-step p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.gpe-split {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
}

.gpe-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.gpe-list li {
  background: #ffffff;
  border: 1px solid var(--gpe-line);
  border-radius: 8px;
  padding: 14px 16px 14px 44px;
  position: relative;
}

.gpe-list li::before {
  background: var(--gpe-success);
  border-radius: 999px;
  color: #ffffff;
  content: "✓";
  font-size: 12px;
  font-weight: 900;
  height: 22px;
  left: 14px;
  line-height: 22px;
  position: absolute;
  text-align: center;
  top: 15px;
  width: 22px;
}

.gpe-testimonial {
  background: #ffffff;
  border: 1px solid var(--gpe-line);
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(22, 33, 58, 0.08);
  padding: 34px;
}

.gpe-image-stack {
  display: grid;
  gap: 18px;
}

.gpe-testimonial blockquote {
  font-size: 24px;
  line-height: 1.35;
  margin: 0 0 22px;
}

.gpe-testimonial cite {
  color: var(--gpe-muted);
  font-style: normal;
  font-weight: 800;
}

.gpe-cta {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.gpe-cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin: 0 0 10px;
}

.gpe-cta p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  max-width: 620px;
}

.site-main {
  min-height: 54vh;
}

.content-area {
  padding: 64px 0;
}

.entry-header,
.page-header {
  margin-bottom: 28px;
}

.entry-title,
.page-title {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  margin: 0;
}

.entry-content {
  background: #ffffff;
  border: 1px solid var(--gpe-line);
  border-radius: var(--gpe-radius);
  padding: 32px;
}

.post-card {
  background: #ffffff;
  border: 1px solid var(--gpe-line);
  border-radius: var(--gpe-radius);
  margin-bottom: 20px;
  padding: 26px;
}

.post-card h2 {
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.site-footer {
  background:
    radial-gradient(circle at 80% 0%, rgba(240, 100, 73, 0.18), transparent 28%),
    #0b1320;
  color: #dce5ec;
  padding: 48px 0 28px;
}

.site-footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.site-footer h2,
.site-footer h3 {
  color: #ffffff;
  margin: 0 0 12px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer a {
  color: #dce5ec;
}

.site-footer a:hover {
  color: var(--gpe-accent);
}

.site-info {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aebdca;
  font-size: 14px;
  margin-top: 34px;
  padding-top: 22px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-navigation {
    align-items: flex-end;
    flex-direction: column;
  }

  .main-navigation ul {
    background: #ffffff;
    border: 1px solid var(--gpe-line);
    border-radius: 8px;
    box-shadow: var(--gpe-shadow);
    display: none;
    min-width: 220px;
    padding: 8px;
    position: absolute;
    right: 24px;
    top: 72px;
  }

  .main-navigation.toggled ul {
    display: grid;
  }

  .gpe-hero__grid,
  .gpe-split,
  .gpe-showcase,
  .gpe-showcase--reverse,
  .gpe-lead-band,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .gpe-card-grid,
  .gpe-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gpe-hero {
    min-height: auto;
    padding-top: 64px;
  }

  .gpe-hero-visual {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .admin-bar .site-header {
    top: 0;
  }

  .gpe-container {
    padding: 0 18px;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .site-description {
    display: none;
  }

  .gpe-hero {
    padding: 52px 0 40px;
  }

  .gpe-proof,
  .gpe-card-grid,
  .gpe-process {
    grid-template-columns: 1fr;
  }

  .gpe-lead-form,
  .entry-content {
    padding: 22px;
  }

  .gpe-hero h1 {
    font-size: clamp(44px, 16vw, 68px);
  }

  .gpe-section {
    padding: 58px 0;
  }

  .gpe-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
