/* Document
 * ========================================================================== */

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */

:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */

:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */

:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */

:where(nav li)::before {
  content: "\200B";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */

:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Add the correct text decoration in Safari.
 */

:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */

/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */

:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

:where([type="search" i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct styles in Safari.
 */

:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */

:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

:where([aria-busy="true" i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

:where([aria-disabled="true" i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

:where([aria-hidden="false" i][hidden]) {
  display: initial;
}

:where([aria-hidden="false" i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* Components */

/* CSS File for Animations */

@keyframes floating {
  0% {
    transform: translateY(0);
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  }

  50% {
    transform: translateY(-5px);
    text-shadow: 5px 5px 2px rgba(0, 0, 0, 0.08);
  }

  100% {
    transform: translateY(0);
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.05);
  }
}

@keyframes slide-up-slowly {
  0% {
    transform: translateY(25%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-scale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  10% {
    opacity: 1;
    transform: scale(1.1);
  }
  90% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

/* Buttons animations */

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Pulse in animation for toast notifications */

@keyframes pulse-in {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframe pulse-out {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.5;
  }
  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}

@keyframes slide-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-out {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

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

:root {
  scroll-behavior: smooth;

  /* Website colors */
  --primary-color: #2f2f2f;
  --primary-color-darker: color-mix(
    in srgb,
    var(--primary-color) 85%,
    black 15%
  );
  --primary-color-darkest: color-mix(
    in srgb,
    var(--primary-color) 70%,
    black 30%
  );
  --primary-color-lighter: color-mix(
    in srgb,
    var(--primary-color) 85%,
    white 15%
  );
  --primary-color-lightest: color-mix(
    in srgb,
    var(--primary-color) 70%,
    white 30%
  );

  --secondary-color: #ffffff;
  --secondary-color-darker: color-mix(
    in srgb,
    var(--secondary-color) 85%,
    black 15%
  );
  --secondary-color-darkest: color-mix(
    in srgb,
    var(--secondary-color) 70%,
    black 30%
  );
  --secondary-color-lighter: color-mix(
    in srgb,
    var(--secondary-color) 85%,
    white 15%
  );
  --secondary-color-lightest: color-mix(
    in srgb,
    var(--secondary-color) 70%,
    white 30%
  );

  --tertiary-color: #b4e3c1;
  --tertiary-color-darker: color-mix(
    in srgb,
    var(--tertiary-color) 85%,
    black 15%
  );
  --tertiary-color-darkest: color-mix(
    in srgb,
    var(--tertiary-color) 70%,
    black 30%
  );
  --tertiary-color-lighter: color-mix(
    in srgb,
    var(--tertiary-color) 85%,
    white 15%
  );
  --tertiary-color-lightest: color-mix(
    in srgb,
    var(--tertiary-color) 70%,
    white 30%
  );

  --accent-color: #f5632f;
  --accent-color-darker: color-mix(in srgb, var(--accent-color) 85%, black 15%);
  --accent-color-darkest: color-mix(
    in srgb,
    var(--accent-color) 70%,
    black 30%
  );
  --accent-color-lighter: color-mix(
    in srgb,
    var(--accent-color) 85%,
    white 15%
  );
  --accent-color-lightest: color-mix(
    in srgb,
    var(--accent-color) 70%,
    white 30%
  );

  --border-color: #141414;
  --input-bg-color: #ffffff;

  --gray-color: #e5e7eb;
  --gray-color-darker: #d1d5db;
  --gray-color-darkest: #374151;

  --gray-1: hsl(0, 0%, 80%);
  --gray-2: hsl(0, 0%, 60%);
  --gray-3: hsl(0, 0%, 40%);
  --gray-4: hsl(0, 0%, 20%);

  --background-color: #ffffff;
  --dashboard-bg: #fdf9f3;
  --dashboard-highlight: #f7f3ee;
  --dashboard-bg-muted: #91887b;
  --dashboard-bg-dark: hsl(from var(--dashboard-bg) h s calc(l - 5));

  --accent-color-bg: #f5632f20;
  --success-color: #10b981;
  --success-color-bg: #ccffcc;
  --warning-color: #ffcc00;
  --warning-color-bg: #ffffcc;
  --confirmed-color: #f5632f;
  --confirmed-color-bg: #f5632f20;
  --info-color: #0000ff;
  --info-color-bg: #ccccff;
  --danger-color: #ef4444;
  --danger-color-bg: #ffcccc;
  --danger-color-dark: #d11d1d;

  --muted-color: #c0c0c0;
  --muted-bg: #f5f5f5;

  /* Media queries */
  --mobile: 640px;
  --tablet: 768px;
  --laptop: 1024px;
  --desktop: 1280px;

  /* Spacing */
  --spacing-xxs: 0.125rem;
  --spacing-xs: 0.25rem;
  --spacing-small: 0.5rem;
  --spacing-medium: 1rem;
  --spacing-large: 1.5rem;
  --spacing-xlarge: 3rem;

  /* Roundness */
  --rounded-small: 0.25rem;
  --rounded-medium: 0.5rem;
  --rounded-large: 1rem;
  --rounded-xlarge: 1.5rem;
  --rounded-full: 50%;

  /* Shadows */
  --shadow-light: 0 0 10px rgba(0, 0, 0, 0.1);
  --button-shadow: 0 0.2rem 0.1rem rgba(0, 0, 0, 0.15);

  /* Form fields */
  --border-input: 1px solid var(--primary-color);
  --border-input-focus: 2px solid var(--accent-color);
  --border-input-error: 2px solid var(--danger-color);

  /* Typography */
  --font-regular: "DM Sans Medium", sans-serif;
  --font-bold: "DM Sans Bold", sans-serif;
  --font-semibold: "DM Sans SemiBold", sans-serif;
  --font-medium: "DM Sans Medium", sans-serif;
  --font-light: "DM Sans Light", sans-serif;

  --heading: normal bold 2.5rem/3rem var(--font-bold);
  --sub-heading: normal bold 1.15rem/1.35rem var(--font-bold);
  --h1: normal bold 2.5rem/3rem var(--font-bold);
  --h2: normal bold 2rem/2.5rem var(--font-semibold);
  --h3: normal bold 1.75rem/2.25rem var(--font-semibold);
  --h4: normal 1.5rem/2rem var(--font-regular);
  --h5: normal 1.25rem/1.85rem var(--font-regular);
  --p: normal 1.125rem/1.75rem var(--font-regular);
  --compact: normal 1rem/1.5rem var(--font-regular);
  --small: normal 0.8rem/1rem var(--font-regular);
  --xsmall: normal 0.75rem/0.8rem var(--font-regular);

  --shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  --links: underline var(--color-primary) 2px;
  --links-hover: var(--color-tertiary);

  --transition: 75ms ease-in-out;

  /** Custom media query breakpoints **/
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  /* font-weight: 400; */
  font-display: swap;
  src: url(/assets/DMSans-Regular-e67a8bfd2cd4eca6c825ab0d32d771040bcea06fa7232e647fc1240253a4a150.ttf) format('truetype');
}

@font-face {
  font-family: 'DM Sans Bold';
  font-style: normal;
  /* font-weight: 400; */
  font-display: swap;
  src: url(/assets/DMSans-Bold-a088ab90bd65f2b017637017e417e148219c92a7eff6e04b167d7d4072856307.ttf) format('truetype');
}

@font-face {
  font-family: 'DM Sans SemiBold';
  font-style: normal;
  /* font-weight: 400; */
  font-display: swap;
  src: url(/assets/DMSans-SemiBold-e0a50be51b0ec7cacda89716fd358efd19753586e9754c4cef94de5d8eaa9612.ttf) format('truetype');
}

@font-face {
  font-family: 'DM Sans Medium';
  font-style: normal;
  /* font-weight: 400; */
  font-display: swap;
  src: url(/assets/DMSans-Medium-b08496e4a30538cff37f21f9829c9759af2371f9f3519c562d1e875baee406f7.ttf) format('truetype');
}

@font-face {
  font-family: 'DM Sans Light';
  font-style: normal;
  /* font-weight: 400; */
  font-display: swap;
  src: url(/assets/DMSans-Light-65af29e60436d1928ce8b26b0f41294e109226d9a135e807e17de4289d075558.ttf) format('truetype');
}

/* Adjustments for tablets and smaller screens */

@media (max-width: 1024px) {
  :root {
    --heading: normal bold 2.25rem/2.75rem var(--font-bold);
    --h1: normal bold 2.25rem/2.75rem var(--font-bold);
    --h2: normal bold 1.875rem/2.375rem var(--font-semibold);
    --h3: normal bold 1.5rem/2rem var(--font-semibold);
    --h4: normal 1.375rem/1.875rem var(--font-regular);
    --p: normal 1.05rem/1.5rem var(--font-regular);
    --small: normal 0.875rem/1.25rem var(--font-regular);
    --tiny: normal 0.75rem/1rem var(--font-regular);
  }
}

/* Adjustments for mobile phones */

@media (max-width: 768px) {
  :root {
    --heading: normal bold 2rem/2.5rem var(--font-bold);
    --h1: normal bold 2rem/2.5rem var(--font-bold);
    --h2: normal bold 1.75rem/2.25rem var(--font-semibold);
    --h3: normal bold 1.375rem/1.75rem var(--font-semibold);
    --h4: normal 1.25rem/1.75rem var(--font-regular);
    --p: normal 1.05rem/1.375rem var(--font-regular);
    --small: normal 0.8125rem/1.125rem var(--font-regular);
    --tiny: normal 0.6875rem/1rem var(--font-regular);
  }
}

/* Adjustments for very small mobile phones */

@media (max-width: 480px) {
  :root {
    --heading: normal bold 1.75rem/2.25rem var(--font-bold);
    --h1: normal bold 1.75rem/2.25rem var(--font-bold);
    --h2: normal bold 1.5rem/2rem var(--font-semibold);
    --h3: normal bold 1.25rem/1.625rem var(--font-semibold);
    --h4: normal 1rem/1.5rem var(--font-regular);
    --p: normal 1.05rem/1.25rem var(--font-regular);
    --small: normal 0.75rem/1.125rem var(--font-regular);
    --tiny: normal 0.625rem/1rem var(--font-regular);
  }
}

/* Locale Dropdown Component
   Dropdown-based language switcher
*/

.locale-dropdown {
  position: relative;
  display: inline-block;
}

.locale-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-medium, 8px);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-color, #1f2937);
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.locale-dropdown-trigger:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.locale-dropdown-trigger svg:first-child {
  color: var(--text-muted, #6b7280);
}

.locale-dropdown-icon {
  flex-shrink: 0;
}

.locale-dropdown-current {
  font-weight: 600;
}

.locale-dropdown-chevron {
  color: var(--text-muted, #6b7280);
  transition: transform 0.2s ease;
}

.locale-dropdown[data-dropdown-open-value="true"] .locale-dropdown-chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu */

.locale-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 150px;
  background: white;
  border: 1px solid var(--gray-5, #e5e7eb);
  border-radius: var(--radius-small, 6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  overflow: hidden;
}

.locale-dropdown.dropup .locale-dropdown-menu {
  top: auto;
  bottom: calc(100% + 6px);
}

.locale-dropdown-menu.hidden {
  display: none;
}

.hidden {
  display: none !important;
}

.locale-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  color: var(--text-color, #1f2937);
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.15s ease;
  text-align: left;
}

.locale-dropdown-item:hover {
  background-color: var(--gray-1, #f9fafb);
}

.locale-dropdown-item.active {
  background-color: color-mix(in srgb, var(--accent-color, #f97316) 10%, transparent);
}

.locale-flag {
  font-size: 16px;
  line-height: 1;
}

.locale-name {
  flex: 1 1;
}

.locale-check {
  color: var(--accent-color, #f97316);
  flex-shrink: 0;
}

/* Dark variant for use on dark backgrounds */

.locale-dropdown.dark .locale-dropdown-trigger {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.locale-dropdown.dark .locale-dropdown-trigger:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.locale-dropdown.dark .locale-dropdown-trigger svg {
  color: rgba(255, 255, 255, 0.8);
}

/* Compact variant */

.locale-dropdown.compact .locale-dropdown-trigger {
  padding: 6px 10px;
  font-size: 12px;
}

.locale-dropdown.compact .locale-dropdown-trigger svg:first-child {
  width: 16px;
  height: 16px;
}

/* Landing Page Styles */

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

body#landing-page {
  font-family: var(--font-regular);
  color: var(--primary-color);
  background-color: var(--secondary-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / Navigation */

.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  border-bottom: 1px solid var(--gray-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.landing-header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-family: var(--font-bold);
  color: var(--primary-color);
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {

.nav-links {
    display: flex
}
  }

.nav-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-family: var(--font-medium);
  transition: color 0.2s;
}

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

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Buttons */

.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--rounded-medium);
  font-family: var(--font-semibold);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

.btn-primary:hover {
  background-color: var(--accent-color-darker);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--gray-color);
}

.btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Hero Section */

.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(
    135deg,
    var(--dashboard-bg) 0%,
    var(--secondary-color) 100%
  );
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {

.hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem
}
  }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 2rem;
  font-family: var(--font-semibold);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font: var(--h1);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {

.hero-title {
    font-size: 3.5rem
}
  }

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-color-darkest);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border-radius: 50%;
  font-size: 0.625rem;
  margin-right: 0.5rem;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  color: var(--gray-color-darkest);
}

.indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--success-color);
  color: var(--secondary-color);
  border-radius: 50%;
  font-size: 0.75rem;
}

/* Hero Visual */

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: var(--rounded-large);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  -o-object-fit: cover;
     object-fit: cover;
}

.item-price {
  font-family: var(--font-bold);
  font-size: 1.125rem;
  color: var(--accent-color);
}

/* Metrics Section */

.metrics-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  text-align: center;
}

@media (min-width: 768px) {

.metrics-grid {
    grid-template-columns: repeat(4, 1fr)
}
  }

.metric-value {
  font-family: var(--font-bold);
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.metric-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Features Section */

.features-section {
  padding: 100px 0;
  background-color: var(--secondary-color);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 2rem;
  font-family: var(--font-semibold);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font: var(--h2);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-color-darkest);
}

.features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {

.features-grid {
    grid-template-columns: repeat(2, 1fr)
}
  }

@media (min-width: 1024px) {

.features-grid {
    grid-template-columns: repeat(3, 1fr)
}
  }

.feature-card {
  background-color: var(--dashboard-bg);
  padding: 2rem;
  border-radius: var(--rounded-large);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: var(--rounded-medium);
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  color: var(--secondary-color);
  stroke-width: 1.5;
}

.feature-title {
  font: var(--h3);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--gray-color-darkest);
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  color: var(--gray-color-darkest);
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* Get Started Section */

.get-started-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--dashboard-bg) 0%,
    var(--secondary-color) 100%
  );
}

.steps-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {

.steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem
}
  }

.step-card {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border-radius: 50%;
  font-family: var(--font-bold);
  font-size: 1.5rem;
}

.step-title {
  font: var(--h3);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-description {
  color: var(--gray-color-darkest);
  font-size: 1.0625rem;
}

/* Testimonials Section */

.testimonials-section {
  padding: 100px 0;
  background-color: var(--secondary-color);
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {

.testimonials-grid {
    grid-template-columns: repeat(2, 1fr)
}
  }

@media (min-width: 1024px) {

.testimonials-grid {
    grid-template-columns: repeat(3, 1fr)
}
  }

.testimonial-card {
  background-color: var(--dashboard-bg);
  padding: 2rem;
  border-radius: var(--rounded-large);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stars {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.testimonial-quote {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--gray-color-darkest);
  flex: 1 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-bold);
  font-size: 1.125rem;
}

.author-name {
  font-family: var(--font-semibold);
  font-size: 1rem;
}

.author-role {
  font-size: 0.875rem;
  color: var(--gray-color-darkest);
}

/* Pricing Section */

.pricing-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--dashboard-bg) 0%,
    var(--secondary-color) 100%
  );
}

.pricing-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}
  }

.pricing-card {
  background-color: var(--secondary-color);
  padding: 2.5rem 2rem;
  border-radius: var(--rounded-large);
  border: 2px solid var(--gray-color);
  text-align: center;
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--secondary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-family: var(--font-semibold);
  font-size: 0.875rem;
}

.upcoming-badge {
  display: block;
  text-align: center;
  background-color: #10b981;
  color: var(--secondary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-family: var(--font-semibold);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 auto 1rem auto;
  width: -moz-fit-content;
  width: fit-content;
}

.pricing-card button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.plan-name {
  font: var(--h3);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.plan-price {
  margin-bottom: 1rem;
}

.price-amount {
  font-family: var(--font-bold);
  font-size: 3rem;
  color: var(--accent-color);
}

.price-period {
  font-size: 1.25rem;
  color: var(--gray-color-darkest);
}

.plan-description {
  color: var(--gray-color-darkest);
  margin-bottom: 2rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.plan-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features .check {
  color: var(--success-color);
  font-weight: bold;
}

/* CTA Section */

.cta-section {
  padding: 100px 0;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  text-align: center;
}

.cta-title {
  font: var(--h2);
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  background-color: var(--secondary-color);
  color: var(--accent-color);
}

.cta-section .btn-primary:hover {
  background-color: var(--gray-color);
}

.cta-section .btn-secondary {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.cta-section .btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--accent-color);
}

.cta-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-size: 0.9375rem;
  opacity: 0.9;
}

/* Footer */

.landing-footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {

.footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr
}
  }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-family: var(--font-bold);
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  /* filter: brightness(1) invert(1); */
}

.footer-description {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.2s;
}

.social-links a:hover {
  background-color: var(--accent-color);
}

/* Language Dropdown in Footer */

.landing-footer .locale-dropdown {
  margin-top: 1.5rem;
}

.landing-footer .locale-dropdown-trigger {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--secondary-color);
  backdrop-filter: blur(8px);
}

.landing-footer .locale-dropdown-trigger:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.landing-footer .locale-dropdown-trigger svg {
  color: rgba(255, 255, 255, 0.8);
}

.landing-footer .locale-dropdown-current {
  color: var(--secondary-color);
}

.footer-heading {
  font-family: var(--font-semibold);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--secondary-color);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  opacity: 0.8;
}

@media (min-width: 768px) {

.footer-legal {
    flex-direction: row;
    justify-content: space-between
}
  }

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-links a {
  color: var(--secondary-color);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.legal-links a:hover {
  opacity: 1;
}

/* Responsive adjustments */

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .header-actions .btn-secondary {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }

  .metric-value {
    font-size: 2.5rem;
  }
}

/* Smooth scroll behavior */

html {
  scroll-behavior: smooth;
}

/* Accessibility improvements */

a:focus,
button:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
