/* =========================
   GLOBAL + THEME
========================= */
:root{
  --bg:#ffffff;
  --text:#141414;
  --muted:#6b6b6b;
  --accent:#e11b22;

  --border: rgba(0,0,0,.07);
  --shadow: 0 16px 34px rgba(0,0,0,.06);
  --shadowHover: 0 26px 54px rgba(0,0,0,.12);
  --radius: 18px;

  /* hero scroll progress (0..1) set by JS */
  --p: 0;

  /* reveal */
  --revealY: 22px;
  --revealBlur: 10px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.section{ position: relative; transform: translateZ(0); }
.card{ will-change: transform; transform: translateZ(0); }

/* =========================
   REVEAL (simple)
========================= */
.reveal{
  opacity: 0;
  transform: translate3d(0, var(--revealY), 0);
  filter: blur(var(--revealBlur));
  transition:
    opacity .75s cubic-bezier(.2,.7,.2,1),
    transform .75s cubic-bezier(.2,.7,.2,1),
    filter .75s cubic-bezier(.2,.7,.2,1);
}

.is-inview{
  opacity: 1;
  transform: translate3d(0,0,0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{
    opacity: 1;
    transform:none;
    filter:none;
    transition:none;
  }
}

/* =========================
   HERO
========================= */
.bh-sec{
  position: relative;
  min-height: 560px;
  padding: 64px 0 84px;
  overflow: hidden;
}
.bh-bg{ position:absolute; inset:0; z-index:0; }
.bh-grid{
  position:absolute;
  inset:-40px;
  opacity: calc(.20 + (var(--p) * .35));
  background:
    linear-gradient(to right, rgba(0,0,0,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: translate3d(0, calc((1 - var(--p)) * 10px), 0);
  transition: opacity .15s linear;
}
.bh-squares{ position:absolute; inset:0; pointer-events:none; }
.bh-sq{
  position:absolute;
  border-radius: 10px;
  background: rgba(225,27,34,.10);
  box-shadow: 0 18px 30px rgba(0,0,0,.06);
  opacity: 0;
  transform: translate3d(0,0,0) scale(.65);
  transform-origin: center;
  will-change: transform, opacity;
}

.bh-wrap{
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  text-align: center;
  padding-top: 18px;
}

.bh-spark{
  width: 22px;
  height: 22px;
  margin: 0 auto 10px;
  position: relative;
  left: -260px;
  top: 4px;
}
@media (max-width: 980px){ .bh-spark{ left: -180px; } }
@media (max-width: 680px){ .bh-spark{ left: -120px; } }

.bh-spark::before,
.bh-spark::after{
  content:"";
  position:absolute;
  inset:0;
  background-repeat:no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cg fill='none' stroke='%23e11b22' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M14 2v6'/%3E%3Cpath d='M4 6l4 4'/%3E%3Cpath d='M24 6l-4 4'/%3E%3C/g%3E%3C/svg%3E");
  opacity:.9;
}
.bh-spark::after{
  transform: rotate(-12deg) scale(.92);
  opacity:.75;
}

.bh-title{
  margin: 0 auto 18px;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.05;
  font-weight: 650;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.bh-uline{ position: relative; display: inline-block; }
.bh-uline::after{
  content:"";
  position:absolute;
  left: 0; right: 0;
  bottom: -12px;
  height: 14px;
  background-repeat: repeat-x;
  background-size: 92px 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='92' height='14' viewBox='0 0 92 14'%3E%3Cpath d='M0 9 C12 2 24 2 36 9 S60 16 72 9 S84 2 92 9' fill='none' stroke='%23e11b22' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.bh-sub{
  margin: 18px auto 30px;
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}

.bh-btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color:#fff;
  text-decoration:none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 16px 34px rgba(225,27,34,.24);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.bh-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(225,27,34,.28);
  filter: saturate(1.04);
}
.bh-btn:active{
  transform: translateY(0px);
  box-shadow: 0 14px 34px rgba(225,27,34,.22);
}

@media (max-width: 640px){
  .bh-wrap{ width: min(720px, calc(100% - 34px)); }
  .bh-sub{ font-size: 16.5px; }
}

/* =========================
   PAIN
========================= */
.pain-sec{
  background: linear-gradient(180deg,#fff,#fbf3f3);
  padding: 90px 0 110px;
}
.pain-wrap{ width: min(1200px, calc(100% - 64px)); margin: 0 auto; }
.pain-head{ text-align:center; position: relative; margin-bottom: 60px; }
.pain-title{
  font-size: clamp(34px,4.2vw,56px);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing:-0.02em;
  margin:0;
}
.pain-uline{ position: relative; display:inline-block; }
.pain-uline::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-12px;
  height:14px;
  background-repeat:repeat-x;
  background-size:92px 14px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='92' height='14' viewBox='0 0 92 14'%3E%3Cpath d='M0 9 C12 2 24 2 36 9 S60 16 72 9 S84 2 92 9' fill='none' stroke='%23e11b22' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}
.pain-arrow{
  position:absolute;
  left: 46%;
  top: -10px;
  width: 60px;
  height: 60px;
  background-repeat:no-repeat;
  background-size:contain;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M40 6 C20 14 18 32 30 40' fill='none' stroke='%23e11b22' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M30 40 l-6-4 m6 4 l4-6' fill='none' stroke='%23e11b22' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}
.pain-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.pain-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 26px 26px 28px;
  box-shadow: 0 14px 30px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease;
  transform-style: preserve-3d;
}
.pain-card:hover{ box-shadow: 0 22px 44px rgba(0,0,0,.10); }
.pain-icon{
  width: 42px; height: 42px;
  border-radius: 999px;
  background: rgba(225,27,34,.08);
  color: var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 20px;
  margin-bottom: 14px;
}
.pain-card h3{ margin: 0 0 8px; font-size: 20px; font-weight: 650; }
.pain-card p{ margin:0; font-size: 15.5px; line-height: 1.65; color: var(--muted); }
@media (max-width: 980px){ .pain-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .pain-grid{ grid-template-columns: 1fr; } }

/* =========================
   TRUST (UPDATED Modern)
========================= */
@keyframes waveMove{
  from{ background-position-x: 0px; }
  to{ background-position-x: 92px; }
}

.trust-sec{
  padding: 96px 0 120px;
  background: #ffffff;
}
.trust-wrap{
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}
.trust-title{
  text-align:center;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  letter-spacing:-0.02em;
  margin: 0 0 60px;
  line-height: 1.12;
}

/* ocean underline on Trust Us */
.trust-uline{
  position: relative;
  display:inline-block;
  padding-bottom: 10px;
}
.trust-uline::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 14px;
  background-repeat: repeat-x;
  background-size: 92px 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='92' height='14' viewBox='0 0 92 14'%3E%3Cpath d='M0 9 C12 2 24 2 36 9 S60 16 72 9 S84 2 92 9' fill='none' stroke='%23e11b22' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E");
  animation: waveMove 2.4s linear infinite;
  opacity: .95;
}

.trust-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.trust-card{
  height: 320px; /* ✅ same size */
  padding: 26px 26px 26px;
  border-radius: 18px;

  background:
    radial-gradient(900px 400px at 10% 0%, rgba(225,27,34,.08), transparent 55%),
    radial-gradient(800px 380px at 90% 30%, rgba(0,0,0,.05), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,245,245,.9));

  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 44px rgba(0,0,0,.08);

  display:flex;
  flex-direction: column;
  justify-content: flex-start;

  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.trust-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0,0,0,.12);
  border-color: rgba(225,27,34,.22);
}

.trust-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(225,27,34,.08);
  border: 1px solid rgba(225,27,34,.16);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 20px;
  margin-bottom: 14px;
}

.trust-h{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing:-0.01em;
}

.t-uline{
  position: relative;
  display:inline-block;
  padding-bottom: 8px;
}
.t-uline::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 12px;
  background-repeat: repeat-x;
  background-size: 92px 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='92' height='12' viewBox='0 0 92 12'%3E%3Cpath d='M0 7 C12 1 24 1 36 7 S60 13 72 7 S84 1 92 7' fill='none' stroke='%23e11b22' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  opacity: .9;
  animation: waveMove 2.4s linear infinite;
}

.trust-card p{
  margin: 10px 0 0;
  color: #5f5f5f;
  font-size: 15.6px;
  line-height: 1.75;
  max-width: 52ch;
}

/* =========================
   TRUST Scroll In/Out Reveal
========================= */
.reveal-io{
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(.98);
  filter: blur(10px);
  transition:
    opacity .70s cubic-bezier(.2,.7,.2,1),
    transform .70s cubic-bezier(.2,.7,.2,1),
    filter .70s cubic-bezier(.2,.7,.2,1);
  will-change: transform, opacity, filter;
}
.reveal-io.is-in{
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
.reveal-io.is-out{
  opacity: 0;
  transform: translate3d(0, -18px, 0) scale(.985);
  filter: blur(10px);
}

@media (max-width: 1100px){
  .trust-grid{ grid-template-columns: repeat(2, 1fr); }
  .trust-card{ height: 320px; }
}
@media (max-width: 640px){
  .trust-wrap{ width: min(720px, calc(100% - 32px)); }
  .trust-grid{ grid-template-columns: 1fr; }
  .trust-card{ height: auto; }
}
@media (prefers-reduced-motion: reduce){
  .trust-uline::after,
  .t-uline::after{ animation: none; }
  .reveal-io{
    opacity: 1;
    transform:none;
    filter:none;
    transition:none;
  }
}

/* =========================
   BRANDING SERVICES
========================= */
.bs-sec{
  position:relative;
  padding: 88px 0 110px;
  overflow:hidden;
  background: radial-gradient(1200px 600px at 25% 10%, #fff5f3, transparent 55%),
              radial-gradient(1100px 620px at 75% 25%, #fde0e2, transparent 55%),
              linear-gradient(180deg, #fff, #ffd8dc);
}
.bs-bg{ position:absolute; inset:0; pointer-events:none; }
.bs-diag{
  position:absolute;
  inset:-80px;
  opacity:.25;
  background: repeating-linear-gradient(105deg, rgba(0,0,0,.06) 0px, rgba(0,0,0,.06) 1px, transparent 1px, transparent 220px);
  transform: rotate(-6deg);
}
.bs-wrap{
  position:relative;
  z-index:1;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}
.bs-title{
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 650;
  letter-spacing:-0.02em;
  margin: 0 0 46px;
  position: relative;
  line-height: 1.12;
}
.bs-wave{ position:relative; display:inline-block; }
.bs-wave::after{
  content:"";
  position:absolute;
  left: 0; right: 0;
  bottom: -10px;
  height: 14px;
  background-repeat: repeat-x;
  background-size: 92px 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='92' height='14' viewBox='0 0 92 14'%3E%3Cpath d='M0 9 C12 2 24 2 36 9 S60 16 72 9 S84 2 92 9' fill='none' stroke='%23e11b22' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.bs-spark{
  display:inline-block;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  position: relative;
  top: -16px;
  background-repeat:no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cg fill='none' stroke='%23e11b22' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M14 2v6'/%3E%3Cpath d='M4 6l4 4'/%3E%3Cpath d='M24 6l-4 4'/%3E%3C/g%3E%3C/svg%3E");
  opacity:.95;
}
.bs-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 62px;
  align-items:start;
}
.bs-item{ max-width: 360px; }
.bs-item--left{ grid-column: 1; }
.bs-item--mid{ grid-column: 2; }

.bs-ico{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 26px rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 12px;
}
.bs-h{ margin: 0 0 10px; font-size: 22px; font-weight: 650; }
.bs-p{
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 56ch;
}
@media (max-width: 980px){
  .bs-grid{ grid-template-columns: repeat(2, 1fr); gap: 34px 38px; }
  .bs-item--left, .bs-item--mid{ grid-column: auto; }
}
@media (max-width: 620px){
  .bs-wrap{ width: min(720px, calc(100% - 32px)); }
  .bs-grid{ grid-template-columns: 1fr; gap: 28px; }
  .bs-item{ max-width: 100%; }
}

/* =========================
   WORKFLOW
========================= */
.work-sec{ padding: 86px 0 120px; background:#fff; }
.work-wrap{ width: min(1220px, calc(100% - 64px)); margin: 0 auto; }
.work-title{
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 56px;
  position: relative;
}
.work-spark{
  display:inline-block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  position: relative;
  top: -18px;
  background-repeat:no-repeat;
  background-size:contain;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cg fill='none' stroke='%23e11b22' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M14 2v6'/%3E%3Cpath d='M4 6l4 4'/%3E%3Cpath d='M24 6l-4 4'/%3E%3C/g%3E%3C/svg%3E");
}
.work-timeline{ position: relative; height: 430px; }
.work-svg{ position:absolute; inset: 0; width:100%; height:100%; z-index: 1; }
.work-path-bg{ fill:none; stroke: rgba(225,27,34,.06); stroke-width: 6; stroke-linecap: round; }
.work-path{
  fill:none;
  stroke: var(--accent);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset .12s linear;
}

.wstep{ position:absolute; width: 300px; z-index: 2; }
.wnum{
  position:absolute;
  left: -10px;
  top: -56px;
  font-size: 120px;
  font-weight: 700;
  color: #efefef;
  letter-spacing: -0.04em;
  z-index: -1;
  user-select:none;
}
.wicon{
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background:#fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 34px rgba(0,0,0,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 10px;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.wh{ margin: 6px 0 8px; font-size: 24px; font-weight: 650; line-height: 1.15; }
.wp{ margin:0; color: #7b7b7b; font-size: 15.5px; line-height: 1.65; max-width: 40ch; }

.w1{ left: 120px; top: 250px; }
.w2{ left: 420px; top: 195px; }
.w3{ left: 640px; top: 58px;  width: 320px; }
.w4{ left: 930px; top: 34px;  width: 320px; }

.w1 .wicon{ position:absolute; left: -120px; top: 120px; }
.w2 .wicon{ position:absolute; left: -88px;  top: -28px; }
.w3 .wicon{ position:absolute; left: 190px;  top: 120px; }
.w4 .wicon{ position:absolute; left: 170px;  top: -28px; }

.wstep.active .wicon{
  background: var(--accent);
  color:#fff;
  border-color: rgba(225,27,34,.25);
  transform: translateZ(0) scale(1.02);
}

@media (max-width: 900px){
  .work-timeline{ height: auto; }
  .work-svg{ display:none; }
  .wstep{
    position:relative;
    left:auto; top:auto;
    width:100%;
    margin: 40px 0;
  }
  .wicon{
    position:relative !important;
    left:auto !important;
    top:auto !important;
    margin: 0 0 14px;
  }
  .wnum{ left: 0; top: -40px; font-size: 92px; }
}

/* =========================
   EXPECT
========================= */
.exp-sec{ padding: 92px 0 120px; background:#fff; }
.exp-wrap{ width: min(1180px, calc(100% - 64px)); margin: 0 auto; }
.exp-title{
  position: relative;
  text-align:center;
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing:-0.02em;
  margin: 0 0 74px;
  line-height: 1.1;
}
.exp-wave{
  position:absolute;
  left:50%;
  bottom:-16px;
  transform:translateX(-50%);
  width: 420px;
  height: 14px;
  background-repeat: repeat-x;
  background-size: 92px 14px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='92' height='14' viewBox='0 0 92 14'%3E%3Cpath d='M0 9 C12 2 24 2 36 9 S60 16 72 9 S84 2 92 9' fill='none' stroke='%23e11b22' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.exp-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 92px;
  row-gap: 72px;
  align-items: start;
}
.exp-item{ position: relative; padding-left: 78px; min-height: 130px; }
.exp-num{
  position:absolute;
  left: 0;
  top: -8px;
  font-size: 120px;
  font-weight: 700;
  color: #ededed;
  line-height: 0.85;
  letter-spacing: -0.04em;
  user-select:none;
}
.exp-item h3{
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.exp-item p{
  margin: 10px 0 0;
  font-size: 15.5px;
  line-height: 1.72;
  color: #7d7d7d;
  max-width: 36ch;
}
@media (max-width: 1000px){
  .exp-grid{ grid-template-columns: repeat(2, 1fr); column-gap: 64px; row-gap: 60px; }
}
@media (max-width: 640px){
  .exp-wrap{ width: min(720px, calc(100% - 32px)); }
  .exp-title{ margin-bottom: 54px; }
  .exp-grid{ grid-template-columns: 1fr; row-gap: 44px; }
  .exp-item{ padding-left: 66px; }
  .exp-num{ font-size: 92px; top: -6px; }
  .exp-item h3{ font-size: 20px; }
  .exp-wave{ width: 280px; }
}

/* =========================
   CTA
========================= */
.cta-sec{ padding: 92px 0 96px; background:#fff; }
.cta-wrap{ width: min(980px, calc(100% - 64px)); margin: 0 auto; text-align:center; }
.cta-title{
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 26px;
  position: relative;
}
.cta-spark{
  display:inline-block;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  position: relative;
  top: -26px;
  background-repeat:no-repeat;
  background-size:contain;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cg fill='none' stroke='%23e11b22' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M14 2v6'/%3E%3Cpath d='M4 6l4 4'/%3E%3Cpath d='M24 6l-4 4'/%3E%3C/g%3E%3C/svg%3E");
  opacity:.95;
}
.cta-sub{
  margin: 0 auto;
  max-width: 72ch;
  font-size: 18px;
  line-height: 1.65;
  color: #4f4f4f;
}
@media (max-width: 640px){
  .cta-sec{ padding: 72px 0 78px; }
  .cta-wrap{ width: min(720px, calc(100% - 32px)); }
  .cta-sub{ font-size: 16.5px; }
  .cta-spark{ top: -18px; }
}
