:root {
  --navy: #2a3a7a;
  --navy-deep: #1b274f;
  --cyan: #37acdf;
  --cyan-soft: #5bc0eb;
  --ink: #1c2333;
  --muted: #6b7385;
  --bg: #f3f5f9;
  --card: #ffffff;
  --line: rgba(28, 35, 51, 0.08);
  --line-strong: rgba(42, 58, 122, 0.18);
  --ok: #0f7a4c;
  --bad: #b42318;
  --radius: 12px;
  --font: "Nunito", "Segoe UI", sans-serif;
  --shadow: 0 1px 2px rgba(28, 35, 51, 0.04), 0 14px 36px rgba(27, 39, 79, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 0.98rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* —— Top bar —— */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 66px;
}

.brand img {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9px;
  padding: 0.55rem 1.05rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  background: #fafbfc;
}

.btn-solid {
  background: var(--navy);
  color: #fff;
}

.btn-solid:hover {
  background: var(--navy-deep);
}

.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line-strong);
  width: 100%;
}

.btn-outline:hover {
  border-color: var(--navy);
  background: #f8f9fb;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: 5rem 0 4.25rem;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, #121a38 0%, var(--navy-deep) 38%, #243a86 68%, #1e5f8a 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb--a {
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  top: -12%;
  right: -6%;
  background: radial-gradient(circle, rgba(55, 172, 223, 0.45) 0%, transparent 68%);
  animation: drift 14s ease-in-out infinite alternate;
}

.hero-orb--b {
  width: min(40vw, 320px);
  height: min(40vw, 320px);
  bottom: -18%;
  left: -8%;
  background: radial-gradient(circle, rgba(42, 58, 122, 0.55) 0%, transparent 70%);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

.hero-orb--c {
  width: 180px;
  height: 180px;
  top: 42%;
  left: 48%;
  background: radial-gradient(circle, rgba(91, 192, 235, 0.22) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

.hero-inner {
  max-width: 660px;
  animation: rise 0.75s ease both;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.brand-kazuri {
  color: #ffffff;
}

.brand-host {
  color: var(--cyan-soft);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  text-wrap: balance;
}

.hero-lead {
  margin: 0.95rem 0 1.65rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  font-weight: 500;
  max-width: 34rem;
}

.search {
  display: flex;
  gap: 0.55rem;
  align-items: stretch;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(8, 14, 35, 0.28);
  animation: rise 0.75s ease 0.08s both;
}

.search input {
  flex: 1;
  min-width: 0;
  height: 50px;
  padding: 0 1rem;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  background: #fff;
  color: var(--ink);
}

.search input::placeholder {
  color: #8b93a5;
  font-weight: 500;
}

.search input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(55, 172, 223, 0.35);
}

.search button {
  height: 50px;
  padding: 0 1.35rem;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan) 0%, #2f8fc4 100%);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(55, 172, 223, 0.35);
}

.search button:hover {
  filter: brightness(1.05);
}

.search button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.search-result {
  min-height: 1.4rem;
  margin-top: 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.search-result[data-state="ok"] { color: #8dffc0; }
.search-result[data-state="bad"] { color: #ffb4a8; }
.search-result[data-state="info"] { color: rgba(255, 255, 255, 0.72); }

.search-result a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 800;
}

.tld-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  animation: rise 0.75s ease 0.16s both;
}

.tld-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.tld-row strong {
  color: #fff;
  font-weight: 800;
}

/* —— Sections —— */
section {
  padding: 3.75rem 0;
}

.section-head {
  margin-bottom: 1.65rem;
  max-width: 38rem;
}

.section-head h2 {
  margin: 0 0 0.4rem;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

/* —— Plans —— */
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.2rem 1.05rem 1.15rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.plan:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.plan.featured {
  border-color: var(--navy);
  background: linear-gradient(180deg, #eef3ff 0%, #fff 42%);
}

.plan-tag {
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.plan h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.price {
  margin: 0.15rem 0 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.price span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.muted {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.features {
  margin: 0.65rem 0 1rem;
  padding: 0;
  list-style: none;
  flex: 1;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 550;
}

.features li {
  padding: 0.3rem 0;
  border-top: 1px solid var(--line);
}

.features li:first-child {
  border-top: 0;
}

.plan .btn {
  margin-top: auto;
}

/* —— Agence CREA —— */
.crea {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  border: 0;
  background: transparent;
}

.crea-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, #121a38 0%, var(--navy-deep) 38%, #243a86 68%, #1e5f8a 100%);
}

.crea-bg .hero-orb--a {
  width: min(48vw, 380px);
  height: min(48vw, 380px);
  top: -16%;
  right: -8%;
}

.crea-bg .hero-orb--b {
  width: min(36vw, 280px);
  height: min(36vw, 280px);
  bottom: -20%;
  left: -10%;
}

.crea .section-head h2 {
  color: #fff;
}

.crea .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.section-head--wide {
  max-width: 42rem;
}

.section-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-soft);
}

.crea-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.crea-card {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.1rem 1.15rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 28px rgba(8, 14, 35, 0.22);
  color: var(--ink);
}

.crea-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--navy-deep);
}

.crea-card > p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
}

.crea-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--ink);
}

.crea-card li {
  position: relative;
  padding: 0.28rem 0 0.28rem 1rem;
  border-top: 1px solid var(--line);
}

.crea-card li:first-child {
  border-top: 0;
}

.crea-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.crea-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.crea-cta strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.crea-cta p {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 500;
}

.crea-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.crea .btn-solid {
  background: var(--cyan);
  color: #0b1b2a;
}

.crea .btn-solid:hover {
  filter: brightness(1.06);
}

/* —— Services —— */
.services {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border-block: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.15rem 1.05rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(55, 172, 223, 0.35);
}

.service-card--accent {
  background: linear-gradient(165deg, #1b274f 0%, #2a3a7a 55%, #1e648f 100%);
  border-color: transparent;
  color: #fff;
}

.service-card--accent p,
.service-card--accent .service-card__price span {
  color: rgba(255, 255, 255, 0.78);
}

.service-card--accent h3,
.service-card--accent .service-card__price,
.service-card--accent strong {
  color: #fff;
}

.service-card--accent .service-card__tag {
  color: var(--cyan-soft);
  background: rgba(255, 255, 255, 0.1);
}

.service-card--accent .btn-solid {
  background: var(--cyan);
  color: #0b1b2a;
}

.service-card--accent .btn-solid:hover {
  filter: brightness(1.06);
}

.service-card__tag {
  margin: 0;
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(42, 58, 122, 0.08);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-deep);
}

.service-card__price {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}

.service-card__price span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.service-card > p:not(.service-card__tag):not(.service-card__price) {
  margin: 0 0 0.35rem;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
  flex: 1;
}

.service-card .btn {
  margin-top: auto;
}

/* —— Contact —— */
.contact {
  padding-bottom: 4rem;
}

.contact-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.85rem 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.contact-inner h2 {
  margin: 0 0 0.35rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-deep);
}

.contact-inner p {
  margin: 0;
  color: var(--muted);
  max-width: 28rem;
  font-weight: 500;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-links a:hover {
  color: var(--navy);
}

.ci {
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--cyan);
  opacity: 0.95;
}

.ci svg {
  width: 100%;
  height: 100%;
}

/* —— Footer —— */
footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 1.15rem 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--navy);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-18px, 22px, 0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .hero-inner,
  .search,
  .tld-row {
    animation: none !important;
  }
}

@media (max-width: 1040px) {
  .plans,
  .service-grid,
  .crea-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* —— Nav active —— */
.nav-links a.is-active {
  color: var(--navy);
}

/* —— Home teasers —— */
.teasers {
  padding: 3rem 0 4rem;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.teaser {
  display: block;
  padding: 1.5rem 1.4rem 1.35rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.teaser:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.teaser__tag {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan);
}

.teaser h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--navy-deep);
}

.teaser p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.teaser__link {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--navy);
}

.hero-more {
  margin: 1.25rem 0 0;
  text-align: center;
}

.hero-more a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— Inner pages —— */
.page-hero {
  position: relative;
  padding: 3.25rem 0 2.75rem;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 45%, #2f6f9a 78%, var(--cyan) 100%);
  color: #fff;
  overflow: hidden;
}

.page-hero--crea {
  padding-bottom: 3rem;
}

.page-hero .crea-bg {
  opacity: 0.55;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.page-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan-soft);
}

.page-kicker--light {
  color: rgba(255, 255, 255, 0.85);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  font-weight: 800;
}

.page-hero p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.page-block {
  padding: 3.25rem 0;
}

.page-block--alt {
  background: #fff;
  border-block: 1px solid var(--line);
}

.page-crea {
  padding-top: 3rem;
}

.search--page {
  max-width: 640px;
  margin: 0 auto 1rem;
}

.tld-row--page {
  justify-content: center;
  margin-top: 1.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.info-card {
  padding: 1.35rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.page-block--alt .info-card {
  background: var(--bg);
}

.info-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--navy-deep);
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.info-card a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
  justify-content: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.contact-card {
  padding: 1.5rem 1.35rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0 0 0.4rem;
  color: var(--navy-deep);
}

.contact-card p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.contact-card .btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 720px) {
  .teaser-grid,
  .info-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem 1rem 1.25rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .topbar.open .nav {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-cta {
    flex-direction: column;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .hero {
    padding: 3.25rem 0 2.85rem;
  }

  .search {
    flex-direction: column;
    padding: 0.55rem;
  }

  .search input,
  .search button {
    width: 100%;
  }

  .plans,
  .service-grid,
  .crea-grid {
    grid-template-columns: 1fr;
  }

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

  .crea-cta__actions {
    width: 100%;
  }

  .crea-cta__actions .btn {
    flex: 1;
    min-width: 140px;
  }

  .contact-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
