:root {
  --bg: #f3f3f3;
  --surface: #111113;
  --border: #1A1A1D;
  --text: #0B0B0C;
  --muted: #303034;
  --dim: #52525B;
  --accent: #4F46E5;
  --accent-lo: rgba(79, 70, 229, 0.12);
  --accent-glow: rgba(79, 70, 229, 0.2);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h: 60px;
  --max-w: 1100px;
  --sec-pad: 120px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: #fff;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}























.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  letter-spacing: -0.01em;
  line-height: 1;
}

.btn-sm {
  padding: 7px 14px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 13px 26px;
  font-size: 0.9rem;
}

.btn-xl {
  padding: 15px 32px;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
  border-radius: 10px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: rgba(79, 70, 229, 0.5);
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(79, 70, 229, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-primary:active {
  transform: translateY(0);
  filter: brightness(1);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}

.btn-outline:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}



















.hero {
  position: relative;
  background: #fff;
  align-items: start;
  text-align: center;
  min-height: max(100vh, 850px);
  min-height: max(100svh, 850px);
  display: flex;

  padding-block:
    clamp(120px, 16vh, 200px) clamp(60px, 10vh, 120px);
}


/* laptop */
@media (max-width: 1640px) {
  .hero {
    min-height: max(100vh, 700px);
    min-height: max(100svh, 700px);
  }
}


.hero-bg,
.particle-canvas {
  position: absolute;
  z-index: 1;
}

.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  bottom: -540px;
  left: 0;
  width: 100%;
  height: 1030px;

  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.3) 35%,
      rgba(0, 0, 0, 1) 60%,
      rgba(0, 0, 0, 0.9) 100%);

  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;

  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-body {
  position: relative;
  z-index: 3;
}

.hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at 50% 0%, rgba(79, 70, 229, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-body {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 24px;
  opacity: 0;
  animation: heroIn 0.7s var(--ease) 0.05s forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.hero-badge-separator {
  margin: 0px 8px;
}

.hero-badge::after {
  content: "";
  position: absolute;
  inset: -40%;

  background: radial-gradient(60% 40% at 30% 50%,
      rgba(79, 70, 229, 0.18),
      rgba(79, 70, 229, 0.08) 40%,
      transparent 70%);

  opacity: 0;
  transform: translateX(-60%) rotate(-8deg);
  transition:
    opacity 0.25s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);

  pointer-events: none;
}

.hero-badge:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);

  transform: translateY(-1px) scale(1.01);

  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.04);
}



.hero-badge:hover::after {
  opacity: 1;
  transform: translateX(120%);
}


.hero-badge:active {
  transform: translateY(0);
  opacity: 0.9;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
}

.hero-badge-star {
  display: inline-flex;
  transform-origin: center;
  will-change: transform;
}

.hero-badge:hover .hero-badge-star {
  animation: starPop 1280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes starPop {
  0% {
    transform: translateY(0) rotate(0deg) scale(1, 1);
  }

  10% {
    transform: translateY(2px) scale(0.94, 1.06);
  }

  38% {
    transform: translateY(-10px) rotate(-12deg) scale(1.12, 0.9);
  }

  62% {
    transform: translateY(3px) rotate(6deg) scale(0.98, 1.04);
  }

  100% {
    transform: translateY(0) rotate(0deg) scale(1, 1);
  }
}








.hero-h1 {
  font-size: clamp(40px, 4vw + 8px, 82px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.14;
  color: var(--text);
  margin-bottom: 26px;
  opacity: 0;
  animation: heroIn 0.7s var(--ease) 0.18s forwards;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 22px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: heroIn 0.7s var(--ease) 0.3s forwards;
}

.sub-emphasis {
  font-style: italic;
  font-weight: 500;
  color: var(--text);
}

.hero-price {
  font-size: 14px;
  color: var(--dim);
  margin-bottom: 36px;
  opacity: 0;
  animation: heroIn 0.7s var(--ease) 0.4s forwards;
}

.hero-price strong {
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 640px) {
  .hero-h1 {
    font-size: 46px;
  }

  .hero-sub br {
    display: none;
  }

  .badge-extra {
    display: none;
  }
}


.hero-ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroIn 0.7s var(--ease) 0.5s forwards;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--dim);
  opacity: 0;
  animation: heroIn 0.7s var(--ease) 0.62s forwards;
}


.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wa-avatar {
  width: 62px;

  object-fit: cover;
  flex-shrink: 0;
}

.btn-whatsapp:hover .wa-avatar {
  transform: scale(1.05);
}

.wa-avatar {
  transition: transform 0.2s var(--ease);
}



.hero-em {
  font-style: normal;
  position: relative;
}

.underline-wrap {
  position: relative;
  display: inline-block;
}

.underline-wrap::after {
  content: "";
  position: absolute;

  left: 50%;
  transform: translateX(-50%);
  bottom: -0.06em;

  width: 110%;
  max-width: 240px;

  height: clamp(4px, 0.5vw, 6px);

  border-radius: 999px;

  background: linear-gradient(to right,
      transparent 0%,
      rgba(79, 70, 229, 0.6) 20%,
      rgba(79, 70, 229, 0.9) 50%,
      rgba(79, 70, 229, 0.6) 80%,
      transparent 100%);

  filter: blur(0.6px);
  opacity: 0.9;
}




@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}







.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}


.hero-bg-img {
  position: absolute;
  inset: 0;

  opacity: 0.98;
  filter: saturate(0);
  mix-blend-mode: multiply;

  transform: scale(1.39);

  pointer-events: none;
}


.hero-bg-img {
  background: center / cover no-repeat;
  background-image: image-set(
    url('/wp-content/themes/storma-theme/assets/img/hero-backround-text-fountain.avif') type('image/avif'),
    url('/wp-content/themes/storma-theme/assets/img/hero-backround-text-fountain.webp') type('image/webp'),
    url('/wp-content/themes/storma-theme/assets/img/hero-backround-text-fountain.png') type('image/png')
  );
}
































































































































































.how-section {
  position: relative;
  padding: 120px 0 94px;

  z-index: 2;
  min-height: 500px;
}


.how-section {
  margin-top: -330px;
}


/* laptop */
@media (max-width: 1640px) {
  .how-section {
    margin-top: -240px;
  }
}


/* laptop */
@media (max-width: 1340px) {
  .how-section {
    margin-top: -240px;
  }
}


/* small laptop / tablet */
@media (max-width: 1024px) {
  .how-section {
    margin-top: -140px;
  }
}

/* mobile */
@media (max-width: 640px) {
  .how-section {
    margin-top: -100px;
  }
}

.how-container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 32px);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

@media (max-width: 640px) {
  .how-container {
    padding-inline: 0;
  }

}



.how-header {
  text-align: center;
  max-width: 700px;
}

.how-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin: 0;
}

.how-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dim);
  margin-top: 12px;
  margin-bottom: 0;
}


.how-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.how-card {
  position: relative;
  overflow: hidden;

  background: #1A1A1D;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 16px;

  display: flex;
  flex-direction: column;
  gap: 24px;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    opacity 0.4s ease,
    box-shadow 0.25s ease;
}

.how-card::before {
  content: "";
  position: absolute;

  inset: 0;

  background: radial-gradient(500px circle at var(--x, 50%) var(--y, 50%),
      rgba(79, 70, 229, 0.18) 0%,
      rgba(79, 70, 229, 0.10) 25%,
      rgba(79, 70, 229, 0.05) 45%,
      transparent 70%);

  opacity: 0;
  transition: opacity 0.35s var(--ease);

  pointer-events: none;
  z-index: 0;
}

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

.how-card:hover::before {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}


.how-visual {
  height: 400px;
  width: 100%;
  border-radius: 8px;
  background: #0F0F10;
  border: 1px solid rgba(255, 255, 255, 0.04);

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  transition: transform 0.25s ease;
}



.how-img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: inherit;

  transition: transform 0.35s ease;
}

.how-card:hover .how-img {
  transform: scale(1.04);
}

.how-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: default;
}

.how-text h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.how-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #A1A1AA;
  max-width: 32ch;
}








.how-note {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.how-note-inner {
  display: flex;
  align-items: center;
  gap: 16px;

  max-width: 620px;
}


.how-note-speed {
  position: relative;
  width: 34px;
  height: 18px;
  flex-shrink: 0;
}

.how-note-speed span {
  position: absolute;
  height: 4px;
  width: 100%;

  background: var(--accent);
  border-radius: 999px;
}

.how-note-speed span:nth-child(1) {
  top: 0;
  left: -4px;
  opacity: 0.7;
}

.how-note-speed span:nth-child(2) {
  top: 8px;
  left: 4px;
}

.how-note-speed span:nth-child(3) {
  top: 16px;
  left: -5px;
  opacity: 0.85;
}


.how-note-text {
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.5;

  color: var(--bg);
  margin: 0;
}



























.how-card.reveal {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

.how-card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 980px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-card {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .how-section {
    padding: 80px 16px;
  }

  .how-container {
    gap: 48px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .how-card {
    min-height: unset;
    padding: 12px;
    gap: 20px;
  }

  .how-visual {
    height: 290px !important;
  }

  .how-text h3 {
    font-size: 20px;
  }

  .how-text p {
    font-size: 14px;
    max-width: none;
  }

  .mock-slides {
    width: 210px;
    height: 140px;
  }
}





/* laptop */
@media (max-width: 1640px) {
  .how-visual {
    aspect-ratio: unset;
    height: 340px;
  }
}
























































.portfolio-sec {
  padding: 148px 0;
  background: #fff;
}

.portfolio-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.portfolio-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}

.ph-left {
  max-width: 620px;
}

.ph-left .stag {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  display: block;
  margin-bottom: 14px;
}

.ph-left h2 {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.1;
  color: var(--text);
  margin: 0;
}

.ph-left .sdesc {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

.ph-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.slider-btn:hover {
  border-color: #ccc;
  transform: translateY(-2px);
}

.portfolio-slider-wrap {
  width: 100%;
  overflow: hidden;
  margin-top: 24px;
}

.slide {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: grab;
}

.ph-right {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 44px;
  height: 44px;

  border-radius: 999px;

  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(6px);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.slider-btn svg {
  width: 18px;
  height: 18px;

  stroke: #111;
  stroke-width: 2.2;
  fill: none;

  transition: transform 0.2s var(--ease);
}

.slider-btn:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.14);

  transform: translateY(-1px);

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

#slideLeft:hover svg {
  transform: translateX(-2px);
}

#slideRight:hover svg {
  transform: translateX(2px);
}

.slider-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}


@media (max-width: 900px) {
  .portfolio-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .ph-right {
    width: 100%;
    justify-content: flex-start;
  }
}







































































.stats-sec {
  padding: 160px 0 290px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}


.stats-bg {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;

  border-radius: 28px;
  overflow: hidden;
  position: relative;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.55) 60%,
      rgba(0, 0, 0, 0.75) 100%
    ),
    image-set(
      url("/wp-content/themes/storma-theme/assets/img/violet-blue-dark-gradient-modern.avif") type("image/avif"),
      url("/wp-content/themes/storma-theme/assets/img/violet-blue-dark-gradient-modern.webp") type("image/webp"),
      url("/wp-content/themes/storma-theme/assets/img/violet-blue-dark-gradient-modern.jpg") type("image/jpeg")
    );

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  padding: 110px 0;
  z-index: 1;
}




.stats-bg::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(circle at 50% 0%,
      rgba(255, 255, 255, 0.06),
      transparent 60%);

  pointer-events: none;
}

.stats-brand {
  position: absolute;

  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(45%) rotateX(12deg);
  transform-origin: bottom center;

  font-family: var(--font);
  font-weight: 700;
  text-transform: uppercase;

  font-size: clamp(270px, 25vw, 490px);
  letter-spacing: -0.06em;

  white-space: nowrap;

  color: #30303410;

  pointer-events: none;
  user-select: none;

  color: transparent;

  background: linear-gradient(to top,
      rgba(255, 255, 255, 0.62) 0%,
      rgba(255, 255, 255, 0.56) 40%,
      rgba(255, 255, 255, 0.58) 60%,
      rgba(255, 255, 255, 0.53) 100%);

  -webkit-background-clip: text;
  background-clip: text;


  opacity: 0;
  filter: blur(6px);

  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.stats-brand.is-visible {
  opacity: 1;
  filter: blur(0);
}

.stats-brand {
  scale: 0.98;
}

.stats-brand.is-visible {
  scale: 1;
}


.stats-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}


.stat {
  text-align: center;
  position: relative;

  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}

.stat.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.stat-value {
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.95;

  color: #fff;

  margin-bottom: 14px;
}


.stat-bottom {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;

  color: rgba(255, 255, 255, 0.85);

  max-width: 240px;
  margin: 0 auto;
}

.stat-top {
  display: none;
}


.stat::after {
  content: "";
  position: absolute;
  inset: -30px;

  background: radial-gradient(circle at 50% 40%,
      var(--accent-glow),
      transparent 70%);

  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.stat:hover::after {
  opacity: 0.6;
}


.stat-link {
  position: relative;
}

.stat-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 1px;

  background: rgba(255, 255, 255, 0.5);

  transition: all 0.35s var(--ease);
  transform: translateX(-50%);
}

.stat-link:hover::after {
  width: 40%;
}


@media (max-width: 1000px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 520px) {
  .stats-inner {
    grid-template-columns: 1fr;
  }

  .stat-value {
    font-size: 60px;
  }
}




































.pricing-sec {
  padding: 64px 20px 140px;
  background: var(--bg);
}

.pricing-sec .container {
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}


.pricing-extra {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.pricing-link {
  font-size: 15px;
  color: var(--muted);
  letter-spacing: -0.01em;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.pricing-link span {
  color: var(--accent);
  position: relative;
}

.pricing-link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;

  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.pricing-link:hover {
  color: var(--text);
}

.pricing-link:hover span::after {
  transform: scaleX(1);
}












.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 500px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);

  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.price-card:hover {
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.price-card.popular {
  border-color: rgba(79, 70, 229, 0.34);
}

.pc-badge {
  position: absolute;
  z-index: 4;
  top: -12px;
  right: 20px;

  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;

  color: #fff;
  background: var(--accent);

  padding: 6px 12px;
  border-radius: 999px;

  box-shadow: 0 10px 22px rgba(79, 70, 229, 0.32);

  transition: transform 0.25s var(--spring);
}

.price-card:hover .pc-badge {
  transform: translateY(-2px);
}

.pc-top {
  background: var(--surface);

  padding: 36px 36px 30px;

  display: flex;
  flex-direction: column;

  border-radius: 20px 20px 0 0;

  position: relative;
  overflow: hidden;
}

.pc-top::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(600px circle at 50% -20%,
      rgba(255, 255, 255, 0.08),
      transparent 60%);

  pointer-events: none;
}

.pc-label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.65);

  margin-bottom: 16px;
}

.pc-price {
  font-size: clamp(56px, 5vw, 66px);
  font-weight: 600;

  color: #fff;
  line-height: 0.95;

  display: flex;
  align-items: baseline;
  gap: 8px;

  transition: transform 0.25s var(--ease);
}

.price-card:hover .pc-price {
  transform: translateY(-1px);
}

.pc-price span {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.pc-desc {
  margin-top: 16px;

  font-size: 14px;
  line-height: 1.55;

  color: rgba(255, 255, 255, 0.55);
}

.pc-body {
  padding: 34px 36px 40px;

  display: flex;
  flex-direction: column;
  flex: 1;
}

.pc-feats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.pc-feats li {
  font-size: 15.5px;
  line-height: 1.65;
  letter-spacing: -0.01em;

  color: var(--muted);

  position: relative;
  padding-left: 42px;

  transition: color 0.2s ease;
}

.price-card:hover .pc-feats li {
  color: #1a1a1d;
}

.pc-feats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;

  width: 24px;
  height: 24px;

  border-radius: 999px;
  background: var(--accent);
  opacity: 0.12;

  transition: transform 0.25s var(--ease), opacity 0.25s;
}

.pc-feats li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 11px;

  width: 10px;
  height: 6px;

  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);

  transform: rotate(-45deg);
}

.price-card:hover .pc-feats li::before {
  transform: scale(1.08);
  opacity: 0.18;
}

.pc-actions {
  margin-top: 56px;

  display: flex;
  flex-direction: column;
}

.pc-actions .btn-block {
  border-radius: 14px;

  padding: 18px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;

  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.pc-actions .btn-block:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.pc-express {
  margin-top: 16px;

  text-align: center;

  font-size: 13.5px;
  line-height: 1.5;

  color: var(--dim);

  transition: color 0.2s ease;
}

.pc-express a {
  color: var(--muted);

  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0, 0, 0, 0.2);

  transition: all 0.2s ease;
}

.pc-actions .btn-block {
  border-radius: 14px;

  padding: 18px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}


.pc-actions .btn-primary {
  background: var(--accent);
  color: #fff;
}

.pc-actions .btn-primary:hover {
  background: #4338ca;
  box-shadow: 0 6px 14px rgba(79, 70, 229, 0.25);
}


.pc-actions .btn-outline {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text);
}

.pc-actions .btn-outline:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.2);
}


.pc-actions .btn-block:active {
  transform: scale(0.98);
}

.pc-actions .btn-block:hover {
  transform: none;
}

.pc-express a:hover {
  color: var(--text);
  text-decoration-color: rgba(0, 0, 0, 0.5);
}

.pc-express strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}









































.testimonials {
  width: 100%;
  padding: 80px 0;
  background: var(--bg);
  overflow: hidden;

  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}

.testimonials-inner {
  width: 100%;
  padding: 0 32px;
}


.testimonials-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 80px;
}

.testimonials-kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 14px;
}

.testimonials-title {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.1;
  margin: 0;
  color: var(--text);
}

.testimonials-sub {
  margin-top: 18px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
}


.testimonials-marquee {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonials-row {
  overflow: hidden;
  position: relative;

  mask-image: linear-gradient(to right,
      transparent 0%,
      black 6%,
      black 94%,
      transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-left linear infinite;
}

.testimonials-row.reverse .testimonials-track {
  animation: scroll-right linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}


.testimonial-card {
  position: relative;
  overflow: hidden;

  width: 520px;
  min-height: 380px;

  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);

  border-radius: 26px;
  padding: 48px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;

  transition:
    transform 0.35s var(--spring),
    border-color 0.25s ease;
}

.testimonial-card:hover {
  background: #fcfcfc;
  border-color: rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 12px;
  right: 28px;

  font-size: 190px;
  font-weight: 600;
  line-height: 1;

  color: rgba(0, 0, 0, 0.04);

  pointer-events: none;
}

.testimonial-stars img {
  width: 140px;
}

.testimonial-text {
  position: relative;
  z-index: 1;

  margin-top: 20px;

  font-size: 18.5px;
  line-height: 1.75;
  letter-spacing: -0.015em;

  color: #0f0f10;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.testimonial-author-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;

  background: linear-gradient(135deg,
      rgba(79, 70, 229, 0.18),
      rgba(79, 70, 229, 0.08));

  border: 1px solid rgba(79, 70, 229, 0.2);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;

  color: #4F46E5;
}

.testimonial-name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0b0b0c;
}

.testimonial-meta {
  font-size: 12px;
  color: #a1a1aa;
  margin-top: 4px;
}

.testimonial-link {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.testimonial-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;

  width: 100%;
  height: 1px;

  background: rgba(0, 0, 0, 0.2);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.25s ease;
}

.testimonial-link:hover {
  color: #111;
}

.testimonial-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .testimonial-card {
    width: min(90vw, 360px);
    min-height: 280px;
    padding: 28px;
  }

  .testimonial-text {
    font-size: 16.5px;
  }

  .testimonial-name {
    font-size: 17px;
  }
}




@media (max-width: 768px) {

  .testimonials {
    padding: 100px 0;
  }

  .testimonials-inner {
    padding: 0 16px;
  }

  .testimonial-card {
    width: min(90vw, 360px);
    min-height: 280px;
  }

  .testimonials-title {
    font-size: 42px;
  }

}




.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);

  transition:
    transform 0.35s var(--spring),
    border-color 0.25s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.testimonial-card:hover {
  background: var(--surface);
  border-color: rgba(255, 255, 255, 0.08);
}

.testimonial-card:hover .testimonial-text {
  color: rgba(255, 255, 255, 0.88);
}

.testimonial-card:hover .testimonial-name {
  color: #ffffff;
}

.testimonial-card:hover .testimonial-meta {
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-card:hover .testimonial-avatar {
  background: rgba(79, 70, 229, 0.12);
  border-color: rgba(79, 70, 229, 0.3);
  color: #ffffff;
}

.testimonial-card:hover .testimonial-link {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-card:hover .testimonial-link::after {
  background: rgba(255, 255, 255, 0.4);
}


.testimonial-card:hover::before {
  color: rgba(249, 249, 249, 0.07);
}


























.topics-sec .s-head {
  margin-bottom: 40px;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.t-tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--dim);
  background: var(--surface);
  transition: border-color 0.2s, color 0.2s;
}

.t-tag:hover {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--muted);
}
















































.final-cta-sec {
  padding: var(--sec-pad) 0;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-sec::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at 50% 100%, rgba(79, 70, 229, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.fcta {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.fcta-h {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
  margin: 14px 0 16px;
}

.fcta-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 36px;
}

.fcta-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}


































































































.faq-sec {
  position: relative;
  padding: 120px 0;
  background: #fafafa;
  overflow: hidden;
}

.faq-sec::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(500px at 80% 30%, rgba(79, 70, 229, 0.06), transparent 60%);

  pointer-events: none;
  z-index: 0;
}


.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;

  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}


.faq-inner {
  position: relative;
  z-index: 1;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-head {
  margin-bottom: 56px;
}

.faq-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-brand img {
  width: 100%;
  max-width: 420px;
  height: auto;

}

.faq-head h2 {
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
}

.faq-head p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease);
}

.faq-item:hover {
  border-color: rgba(0, 0, 0, 0.13);
}

.faq-item.active {
  border-color: rgba(79, 70, 229, 0.22);
  background: rgba(79, 70, 229, 0.02);
}

.faq-q {
  width: 100%;
  padding: 24px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 17.5px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  text-align: left;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s var(--ease),
    transform 0.1s var(--ease);
}

.faq-q:active {
  transform: scale(0.998);
}

.faq-item.active .faq-q {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dim);
  transition:
    transform 0.26s var(--ease),
    color 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.26s var(--ease),
    opacity 0.22s ease;
}

.faq-item.active .faq-a {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-a-inner {
  overflow: hidden;
}

.faq-a p {
  padding: 8px 26px 26px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}





























.cta-section {
  background: #ffffff;
  padding: 120px 24px;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
}

.cta-island {
  background: var(--surface);
  color: #ffffff;
  position: relative;
  overflow: hidden;

  border-radius: 28px;
  padding: 80px 48px 40px;
  max-width: 1920px;
  margin:auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 420px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}


.cta-island::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 64px;
  width: 64vw;
  height: 520px;

  background: url("/wp-content/themes/storma-theme/assets/img/footer-geomertic-modern-shapes.svg") no-repeat center / contain;

  pointer-events: none;
  z-index: 0;
}

.cta-island>* {
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 720px;
}

.cta-eyebrow {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.cta-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 20px;

  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;

  transition: all 0.25s var(--ease);
}

.btn-primary {
  background: #ffffff;
  color: #000;
}



.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}




.pricing-legal {
  margin-top: 64px;
  max-width: 640px;

  font-size: 13px;
  line-height: 1.6;
  color: var(--dim);

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-legal a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-legal a:hover {
  opacity: 0.7;
}







.cta-section {
  background: #f3f3f3;

  height: 94vh;
  min-height: 640px;

  padding: 16px;

  display: flex;
}

.cta-island {
  width: 100%;
  height: 100%;

  background: var(--surface);
  color: #ffffff;

  border-radius: 24px;

  padding: 72px 64px 32px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.cta-main {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.cta-content {
  max-width: 560px;
}

.cta-eyebrow {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.cta-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}

.btn-primary {
  background: #ffffff;
  color: #000;
}


.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cta-links {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.cta-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-col-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.cta-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.cta-col a:hover {
  color: #ffffff;
}

.cta-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.cta-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.cta-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-logo img {
  height: 20px;
  width: auto;
  display: block;

  opacity: 0.9;
}


@media (max-width: 768px) {
  .cta-footer-inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}



.cta-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.cta-network {
  display: flex;
  gap: 12px;

  font-size: 12px;
  color: var(--dim);
}

.cta-network a {
  color: var(--dim);
  text-decoration: none;
}

.cta-network a:hover {
  color: var(--bg);
}



































.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: #15803d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(21, 128, 61, 0.3);
  transition: transform 0.25s var(--spring), box-shadow 0.25s;
  opacity: 0;
  animation: fadeIn 0.5s var(--ease) 2s forwards;
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(21, 128, 61, 0.4);
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  :root {
    --sec-pad: 80px;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .proc-step {
    padding: 28px 0;
    border-top: 1px solid var(--border);
  }

  .proc-step:first-child {
    border-top: none;
    padding-top: 0;
  }

  .proc-arrow {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-inline: auto;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .stats-row {
    gap: 32px;
  }

  .stat-div {
    display: none;
  }


}

@media (max-width: 600px) {
  :root {
    --sec-pad: 64px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
  }

  .fcta-btns {
    flex-direction: column;
    align-items: center;
  }

  .fcta-btns .btn {
    width: 100%;
    max-width: 300px;
  }

  .nav-contact {
    display: none;
  }

  .form-wrap {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .float-wa {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}



































