:root {
  --primary: #6b66a9;
  --primary-dark: #55508a;
  --primary-light: #f3f2f8;
  --accent: #0076d6;
  --text-main: #2d3142;
  --text-muted: #6e7582;
  --bg-color: #faf9fc;
  --background: #ffffff;
  --card-bg: #ffffff;
  --border-color: #e4e2ee;
  --radius: 4px;
  --shadow: 0 10px 30px -5px rgba(107, 102, 169, 0.08);
  --transition: all 0.25s ease;
  --container: 1180px;
--background-light:#efedff;
    --radius-large: 26px;
    --font:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  height: 100%;
}
html {
    scroll-behavior: smooth;
}

body {

    font-family: var(--font);
    color: var(--text-main);

    background: var(--bg-color);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}
.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

header {
  background-color: var(--card-bg);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--primary);
}

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

.logo {
    display: inline-flex;
    align-items: baseline;

    font-size: 27px;
    font-weight: 700;
    letter-spacing: -1.5px;

    color: var(--text);
}

.logo strong {
    color: var(--primary);
}
.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-header-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(107, 102, 169, 0.3);
}

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

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

.btn-header-outline:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 50px 0 25px;

    background: #102a31;

    color: white;
}

.logo-footer {
    color: white;
}

.footer-inner {
    display: flex;
    justify-content: space-between;

    gap: 50px;

    padding-bottom: 35px;
}

.footer-inner p {
    max-width: 300px;

    margin: 10px 0 0;

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

    font-size: 12px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 25px;

    font-size: 12px;

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

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

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

    font-size: 11px;
}