@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --seg-blue: #275bff;
  --seg-blue-rgb: 39, 91, 255;
  --seg-blue-light: #6f91ff;
  --seg-ink: #07090d;
  --seg-graphite: #10141c;
  --seg-surface: #151a24;
  --seg-surface-soft: #1b2230;
  --seg-white: #f7f9ff;
  --seg-muted: #9ba6ba;
  --seg-line: rgba(255, 255, 255, 0.12);
  --seg-glass: rgba(10, 14, 22, 0.72);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1240px;
  --header-h: 88px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--seg-ink); }
body {
  margin: 0;
  color: var(--seg-white);
  background:
    radial-gradient(circle at 10% 20%, rgba(var(--seg-blue-rgb), .10), transparent 34rem),
    radial-gradient(circle at 95% 80%, rgba(var(--seg-blue-rgb), .08), transparent 30rem),
    var(--seg-ink);
  font-family: 'Public Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--seg-blue); color: #fff; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 120px 0; }
.section--tight { padding: 84px 0; }
.section--light { color: #0d1320; background: #f3f6ff; }
.section--blue { background: var(--seg-blue); }
.section--clip { overflow: hidden; }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--seg-blue-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 38px; height: 3px; background: currentColor; border-radius: 999px; }
.section--light .eyebrow { color: var(--seg-blue); }
.section-title {
  max-width: 900px;
  margin: 0 0 24px;
  font-size: clamp(38px, 5.2vw, 74px);
  line-height: .98;
  letter-spacing: -.055em;
}
.section-title em { color: var(--seg-blue); font-style: normal; }
.section-text { max-width: 680px; margin: 0; color: var(--seg-muted); font-size: clamp(17px, 1.6vw, 20px); }
.section--light .section-text { color: #536077; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  gap: 12px;
  font-weight: 700;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn--primary { color: #fff; background: var(--seg-blue); box-shadow: 0 14px 42px rgba(var(--seg-blue-rgb), .32); }
.btn--primary:hover { box-shadow: 0 18px 52px rgba(var(--seg-blue-rgb), .46); }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); backdrop-filter: blur(16px); }
.btn--ghost:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.12); }
.btn svg { width: 18px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto 0;
  height: var(--header-h);
  transition: background .35s var(--ease), border-color .35s var(--ease), height .35s var(--ease);
}
.site-header.is-scrolled {
  height: 76px;
  background: rgba(7, 9, 13, .74);
  border-bottom: 1px solid var(--seg-line);
  backdrop-filter: blur(22px) saturate(150%);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.logo { display: inline-flex; align-items: center; position: relative; z-index: 1002; }
.logo img { width: 146px; height: auto; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { position: relative; color: rgba(255,255,255,.76); font-size: 14px; font-weight: 600; }
.nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--seg-blue); transition: right .35s var(--ease); }
.nav a:hover, .nav a.active { color: #fff; }
.nav a:hover::after, .nav a.active::after { right: 0; }
.header-cta { min-height: 46px; padding-inline: 20px; }
.menu-toggle { display: none; position: relative; z-index: 1002; width: 48px; height: 48px; border: 1px solid var(--seg-line); border-radius: 50%; background: rgba(255,255,255,.05); }
.menu-toggle span { position: absolute; left: 13px; width: 20px; height: 2px; background: #fff; transition: .35s var(--ease); }
.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 27px; }
.menu-open .menu-toggle span:first-child { top: 23px; transform: rotate(45deg); }
.menu-open .menu-toggle span:last-child { top: 23px; transform: rotate(-45deg); }

.scroll-progress { position: fixed; z-index: 1100; inset: 0 auto auto 0; width: 0; height: 3px; background: var(--seg-blue); box-shadow: 0 0 22px var(--seg-blue); }
.cursor-glow { position: fixed; z-index: 2; width: 420px; height: 420px; left: -210px; top: -210px; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(var(--seg-blue-rgb), .13), transparent 68%); opacity: .7; mix-blend-mode: screen; transition: opacity .3s; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--header-h) + 68px) 0 72px;
  background: #07090d;
}
.hero-slides, .hero-slide, .hero-slide::before, .hero-slide::after { position: absolute; inset: 0; }
.hero-slide {
  opacity: 0;
  transform: scale(1.05);
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transition: opacity 1.2s var(--ease), transform 7s linear;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-slide::before { content: ''; background: linear-gradient(90deg, rgba(3,5,10,.96) 0%, rgba(3,5,10,.75) 42%, rgba(3,5,10,.22) 76%, rgba(3,5,10,.56) 100%); }
.hero-slide::after { content: ''; background: linear-gradient(0deg, #07090d 0%, transparent 46%); }
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 86%);
}
.hero-orbit { position: absolute; right: -15vw; top: 4vh; width: min(75vw, 980px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; animation: orbit 22s linear infinite; }
.hero-orbit::before, .hero-orbit::after { content: ''; position: absolute; inset: 14%; border: inherit; border-radius: inherit; }
.hero-orbit::after { inset: 31%; }
.hero-orbit i { position: absolute; left: 49%; top: -7px; width: 14px; height: 14px; border-radius: 50%; background: var(--seg-blue); box-shadow: 0 0 36px var(--seg-blue); }
@keyframes orbit { to { transform: rotate(360deg); } }
.hero-inner { position: relative; z-index: 5; width: 100%; }
.hero-content { max-width: 880px; }
.hero-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero-kicker span { width: 46px; height: 3px; background: var(--seg-blue); }
.hero-title { min-height: 2.05em; margin: 0; max-width: 960px; font-size: clamp(52px, 7.2vw, 112px); line-height: .91; letter-spacing: -.065em; text-wrap: balance; }
.hero-title strong { color: var(--seg-blue); font-weight: inherit; }
.hero-description { max-width: 650px; margin: 30px 0 0; color: rgba(255,255,255,.68); font-size: clamp(17px, 1.5vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-top: 64px; }
.hero-controls { display: flex; align-items: center; gap: 12px; }
.hero-dot { position: relative; width: 62px; height: 4px; border: 0; padding: 0; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.18); }
.hero-dot::after { content: ''; position: absolute; inset: 0; background: var(--seg-blue); transform: translateX(-101%); }
.hero-dot.is-active::after { animation: slideProgress 6s linear forwards; }
@keyframes slideProgress { to { transform: translateX(0); } }
.hero-index { color: rgba(255,255,255,.65); font-size: 13px; letter-spacing: .15em; }
.hero-scroll { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.55); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.hero-scroll span { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--seg-line); border-radius: 50%; animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce { 50% { transform: translateY(7px); } }

.page-hero {
  position: relative;
  min-height: 72svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 80px) 0 90px;
  overflow: hidden;
  background: #080b11;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: var(--page-image) center/cover no-repeat; opacity: .42; transform: scale(1.03); }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,7,12,.98) 0%, rgba(5,7,12,.75) 52%, rgba(5,7,12,.5) 100%), linear-gradient(0deg, #07090d, transparent 60%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 950px; margin: 0; font-size: clamp(54px, 8vw, 120px); line-height: .9; letter-spacing: -.065em; }
.page-hero p { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: clamp(17px, 1.5vw, 21px); }

.stat-strip { position: relative; z-index: 4; margin-top: -46px; }
.stat-panel { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--seg-line); border-radius: var(--radius-md); background: rgba(15,20,29,.88); backdrop-filter: blur(22px); box-shadow: var(--shadow); }
.stat { padding: 34px; border-right: 1px solid var(--seg-line); }
.stat:last-child { border-right: 0; }
.stat-number { display: block; color: #fff; font-size: clamp(32px, 4vw, 54px); font-weight: 700; letter-spacing: -.05em; line-height: 1; }
.stat-label { display: block; margin-top: 10px; color: var(--seg-muted); font-size: 13px; }

.intro-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.intro-sticky { position: sticky; top: 120px; }
.intro-copy p { margin: 0 0 26px; color: #aab4c6; font-size: clamp(19px, 2.1vw, 28px); line-height: 1.48; }
.intro-copy p strong { color: #fff; }

.cards { margin-top: 64px; }
.card {
  position: relative;
  min-height: 320px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--seg-line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018));
  transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease);
}
.card:hover { transform: translateY(-10px); border-color: rgba(var(--seg-blue-rgb), .6); background: linear-gradient(145deg, rgba(var(--seg-blue-rgb), .15), rgba(255,255,255,.02)); }
.card-index { color: var(--seg-blue-light); font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.card h3 { margin: 62px 0 16px; font-size: clamp(24px, 2.3vw, 34px); line-height: 1.05; letter-spacing: -.035em; }
.card p { margin: 0; color: var(--seg-muted); }
.card-arrow { position: absolute; right: 30px; top: 30px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--seg-line); border-radius: 50%; transition: transform .45s var(--ease), background .45s var(--ease); }
.card:hover .card-arrow { transform: rotate(45deg); background: var(--seg-blue); }
.card::after { content: ''; position: absolute; width: 180px; aspect-ratio: 1; border-radius: 50%; right: -100px; bottom: -100px; background: var(--seg-blue); filter: blur(60px); opacity: .12; transition: opacity .45s; }
.card:hover::after { opacity: .35; }

.visual-block { position: relative; min-height: 620px; overflow: hidden; border-radius: var(--radius-lg); }
.visual-block img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.visual-block::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,8,14,.84), transparent 62%); }
.visual-caption { position: absolute; z-index: 2; left: 44px; right: 44px; bottom: 42px; }
.visual-caption h3 { margin: 0; max-width: 700px; font-size: clamp(34px, 4.8vw, 68px); line-height: .98; letter-spacing: -.05em; }

.method-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.method-visual { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.method-ring { position: absolute; inset: 5%; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; animation: orbit 24s linear infinite; }
.method-ring:nth-child(2) { inset: 22%; animation-direction: reverse; animation-duration: 18s; }
.method-ring:nth-child(3) { inset: 37%; animation-duration: 12s; }
.method-core { position: relative; z-index: 2; width: 34%; aspect-ratio: 1; display: grid; place-items: center; border-radius: 34%; background: var(--seg-blue); box-shadow: 0 0 120px rgba(var(--seg-blue-rgb), .5); transform: rotate(45deg); }
.method-core img { width: 68%; transform: rotate(-45deg); }
.method-step { padding: 26px 0; border-bottom: 1px solid var(--seg-line); }
.method-step:first-child { border-top: 1px solid var(--seg-line); }
.method-step header { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.method-step h3 { margin: 0; font-size: clamp(27px, 3vw, 42px); letter-spacing: -.04em; }
.method-step span { color: var(--seg-blue-light); font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.method-step p { margin: 12px 0 0; color: var(--seg-muted); }

.quote-band {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--seg-blue);
}
.quote-marquee {
  width: 100%;
  overflow: hidden;
}
.quote-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  transform: translate3d(-50%, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  animation: quote-marquee-right 32s linear infinite;
  animation-play-state: running;
}
.quote-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.quote-group span {
  display: block;
  flex: 0 0 auto;
  padding-right: 72px;
  color: #fff;
  font-size: clamp(50px, 8vw, 122px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.06em;
  white-space: nowrap;
}
.quote-group span::after {
  content: '•';
  display: inline-block;
  margin-left: 72px;
  font-size: .38em;
  vertical-align: .2em;
  opacity: .65;
}
@keyframes quote-marquee-right {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.logo-wall { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 52px; border: 1px solid rgba(12,20,35,.1); border-radius: var(--radius-md); overflow: hidden; }
.logo-wall div { min-height: 155px; display: grid; place-items: center; color: #6d788b; border-right: 1px solid rgba(12,20,35,.1); border-bottom: 1px solid rgba(12,20,35,.1); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.logo-wall div:nth-child(4n) { border-right: 0; }
.logo-wall div:nth-last-child(-n+4) { border-bottom: 0; }

.timeline { position: relative; margin-top: 70px; }
.timeline::before { content: ''; position: absolute; left: 24px; top: 10px; bottom: 10px; width: 1px; background: var(--seg-line); }
.timeline-item { position: relative; padding: 0 0 58px 80px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: 10px; top: 4px; width: 29px; height: 29px; border: 8px solid var(--seg-ink); border-radius: 50%; background: var(--seg-blue); box-shadow: 0 0 0 1px rgba(var(--seg-blue-rgb), .55); }
.timeline-item small { color: var(--seg-blue-light); font-weight: 800; letter-spacing: .14em; }
.timeline-item h3 { margin: 8px 0 12px; font-size: clamp(26px, 3vw, 42px); letter-spacing: -.04em; }
.timeline-item p { max-width: 740px; margin: 0; color: var(--seg-muted); }

.service-detail { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; padding: 64px 0; border-top: 1px solid var(--seg-line); }
.service-detail:last-child { border-bottom: 1px solid var(--seg-line); }
.service-detail-number { color: var(--seg-blue-light); font-size: 13px; font-weight: 800; letter-spacing: .16em; }
.service-detail h2 { margin: 0 0 18px; font-size: clamp(36px, 4.5vw, 66px); line-height: .98; letter-spacing: -.05em; }
.service-detail p { max-width: 700px; margin: 0; color: var(--seg-muted); font-size: 18px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.service-tags span { padding: 9px 14px; border: 1px solid var(--seg-line); border-radius: 999px; color: #c2cada; font-size: 12px; }

.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.contact-info { position: sticky; top: 120px; }
.contact-card { margin-top: 36px; padding: 28px; border: 1px solid var(--seg-line); border-radius: var(--radius-md); background: rgba(255,255,255,.035); }
.contact-card a { display: block; margin-top: 8px; font-size: 20px; font-weight: 700; }
.form-card { padding: 42px; border: 1px solid var(--seg-line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.02)); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field--full { grid-column: 1 / -1; }
.field label { color: #c9d0dd; font-size: 13px; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 56px;
  padding: 0 17px;
  color: #fff;
  border: 1px solid var(--seg-line);
  border-radius: 14px;
  outline: none;
  background: rgba(255,255,255,.045);
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.field textarea { min-height: 150px; padding-top: 16px; resize: vertical; }
.field select { color-scheme: dark; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--seg-blue); background: rgba(var(--seg-blue-rgb), .06); box-shadow: 0 0 0 4px rgba(var(--seg-blue-rgb), .12); }
.form-note { margin: 16px 0 0; color: var(--seg-muted); font-size: 12px; }
.form-status { display: none; margin: 16px 0 0; padding: 14px 16px; border-radius: 12px; background: rgba(54, 211, 153, .12); color: #8ef1c6; }
.form-status.show { display: block; }

.cta-panel { position: relative; overflow: hidden; padding: 76px; border-radius: var(--radius-lg); background: var(--seg-blue); }
.cta-panel::before { content: ''; position: absolute; width: 580px; aspect-ratio: 1; right: -230px; top: -270px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.05), 0 0 0 140px rgba(255,255,255,.035); }
.cta-panel > * { position: relative; z-index: 2; }
.cta-panel h2 { max-width: 850px; margin: 0; font-size: clamp(46px, 6.6vw, 92px); line-height: .95; letter-spacing: -.06em; }
.cta-panel p { max-width: 620px; margin: 24px 0 0; color: rgba(255,255,255,.76); font-size: 18px; }
.cta-panel .btn { margin-top: 30px; color: var(--seg-blue); background: #fff; }

.site-footer { padding: 72px 0 26px; border-top: 1px solid var(--seg-line); background: #05070a; }
.footer-top { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 70px; padding-bottom: 60px; }
.footer-brand img { width: 190px; }
.footer-brand p { max-width: 440px; margin: 24px 0 0; color: var(--seg-muted); }
.footer-title { margin: 0 0 18px; color: #fff; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; color: var(--seg-muted); }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid var(--seg-line); color: #717b8e; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media (max-width: 980px) {
  :root { --header-h: 76px; }
  .nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 32px 40px;
    background: rgba(5,7,11,.97);
    backdrop-filter: blur(24px);
    transform: translateX(100%);
    transition: transform .5s var(--ease);
  }
  .menu-open .nav { transform: none; }
  .nav a { font-size: 32px; letter-spacing: -.03em; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .intro-layout, .method-wrap, .contact-layout { grid-template-columns: 1fr; gap: 54px; }
  .intro-sticky, .contact-info { position: static; }
  .stat-panel { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--seg-line); }
  .service-detail { grid-template-columns: 120px 1fr; gap: 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 88px 0; }
  .section--tight { padding: 62px 0; }
  .logo img { width: 124px; }
  .hero { min-height: 820px; padding-bottom: 42px; }
  .hero-title { min-height: 3.65em; font-size: clamp(48px, 14.5vw, 72px); }
  .hero-description { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-bottom { margin-top: 42px; }
  .hero-scroll { display: none; }
  .hero-dot { width: 46px; }
  .page-hero { min-height: 640px; padding-bottom: 68px; }
  .page-hero h1 { font-size: clamp(52px, 15vw, 78px); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stat-panel { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--seg-line); }
  .stat:last-child { border-bottom: 0; }
  .visual-block { min-height: 520px; border-radius: var(--radius-md); }
  .visual-caption { left: 24px; right: 24px; bottom: 24px; }
  .method-visual { max-width: 500px; margin: auto; }
  .service-detail { grid-template-columns: 1fr; gap: 18px; padding: 46px 0; }
  .form-card { padding: 24px; border-radius: var(--radius-md); }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .cta-panel { padding: 48px 26px; border-radius: var(--radius-md); }
  .footer-top { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
@media (prefers-reduced-motion: reduce) {
  .quote-track {
    animation-name: quote-marquee-right !important;
    animation-duration: 42s !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
  }
}

/* =========================================================
   HOME V2 — refinamentos de hierarquia, contraste e movimento
========================================================= */
.home-page {
  --home-grid: 1180px;
}

.home-page .hero {
  min-height: 900px;
  align-items: center;
  padding: calc(var(--header-h) + 74px) 0 58px;
}
.home-page .hero .container,
.home-page .stat-strip .container {
  width: min(calc(100% - 88px), var(--home-grid));
}
.home-page .hero-slide { background-position: center 46%; }
.home-page .hero-slide::before {
  background:
    linear-gradient(90deg, rgba(3,5,10,.98) 0%, rgba(3,5,10,.88) 38%, rgba(3,5,10,.34) 68%, rgba(3,5,10,.62) 100%),
    linear-gradient(180deg, rgba(3,5,10,.22), rgba(3,5,10,.1));
}
.home-page .hero-slide::after {
  background: linear-gradient(0deg, #07090d 0%, rgba(7,9,13,.62) 18%, transparent 52%);
}
.home-page .hero-inner { display: flex; flex-direction: column; justify-content: center; min-height: calc(900px - var(--header-h) - 132px); }
.home-page .hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 392px);
  align-items: end;
  gap: clamp(36px, 4vw, 64px);
}
.home-page .hero-content {
  width: 100%;
  max-width: 700px;
}
.home-page .hero-title {
  min-height: 2.73em;
  max-width: 700px;
  font-size: clamp(56px, 5.8vw, 94px);
  line-height: .9;
  letter-spacing: -.068em;
}
.home-page .hero-description { max-width: 560px; margin-top: 26px; }
.home-page .hero-actions { margin-top: 30px; }
.home-page .hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 600;
}
.home-page .hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.home-page .hero-proof i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--seg-blue);
  box-shadow: 0 0 16px rgba(var(--seg-blue-rgb), .9);
}
.home-page .hero-command {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 392px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(17,23,35,.82), rgba(6,9,15,.48));
  box-shadow: 0 28px 90px rgba(0,0,0,.34);
  backdrop-filter: blur(24px) saturate(145%);
}
.home-page .hero-command::before {
  content: '';
  position: absolute;
  width: 220px;
  aspect-ratio: 1;
  right: -78px;
  top: -88px;
  border-radius: 50%;
  background: rgba(var(--seg-blue-rgb), .3);
  filter: blur(55px);
}
.home-page .hero-command::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}
.home-page .hero-command > * { position: relative; z-index: 2; }
.home-page .hero-command-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.home-page .hero-live { display: inline-flex; align-items: center; gap: 7px; color: #dbe3ff; }
.home-page .hero-live i { width: 7px; height: 7px; border-radius: 50%; background: #52e39a; box-shadow: 0 0 14px rgba(82,227,154,.85); animation: heroPulse 1.8s ease-in-out infinite; }
@keyframes heroPulse { 50% { opacity: .45; transform: scale(.76); } }
.home-page .hero-command-main { min-height: 225px; padding: 34px 28px 28px; }
.home-page .hero-command-main small { display: block; color: var(--seg-blue-light); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.home-page .hero-command-main strong { display: block; margin-top: 14px; font-size: clamp(30px, 3vw, 46px); line-height: 1; letter-spacing: -.055em; }
.home-page .hero-command-main p { max-width: 340px; margin: 17px 0 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.65; }
.home-page .hero-meter { height: 5px; margin-top: 28px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.09); }
.home-page .hero-meter i { display: block; width: 72%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--seg-blue), #7ba0ff); box-shadow: 0 0 22px rgba(var(--seg-blue-rgb), .65); transition: width .8s var(--ease); }
.home-page .hero-command-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.1); }
.home-page .hero-command-grid div { min-width: 0; padding: 18px 15px; border-right: 1px solid rgba(255,255,255,.09); }
.home-page .hero-command-grid div:last-child { border-right: 0; }
.home-page .hero-command-grid span, .home-page .hero-command-grid small { display: block; color: rgba(255,255,255,.42); font-size: 9px; }
.home-page .hero-command-grid strong { display: block; margin: 5px 0 3px; color: #fff; font-size: 13px; }
.home-page .hero-bottom { margin-top: 44px; }
.home-page .hero-navigation { display: flex; align-items: center; gap: 18px; }
.home-page .hero-index { min-width: 58px; }
.home-page .hero-controls { gap: 8px; }
.home-page .hero-dot { width: 48px; height: 3px; }

.home-page .stat-strip { margin-top: -34px; }
.home-page .stat-panel { border-color: rgba(255,255,255,.14); background: rgba(12,16,24,.9); }
.home-page .stat { padding: 30px 32px; }

.home-page .intro-layout { grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 128px); }
.home-page .intro-copy { padding-top: 6px; }
.home-page .intro-copy p { max-width: 740px; }

.home-page .section--light {
  background:
    radial-gradient(circle at 82% 18%, rgba(var(--seg-blue-rgb), .09), transparent 27rem),
    linear-gradient(180deg, #f7f9ff, #eef3ff);
}
.home-page .section--light .cards { gap: 18px; }
.home-page .section--light .card {
  min-height: 285px;
  border-color: #dce4f3;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 50px rgba(43,61,104,.07);
}
.home-page .section--light .card:hover { border-color: rgba(var(--seg-blue-rgb), .5); background: #fff; box-shadow: 0 24px 65px rgba(39,91,255,.13); }
.home-page .section--light .card h3 { color: #111827; }
.home-page .section--light .card p { color: #68758d; }
.home-page .section--light .card-arrow { color: #172033; border-color: #d9e1ef; background: rgba(255,255,255,.72); }
.home-page .section--light .card:hover .card-arrow { color: #fff; }
.home-page .section--light .visual-block { min-height: 580px; box-shadow: 0 30px 80px rgba(25,42,77,.18); }
.home-page .visual-block img { transition: transform 1.1s var(--ease); }
.home-page .visual-block:hover img { transform: scale(1.035); }
.home-page .visual-caption { color: #fff; }
.home-page .visual-caption .eyebrow { color: #8da9ff; }
.home-page .visual-caption h3 { text-shadow: 0 6px 30px rgba(0,0,0,.4); }

.home-page .home-outcomes { overflow: hidden; background: #080b11; }
.home-page .home-outcomes::before {
  content: '';
  position: absolute;
  width: 700px;
  aspect-ratio: 1;
  left: -380px;
  bottom: -390px;
  border-radius: 50%;
  background: rgba(var(--seg-blue-rgb), .16);
  filter: blur(100px);
}
.home-page .outcomes-head { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 70px; }
.home-page .outcomes-head .section-text { padding-bottom: 9px; }
.home-page .outcomes-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; margin-top: 62px; }
.home-page .outcome-stack { display: grid; gap: 22px; }
.home-page .outcome-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018));
}
.home-page .outcome-card > span, .home-page .outcome-card-overlay > span { color: var(--seg-blue-light); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.home-page .outcome-card h3 { max-width: 480px; margin: 54px 0 14px; font-size: clamp(28px, 3.5vw, 54px); line-height: .98; letter-spacing: -.05em; }
.home-page .outcome-card p { max-width: 520px; margin: 0; color: var(--seg-muted); }
.home-page .outcome-card b { position: absolute; right: 26px; bottom: 18px; color: rgba(255,255,255,.035); font-size: clamp(58px, 8vw, 110px); line-height: 1; letter-spacing: -.08em; }
.home-page .outcome-card--image { min-height: 592px; padding: 0; }
.home-page .outcome-card--image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,6,12,.96), rgba(3,6,12,.06) 78%); }
.home-page .outcome-card--image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.home-page .outcome-card--image:hover img { transform: scale(1.045); }
.home-page .outcome-card-overlay { position: absolute; z-index: 2; left: 38px; right: 38px; bottom: 38px; }
.home-page .outcome-card-overlay h3 { margin-top: 16px; }

.home-page .home-method { background: linear-gradient(180deg, #07090d, #090c12); }
.home-page .method-wrap { gap: clamp(64px, 8vw, 112px); }
.home-page .method-visual::before {
  content: 'SMART / ESTIMATE / GROWTH';
  position: absolute;
  left: 50%;
  top: 50%;
  color: rgba(255,255,255,.16);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .28em;
  transform: translate(-50%, -50%) rotate(-90deg) translateY(-170px);
  white-space: nowrap;
}
.home-page .method-core { width: 30%; }

.home-page .quote-band { padding: 78px 0; }
.home-page .quote-track span { font-size: clamp(54px, 7.5vw, 112px); }

.home-page .section--cta { padding: 104px 0; }
.home-page .cta-panel {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 86px);
  background-image:
    linear-gradient(90deg, rgba(2,5,12,.98) 0%, rgba(2,5,12,.92) 34%, rgba(2,5,12,.58) 54%, rgba(2,5,12,.16) 78%, rgba(2,5,12,.08) 100%),
    url('../images/bg-cta-seg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 32px 100px rgba(0,0,0,.34);
}
.home-page .cta-panel::before { display: none; }
.home-page .cta-panel h2 { max-width: 650px; font-size: clamp(46px, 5.5vw, 78px); }
.home-page .cta-panel p { max-width: 570px; color: rgba(255,255,255,.78); }

@media (max-width: 1100px) {
  .home-page .hero .container,
  .home-page .stat-strip .container { width: min(calc(100% - 60px), var(--home-grid)); }
  .home-page .hero-layout { grid-template-columns: minmax(0, 1fr) 330px; gap: 34px; }
  .home-page .hero-content,
  .home-page .hero-title { max-width: 100%; }
  .home-page .hero-title { font-size: clamp(54px, 6.6vw, 84px); }
  .home-page .hero-command { max-width: 330px; min-height: 390px; }
}

@media (max-width: 980px) {
  .home-page .hero .container,
  .home-page .stat-strip .container { width: min(calc(100% - 40px), var(--home-grid)); }
  .home-page .hero { min-height: 940px; align-items: flex-end; }
  .home-page .hero-inner { min-height: auto; }
  .home-page .hero-layout { grid-template-columns: 1fr; }
  .home-page .hero-title { min-height: 2.75em; max-width: 760px; }
  .home-page .hero-command { display: none; }
  .home-page .hero-proof { margin-bottom: 8px; }
  .home-page .intro-layout { grid-template-columns: 1fr; gap: 40px; }
  .home-page .intro-sticky { position: static; }
  .home-page .outcomes-head, .home-page .outcomes-grid { grid-template-columns: 1fr; }
  .home-page .outcomes-head { gap: 20px; }
  .home-page .outcome-card--image { min-height: 520px; }
}

@media (max-width: 680px) {
  .home-page .hero .container,
  .home-page .stat-strip .container { width: min(calc(100% - 28px), var(--home-grid)); }
  .home-page .hero {
    min-height: 760px;
    padding: calc(var(--header-h) + 54px) 0 34px;
  }
  .home-page .hero-slide { background-position: 62% center; }
  .home-page .hero-slide::before { background: linear-gradient(90deg, rgba(3,5,10,.96), rgba(3,5,10,.74)), linear-gradient(0deg, #07090d 0%, transparent 48%); }
  .home-page .hero-title { min-height: 3.02em; font-size: clamp(43px, 13vw, 63px); line-height: .92; }
  .home-page .hero-kicker { margin-bottom: 18px; font-size: 10px; letter-spacing: .14em; }
  .home-page .hero-kicker span { width: 30px; }
  .home-page .hero-description { margin-top: 20px; font-size: 15px; }
  .home-page .hero-actions { margin-top: 24px; }
  .home-page .hero-proof { display: grid; gap: 8px; margin-top: 22px; }
  .home-page .hero-bottom { margin-top: 30px; }
  .home-page .hero-navigation { width: 100%; justify-content: space-between; }
  .home-page .hero-dot { width: 38px; }
  .home-page .stat-strip { margin-top: 0; }
  .home-page .stat { padding: 25px 24px; }
  .home-page .intro-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .home-page .intro-sticky {
    max-width: 320px;
  }
  .home-page .intro-sticky .section-title {
    max-width: 320px;
    margin-bottom: 0;
    font-size: clamp(44px, 12vw, 58px);
    line-height: .95;
  }
  .home-page .intro-copy {
    padding-top: 0;
  }
  .home-page .intro-copy p {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.7;
  }
  .home-page .intro-copy .btn {
    min-height: 52px;
    padding-inline: 20px;
  }
  .home-page .section--light .cards { margin-top: 44px; }
  .home-page .section--light .card { min-height: 260px; padding: 28px; }
  .home-page .section--light .visual-block { min-height: 440px; }
  .home-page .outcomes-grid { margin-top: 42px; }
  .home-page .outcome-card, .home-page .outcome-card--image { min-height: 390px; }
  .home-page .outcome-card { padding: 27px; }
  .home-page .outcome-card h3 { margin-top: 44px; }
  .home-page .outcome-card-overlay { left: 26px; right: 26px; bottom: 26px; }
  .home-page .method-visual::before { display: none; }
  .home-page .quote-band { padding: 58px 0; }
  .home-page .section--cta { padding: 76px 0; }
  .home-page .cta-panel {
    min-height: 560px;
    background-image:
      linear-gradient(90deg, rgba(2,5,12,.97) 0%, rgba(2,5,12,.90) 48%, rgba(2,5,12,.52) 78%, rgba(2,5,12,.28) 100%),
      url('../images/bg-cta-seg.png');
    background-position: 66% center;
  }
}

/* Home CTA — botão compacto SEG */
.home-page .cta-panel .btn {
  align-self: flex-start;
  width: auto;
  min-width: 0;
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  background: var(--seg-blue);
  border-color: var(--seg-blue);
  box-shadow: 0 14px 38px rgba(var(--seg-blue-rgb), .32);
}
.home-page .cta-panel .btn:hover {
  color: #fff;
  background: #1748e8;
  border-color: #1748e8;
  box-shadow: 0 18px 46px rgba(var(--seg-blue-rgb), .46);
}

@media (max-width: 680px) {
  .home-page .cta-panel .btn {
    min-height: 46px;
    padding-inline: 19px;
    font-size: 14px;
  }
}

/* =====================================================
   WordPress + Contact Form 7 integration
===================================================== */
.nav > ul,
.nav .menu {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav li { margin: 0; padding: 0; }
.nav .current-menu-item > a { color: #fff; }
.nav .current-menu-item > a::after { right: 0; }

.seg-cf7-shell .wpcf7,
.seg-cf7-shell .wpcf7-form { margin: 0; }
.seg-cf7-shell .wpcf7-form > p { margin: 0; }
.seg-cf7-shell .wpcf7-form-control-wrap { display: block; width: 100%; }
.seg-cf7-shell .wpcf7-form-control {
  font-family: inherit;
}
.seg-cf7-shell .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
}
.seg-cf7-shell .wpcf7-submit {
  width: auto;
  min-width: 190px;
  border: 0;
}
.seg-cf7-shell .wpcf7-submit:disabled { cursor: wait; opacity: .68; }
.seg-cf7-shell .wpcf7-spinner {
  margin: 0 0 0 12px;
  vertical-align: middle;
  background-color: rgba(255,255,255,.24);
}
.seg-cf7-shell .wpcf7-not-valid-tip {
  margin-top: 7px;
  color: #ff8b9a;
  font-size: 12px;
}
.seg-cf7-shell .wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(54,211,153,.34) !important;
  border-radius: 12px;
  color: #8ef1c6;
  background: rgba(54,211,153,.12);
}
.seg-cf7-shell form.invalid .wpcf7-response-output,
.seg-cf7-shell form.unaccepted .wpcf7-response-output,
.seg-cf7-shell form.payment-required .wpcf7-response-output {
  border-color: rgba(255,184,77,.38) !important;
  color: #ffd08a;
  background: rgba(255,184,77,.10);
}
.seg-cf7-shell form.failed .wpcf7-response-output,
.seg-cf7-shell form.aborted .wpcf7-response-output,
.seg-cf7-shell form.spam .wpcf7-response-output {
  border-color: rgba(255,85,111,.38) !important;
  color: #ff9cad;
  background: rgba(255,85,111,.10);
}
.seg-form-setup {
  padding: 24px;
  border: 1px dashed rgba(255,255,255,.25);
  border-radius: 18px;
  color: #dce3f2;
  background: rgba(255,255,255,.035);
}
.seg-form-setup strong { color: #fff; }
.seg-form-setup p { margin: 8px 0 0; color: var(--seg-muted); }

@media (max-width: 980px) {
  .nav > ul,
  .nav .menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .nav li { width: 100%; }
}


/* =========================================================
   CONTACT FORM 7 — exact match to the original HTML design
========================================================= */
.seg-cf7-shell {
  width: 100%;
  min-width: 0;
  font-family: 'Public Sans', Arial, sans-serif;
}
.seg-cf7-shell .wpcf7,
.seg-cf7-shell .wpcf7-form,
.seg-cf7-shell .seg-cf7-grid {
  width: 100%;
  margin: 0 !important;
}
.seg-cf7-shell .wpcf7-form {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}
.seg-cf7-shell .wpcf7-form > p,
.seg-cf7-shell .wpcf7-form br {
  display: none !important;
  margin: 0 !important;
}
.seg-cf7-shell .seg-cf7-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 18px !important;
  align-items: start;
}
.seg-cf7-shell .field {
  display: flex !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  flex-direction: column;
  gap: 9px;
}
.seg-cf7-shell .field--full {
  grid-column: 1 / -1 !important;
}
.seg-cf7-shell .field label {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  color: #c9d0dd !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
}
.seg-cf7-shell .wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.seg-cf7-shell input[type='text'],
.seg-cf7-shell input[type='email'],
.seg-cf7-shell input[type='tel'],
.seg-cf7-shell select,
.seg-cf7-shell textarea {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 56px !important;
  margin: 0 !important;
  padding: 0 17px !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 14px !important;
  outline: none !important;
  background-color: rgba(255,255,255,.045) !important;
  box-shadow: none !important;
  font-family: inherit !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  box-sizing: border-box !important;
  transition: border-color .3s, box-shadow .3s, background-color .3s !important;
  -webkit-appearance: none;
  appearance: none;
}
.seg-cf7-shell select {
  padding-right: 46px !important;
  color-scheme: dark;
  background-image: linear-gradient(45deg, transparent 50%, #9ba6ba 50%), linear-gradient(135deg, #9ba6ba 50%, transparent 50%) !important;
  background-position: calc(100% - 20px) 24px, calc(100% - 15px) 24px !important;
  background-size: 5px 5px, 5px 5px !important;
  background-repeat: no-repeat !important;
}
.seg-cf7-shell select option {
  color: #fff;
  background: #10141c;
}
.seg-cf7-shell textarea {
  min-height: 150px !important;
  height: 150px;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  resize: vertical;
}
.seg-cf7-shell input::placeholder,
.seg-cf7-shell textarea::placeholder {
  color: rgba(255,255,255,.38) !important;
  opacity: 1 !important;
}
.seg-cf7-shell input[type='text']:focus,
.seg-cf7-shell input[type='email']:focus,
.seg-cf7-shell input[type='tel']:focus,
.seg-cf7-shell select:focus,
.seg-cf7-shell textarea:focus {
  border-color: var(--seg-blue) !important;
  background-color: rgba(var(--seg-blue-rgb), .06) !important;
  box-shadow: 0 0 0 4px rgba(var(--seg-blue-rgb), .12) !important;
}
.seg-cf7-shell .wpcf7-not-valid {
  border-color: rgba(255,85,111,.72) !important;
}
.seg-cf7-shell .seg-submit-row {
  align-items: flex-start;
  gap: 0;
}
.seg-cf7-shell input.wpcf7-submit,
.seg-cf7-shell .seg-submit {
  display: inline-flex !important;
  width: auto !important;
  min-width: 190px !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 0 24px !important;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  background: var(--seg-blue) !important;
  box-shadow: 0 14px 42px rgba(var(--seg-blue-rgb), .32) !important;
  font-family: inherit !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease) !important;
}
.seg-cf7-shell input.wpcf7-submit:hover,
.seg-cf7-shell .seg-submit:hover {
  transform: translateY(-3px);
  background: #1748e8 !important;
  box-shadow: 0 18px 52px rgba(var(--seg-blue-rgb), .46) !important;
}
.seg-cf7-shell input.wpcf7-submit:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}
.seg-cf7-shell .wpcf7-spinner {
  margin: 13px 0 0 12px !important;
  vertical-align: middle;
  background-color: rgba(255,255,255,.24);
}
.seg-cf7-shell .form-note {
  width: 100%;
  margin: 16px 0 0 !important;
  color: var(--seg-muted) !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
}
.seg-cf7-shell .wpcf7-not-valid-tip {
  display: block;
  margin: 7px 0 0 !important;
  color: #ff8b9a !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}
.seg-cf7-shell .wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(54,211,153,.34) !important;
  border-radius: 12px !important;
  color: #8ef1c6 !important;
  background: rgba(54,211,153,.12) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}
.seg-cf7-shell form.invalid .wpcf7-response-output,
.seg-cf7-shell form.unaccepted .wpcf7-response-output,
.seg-cf7-shell form.payment-required .wpcf7-response-output {
  border-color: rgba(255,184,77,.38) !important;
  color: #ffd08a !important;
  background: rgba(255,184,77,.10) !important;
}
.seg-cf7-shell form.failed .wpcf7-response-output,
.seg-cf7-shell form.aborted .wpcf7-response-output,
.seg-cf7-shell form.spam .wpcf7-response-output {
  border-color: rgba(255,85,111,.38) !important;
  color: #ff9cad !important;
  background: rgba(255,85,111,.10) !important;
}

@media (max-width: 680px) {
  .seg-cf7-shell .seg-cf7-grid {
    grid-template-columns: 1fr !important;
  }
  .seg-cf7-shell .field--full {
    grid-column: auto !important;
  }
  .seg-cf7-shell input.wpcf7-submit,
  .seg-cf7-shell .seg-submit {
    width: 100% !important;
  }
}
