:root {

  /* Primary Brand Colors */
  --color-primary: #FF7E29;
  --color-primary-light: #FF8C33;
  --color-primary-dark: #ff5b14;

  /* Secondary Colors */
  --color-secondary: #111111;
  --color-secondary-light: #333333;
  --color-secondary-dark: #000000;

  /* Background Colors */
  --color-bg: #FFFFFF;
  --color-bg-alt: #F3F3F3;
  --color-bg-dark: #0F0F0F;

  /* Text Colors */
  --color-text: #222222;
  --color-text-light: #666666;
  --color-text-white: #FFFFFF;

  /* Border & UI */
  --color-border: #E5E5E5;
  --color-input-bg: #FAFAFA;

  /* Shadow */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 6px 30px rgba(0, 0, 0, 0.08);

  /* Radius */
  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 50px;

  /* Width */
  --width-container: 1600px;

  /* Gradients */
  --gradient-primary: linear-gradient(270deg, var(--color-primary-dark) 0%, #ff9e3d 100%);

  /* Font Family */
  --heading-font: 'Manrope', sans-serif;
  --body-font: 'Manrope', sans-serif;
  --button-font: "IBM Plex Mono", sans-serif;

}

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

html,
body {
  overflow-x: hidden;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--body-font);
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  margin: 0;
}

.cta {
  background-image: var(--gradient-primary);
  color: var(--color-text);
  padding: 8px 25px;
  border-radius: var(--radius-large);
  display: flex;
  flex-direction: column;
  font-family: var(--button-font);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta .cta-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  line-height: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.cta span.cta-text {
  transition: all 0.3s ease;
}

.cta:hover span.cta-text {
  transform: translateY(-100%);
}



.arrow-animated {
  width: 20px;
  height: 20px;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  cursor: pointer;
}

.arrow-animated svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  fill: var(--color-primary);
}


.arrow-animated svg:nth-child(2) {
  position: absolute;
  top: 100%;
  right: 100%;
}


.arrow-animated:hover svg {
  transform: translate(100%, -100%);
}

.arrow-bg {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: 1px solid var(--color-primary-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.arrow-bg .arrow-animated {
  width: 15px;
  height: 15px;
  transition: all 0.3s ease;
}

.arrow-bg:hover svg {
  transform: translate(100%, -100%);
}

.arrow-bg:hover {
  transform: scale(1.1);
  background: var(--color-primary-dark);
}