.elementor-13868 .elementor-element.elementor-element-316c9b5e{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-2a4e7245 */@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@400;500;600&display=swap");

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0D1B2A;
  --slate:  #1C2E40;
  --teal:   #00A896;
  --teal-d: #007F72;
  --gold:   #E8A838;
  --cream:  #F7F3EE;
  --white:  #FFFFFF;
  --text:   #1C2E40;
  --muted:  #5A6A78;
  --border: #D6D0C8;
  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section--alt { background: var(--cream); }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,168,150,.1);
  border-radius: 40px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  text-align: center;
  padding: 10px 24px;
  letter-spacing: .02em;
}
.topbar a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.02em;
}
.logo span { color: var(--teal); }
.header-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  display: flex; align-items: center; gap: 6px;
}
.header-phone svg { color: var(--teal); flex-shrink: 0; }
.header-phone a { color: var(--teal); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 0;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}
.hero-copy {
  padding: 64px 48px 64px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 100% 80% at -10% 50%, rgba(0,168,150,.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 110% 90%, rgba(232,168,56,.07) 0%, transparent 60%);
  color: var(--white);
}
.hero-photo {
  position: relative;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  display: block;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,27,42,.35) 0%, transparent 40%);
}
@media (max-width: 720px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    padding: 48px 24px;
  }
  .hero-photo {
    height: 240px;
    order: -1;
  }
  .hero-bullets { display: flex; }
  .hero-cta-group { align-items: flex-start; }
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -.02em;
  color: var(--white);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.88);
  max-width: 540px;
  margin: 0 0 32px;
  line-height: 1.6;
}
.hero-bullets {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin: 0 auto 36px;
  max-width: 480px;
  width: 100%;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,.88);
}
.hero-bullets li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--teal);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  color: white;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius);
  padding: 16px 36px;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  letter-spacing: .01em;
  line-height: 1;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(232,168,56,.35);
}
.btn-primary:hover {
  background: #d4952a;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232,168,56,.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
  font-size: 14px;
  padding: 12px 28px;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.call-nudge {
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.call-nudge a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--teal);
  padding: 20px 0;
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  white-space: nowrap;
}
.trust-item svg { opacity: .85; flex-shrink: 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-grid h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.22;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.about-grid p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 15px;
}
.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.benefit-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  align-items: flex-start;
}
.benefit-icon {
  width: 36px; height: 36px;
  background: rgba(0,168,150,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  font-size: 16px;
  margin-top: 1px;
}
.benefit-list strong { display: block; color: var(--text); font-weight: 600; margin-bottom: 2px; }
.benefit-list span   { color: var(--muted); font-size: 14px; }

.about-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 36px 32px;
  color: var(--white);
}
.about-card .stat-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.stat {
  flex: 1;
  min-width: 80px;
}
.stat-num {
  font-family: var(--ff-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.about-card p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
}
.process-num {
  font-family: var(--ff-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cream);
  position: absolute;
  top: 12px; right: 18px;
  line-height: 1;
  user-select: none;
}
.process-card h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  margin-bottom: 8px;
  position: relative;
}
.process-card p {
  font-size: 14px;
  color: var(--muted);
  position: relative;
}

/* ============================================================
   CALL SECTION
   ============================================================ */
.call-section h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.call-section > .container > p {
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 15px;
  max-width: 500px;
}
.call-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.call-step {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.step-icon {
  width: 52px; height: 52px;
  background: rgba(0,168,150,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
}
.call-step h3 {
  font-family: var(--ff-head);
  font-size: 1rem;
  margin-bottom: 6px;
}
.call-step p { font-size: 14px; color: var(--muted); }
.cta-block {
  background: var(--navy);
  border-radius: 12px;
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
}
.cta-block h3 {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 10px;
  letter-spacing: -.02em;
  color: var(--white);
}
.cta-block p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
}
.cta-block .call-nudge { margin-top: 14px; color: rgba(255,255,255,.45); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.faq-section > .container > p {
  color: var(--muted);
  margin-bottom: 36px;
  font-size: 15px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q:hover { background: var(--cream); }
.faq-q .icon {
  width: 22px; height: 22px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--slate);
  color: rgba(255,255,255,.55);
  padding: 36px 0;
  font-size: 13px;
  text-align: center;
}
.site-footer a { color: rgba(255,255,255,.75); text-decoration: underline; }
.site-footer .footer-logo {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}
.site-footer .footer-logo span { color: var(--teal); }
.footer-links {
  margin: 12px 0;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-disclaimer { max-width: 520px; margin: 12px auto 0; font-size: 12px; opacity: .55; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-grid { grid-template-columns: 1fr; }
  .call-steps { grid-template-columns: 1fr; }
  .cta-block { padding: 36px 24px; }
  .hero { padding: 56px 0 52px; }
  .section { padding: 52px 0; }
  .header-phone .label { display: none; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-inner > * {
  animation: fadeUp .6s ease both;
}
.hero-inner > *:nth-child(1) { animation-delay: .05s; }
.hero-inner > *:nth-child(2) { animation-delay: .15s; }
.hero-inner > *:nth-child(3) { animation-delay: .25s; }
.hero-inner > *:nth-child(4) { animation-delay: .35s; }
.hero-inner > *:nth-child(5) { animation-delay: .45s; }
/* ---- Remove call-steps top padding since section was simplified ---- */
.call-section .container { padding-top: 0; }

.cta-block h3 {
    color: #fff;
}

.logo img {
    max-height: 80px;
}


.faq-section h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.faq-section > .container > p {
  color: var(--muted);
  margin-bottom: 36px;
  font-size: 15px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q:hover { background: var(--cream); }
.faq-q .icon {
  width: 22px; height: 22px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }



@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 40px 24px;
    order: 1;
  }

  .hero-photo {
    order: 2;
    height: 280px;
  }

  .hero-photo img {
    object-position: 40% top;
  }

  .hero-bullets {
    display: flex;
  }

  .hero-cta-group {
    align-items: flex-start;
  }
  
  .faq-q {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 16px !important;
  width: 100% !important;
  padding: 20px 24px !important;
  white-space: normal !important;
  word-break: normal !important;
  background: none !important;
  border: none !important;
  text-align: left !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  color: var(--text) !important;
}

.faq-q .icon {
  flex-shrink: 0 !important;
  min-width: 22px !important;
  width: 22px !important;
  height: 22px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.faq-q {
    line-height: normal;
}

}

.tag {
    font-size:14px;
}/* End custom CSS */