/**
 * Flyticon360 — Growth E-commerce
 * Mobile-first landing page
 */

/* ==========================================================
   Design Tokens
   ========================================================== */

:root {
  --flyticon-bg: #020817;
  --flyticon-bg-soft: #07111f;
  --flyticon-surface: #0b1626;
  --flyticon-surface-strong: #0f1d30;

  --flyticon-primary: #00d4ff;
  --flyticon-primary-strong: #1aa7ff;
  --flyticon-primary-soft: rgba(0, 212, 255, 0.12);

  --flyticon-text: #f8fafc;
  --flyticon-text-muted: #94a3b8;
  --flyticon-border: rgba(148, 163, 184, 0.16);

  --flyticon-success: #22c55e;

  --flyticon-radius-sm: 10px;
  --flyticon-radius-md: 16px;
  --flyticon-radius-lg: 24px;

  --flyticon-container: 1180px;

  --flyticon-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);

  --flyticon-transition: 180ms ease;
}

/* ==========================================================
   Base
   ========================================================== */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--flyticon-bg);
  color: var(--flyticon-text);

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

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

/* ==========================================================
   Landing Page
   ========================================================== */

.flyticon-growth-page {
  overflow-x: hidden;
}

.flyticon-growth-home {
  width: 100%;
  overflow: hidden;

  background: var(--flyticon-bg);
}

.growth-container {
  width: min(100% - 32px, var(--flyticon-container));
  margin-inline: auto;
}

/* ==========================================================
   Flyticon360 — Growth Hero
   Mobile First
   ========================================================== */

.growth-hero {
  position: relative;

  min-height: 100svh;
  padding: 54px 0 46px;

  overflow: hidden;
  isolation: isolate;
}

/* ----------------------------------------------------------
   Background Glow
   ---------------------------------------------------------- */

.growth-hero::before {
  content: "";

  position: absolute;
  z-index: -2;

  top: -180px;
  left: 50%;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background: rgba(0, 212, 255, 0.08);

  filter: blur(80px);

  transform: translateX(-50%);

  pointer-events: none;
}

/* ----------------------------------------------------------
   Background Grid
   ---------------------------------------------------------- */

.growth-hero::after {
  content: "";

  position: absolute;
  z-index: -1;

  inset: 0;

  opacity: 0.22;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);

  background-size: 32px 32px;

  mask-image: linear-gradient(to bottom, black, transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 78%);

  pointer-events: none;
}

.growth-hero .growth-container {
  display: flex;
  flex-direction: column;

  gap: 38px;
}

/* ==========================================================
   Hero Content
   ========================================================== */

.growth-hero__content {
  position: relative;
  z-index: 2;

  text-align: center;
}

/* ----------------------------------------------------------
   Eyebrow
   ---------------------------------------------------------- */

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

  min-height: 32px;

  margin-bottom: 20px;
  padding: 7px 13px;

  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: 999px;

  background: rgba(0, 212, 255, 0.07);

  color: var(--flyticon-primary);

  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;

  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   Hero Title
   ---------------------------------------------------------- */

.growth-hero__title {
  max-width: 600px;

  margin: 0 auto;

  color: var(--flyticon-text);

  font-size: clamp(2.25rem, 11vw, 3.35rem);
  font-weight: 800;

  line-height: 1.02;
  letter-spacing: -0.045em;

  text-wrap: balance;
}

.growth-hero__title span {
  display: block;

  background: linear-gradient(100deg, #ffffff 0%, #77e8ff 52%, #00d4ff 100%);

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

  color: transparent;

  -webkit-text-fill-color: transparent;
}

/* ----------------------------------------------------------
   Hero Description
   ---------------------------------------------------------- */

.growth-hero__description {
  max-width: 540px;

  margin: 22px auto 0;

  color: var(--flyticon-text-muted);

  font-size: 1rem;
  font-weight: 400;

  line-height: 1.65;

  text-wrap: pretty;
}

/* ==========================================================
   Hero Actions
   ========================================================== */

.growth-hero__actions {
  display: flex;
  flex-direction: column;

  gap: 12px;

  width: 100%;

  margin-top: 28px;
}

/* ----------------------------------------------------------
   Buttons
   ---------------------------------------------------------- */

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

  width: 100%;
  min-height: 54px;

  padding: 14px 20px;

  border: 1px solid transparent;
  border-radius: 12px;

  font-size: 0.94rem;
  font-weight: 700;

  line-height: 1.2;
  text-align: center;

  cursor: pointer;

  transition:
    transform var(--flyticon-transition),
    border-color var(--flyticon-transition),
    background var(--flyticon-transition),
    box-shadow var(--flyticon-transition);
}

.growth-button:active {
  transform: scale(0.985);
}

/* ----------------------------------------------------------
   Primary Button
   ---------------------------------------------------------- */

.growth-button--primary {
  background: linear-gradient(135deg, #00d4ff 0%, #139dff 100%);

  color: #00111c;

  box-shadow:
    0 14px 34px rgba(0, 174, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ----------------------------------------------------------
   Secondary Button
   ---------------------------------------------------------- */

.growth-button--secondary {
  border-color: var(--flyticon-border);

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

  color: var(--flyticon-text);
}

/* ----------------------------------------------------------
   Microcopy
   ---------------------------------------------------------- */

.growth-hero__microcopy {
  max-width: 480px;

  margin: 18px auto 0;

  color: #718096;

  font-size: 0.78rem;

  line-height: 1.55;
  text-align: center;
}

/* ==========================================================
   Hero Visual
   ========================================================== */

.growth-hero__visual {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 540px;

  margin-inline: auto;
}

/* ----------------------------------------------------------
   Placeholder
   ---------------------------------------------------------- */

.growth-hero__visual-placeholder {
  position: relative;

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

  gap: 10px;

  min-height: 118px;

  padding: 20px 14px;

  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: var(--flyticon-radius-lg);

  background: linear-gradient(
    145deg,
    rgba(15, 29, 48, 0.92),
    rgba(5, 16, 30, 0.88)
  );

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

/* ----------------------------------------------------------
   Glow do container
   ---------------------------------------------------------- */

.growth-hero__visual-placeholder::before {
  content: "";

  position: absolute;
  z-index: -1;

  inset: -1px;

  border-radius: inherit;

  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.16),
    transparent 40%,
    rgba(26, 167, 255, 0.08)
  );

  filter: blur(14px);
}

/* ----------------------------------------------------------
   Operation Cards
   ---------------------------------------------------------- */

.growth-hero__visual-placeholder span {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 1 1 110px;

  min-width: 105px;
  min-height: 62px;

  padding: 10px 12px;

  border: 1px solid var(--flyticon-border);
  border-radius: 12px;

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

  color: var(--flyticon-text);

  font-size: 0.73rem;
  font-weight: 700;

  line-height: 1.25;
  text-align: center;
}

/* ----------------------------------------------------------
   Plus Signs
   ---------------------------------------------------------- */

.growth-hero__visual-placeholder strong {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  width: 22px;

  color: var(--flyticon-primary);

  font-size: 1rem;
  font-weight: 600;

  line-height: 1;
}

/* ==========================================================
   Flyticon360 — Problema
   Mobile First
   ========================================================== */

.growth-problem {
  position: relative;

  padding: 72px 0;

  background: var(--flyticon-bg-soft);

  border-top: 1px solid rgba(148, 163, 184, 0.08);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);

  overflow: hidden;
}

/* ----------------------------------------------------------
   Atmospheric Glow
   ---------------------------------------------------------- */

.growth-problem::before {
  content: "";

  position: absolute;

  top: 40px;
  right: -140px;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  background: rgba(0, 212, 255, 0.045);

  filter: blur(70px);

  pointer-events: none;
}

/* ==========================================================
   Generic Section Heading
   ========================================================== */

.growth-section-heading {
  position: relative;
  z-index: 1;

  text-align: center;
}

.growth-section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 28px;

  margin-bottom: 16px;
  padding: 6px 11px;

  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 999px;

  background: rgba(0, 212, 255, 0.055);

  color: var(--flyticon-primary);

  font-size: 0.7rem;
  font-weight: 700;

  line-height: 1.2;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.growth-section-title {
  max-width: 620px;

  margin: 0 auto;

  color: var(--flyticon-text);

  font-size: clamp(2rem, 9vw, 2.8rem);
  font-weight: 800;

  line-height: 1.06;
  letter-spacing: -0.04em;

  text-wrap: balance;
}

.growth-section-title span {
  color: var(--flyticon-primary);
}

.growth-section-description {
  max-width: 560px;

  margin: 20px auto 0;

  color: var(--flyticon-text-muted);

  font-size: 0.98rem;
  font-weight: 400;

  line-height: 1.7;

  text-wrap: pretty;
}

/* ==========================================================
   Problema — Cards
   ========================================================== */

.growth-problem__list {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;

  gap: 14px;

  margin-top: 38px;
}

.growth-problem__item {
  position: relative;

  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);

  align-items: flex-start;

  gap: 14px;

  padding: 20px;

  border: 1px solid var(--flyticon-border);
  border-radius: var(--flyticon-radius-md);

  background: linear-gradient(
    145deg,
    rgba(15, 29, 48, 0.74),
    rgba(7, 17, 31, 0.8)
  );

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);

  overflow: hidden;
}

.growth-problem__item::after {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 3px;
  height: 100%;

  background: linear-gradient(
    to bottom,
    var(--flyticon-primary),
    rgba(0, 212, 255, 0.04)
  );

  opacity: 0.55;
}

.growth-problem__number {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;

  background: var(--flyticon-primary-soft);

  color: var(--flyticon-primary);

  font-size: 0.72rem;
  font-weight: 800;

  line-height: 1;

  letter-spacing: 0.04em;
}

.growth-problem__item > div {
  min-width: 0;
}

.growth-problem__item h3 {
  margin: 1px 0 8px;

  color: var(--flyticon-text);

  font-size: 1rem;
  font-weight: 700;

  line-height: 1.3;
}

.growth-problem__item p {
  margin: 0;

  color: var(--flyticon-text-muted);

  font-size: 0.88rem;
  font-weight: 400;

  line-height: 1.62;
}

/* ==========================================================
   Elementor Content
   ========================================================== */

.growth-elementor-content {
  width: 100%;
}

/* ==========================================================
   Mobile Foundation
   ========================================================== */

@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}

/* ==========================================================
   Small Mobile
   ========================================================== */

@media (max-width: 430px) {
  .growth-hero {
    padding-top: 52px;
  }

  .growth-hero__visual-placeholder {
    gap: 8px;
  }

  .growth-hero__visual-placeholder span {
    flex: 1 1 115px;

    min-width: 110px;
  }

  .growth-hero__visual-placeholder strong {
    width: 18px;
  }

  .growth-problem {
    padding: 66px 0;
  }

  .growth-problem__list {
    margin-top: 34px;
  }
}

/* ==========================================================
   Very Small Mobile Devices
   ========================================================== */

@media (max-width: 359px) {
  .growth-container {
    width: min(100% - 24px, var(--flyticon-container));
  }

  .growth-hero {
    padding-top: 42px;
  }

  .growth-hero__title {
    font-size: 2.05rem;
  }

  .growth-hero__description {
    font-size: 0.94rem;
  }

  .growth-button {
    padding-inline: 14px;

    font-size: 0.88rem;
  }

  .growth-hero__visual-placeholder {
    flex-direction: column;

    gap: 8px;

    padding: 18px;
  }

  .growth-hero__visual-placeholder span {
    flex: none;

    width: 100%;
    min-height: 54px;
  }

  .growth-hero__visual-placeholder strong {
    width: auto;
    height: 14px;

    line-height: 1;
  }

  .growth-problem {
    padding: 58px 0;
  }

  .growth-section-title {
    font-size: 1.9rem;
  }

  .growth-section-description {
    font-size: 0.92rem;
  }

  .growth-problem__item {
    grid-template-columns: 1fr;

    gap: 12px;

    padding: 18px;
  }

  .growth-problem__number {
    width: 40px;
    height: 40px;
  }
}
