


:root {
  --clr-bg: #0c0e14;
  --clr-bg-2: #10121a;
  --clr-bg-3: #141720;
  --clr-bg-4: #1a1e2e;
  --clr-surface: #181c28;
  --clr-surface-2: #1e2334;
  --clr-border: rgba(255,255,255,0.07);
  --clr-border-hover: rgba(180,150,90,0.3);

  --clr-gold: #c9a84c;
  --clr-gold-light: #e2c06e;
  --clr-gold-dim: rgba(201,168,76,0.15);
  --clr-gold-glow: rgba(201,168,76,0.08);
  --clr-sapphire: #3a6dce;
  --clr-sapphire-light: #5584e0;
  --clr-amethyst: #7c4dce;
  --clr-amethyst-light: #9966e0;

  --clr-txt: #e8e6e0;
  --clr-txt-muted: #9a9590;
  --clr-txt-dim: #6b6762;
  --clr-white: #f4f2ed;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.7), 0 8px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  --shadow-gold: 0 0 24px rgba(201,168,76,0.2), 0 0 8px rgba(201,168,76,0.1);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background-color: var(--clr-bg);
  color: var(--clr-txt);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main, section { flex: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  color: var(--clr-white);
}

p { color: var(--clr-txt); line-height: 1.75; }


.ctr {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}


.sec {
  position: relative;
  padding-block: var(--sp-20);
  overflow: hidden;
}

.sec-hd {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-16);
}

.sec-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: var(--clr-gold-dim);
  border: 1px solid rgba(201,168,76,0.25);
  padding: var(--sp-1) var(--sp-4);
  border-radius: 100px;
  margin-bottom: var(--sp-4);
}

.sec-ttl {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--sp-4);
  background: linear-gradient(135deg, var(--clr-white) 0%, rgba(232,230,224,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-ttl--left {
  text-align: left;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  background: none;
  color: var(--clr-white);
}

.sec-sub {
  color: var(--clr-txt-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}


.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: var(--sp-4) var(--sp-6);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hdr.hdr--hidden { transform: translateY(-110%); }

.hdr-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  background: rgba(16, 18, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-3) var(--sp-6);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,168,76,0.06) inset;
  max-width: 1200px;
  margin-inline: auto;
}

.hdr-logo { display: flex; align-items: center; flex-shrink: 0; }
.hdr-logo-img { height: 36px; width: auto; }

.hdr-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}

.hdr-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-txt-muted);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.hdr-link:hover, .hdr-link.active {
  color: var(--clr-white);
  background: rgba(255,255,255,0.06);
}

.hdr-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-bg);
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  padding: 0.55rem var(--sp-4);
  border-radius: var(--radius-md);
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(201,168,76,0.35), 0 1px 3px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.hdr-cta:hover {
  background: linear-gradient(135deg, #f0d480, var(--clr-gold-light));
  box-shadow: 0 4px 16px rgba(201,168,76,0.45), 0 2px 6px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  margin-left: var(--sp-2);
}

.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-txt);
  border-radius: 2px;
  transition: var(--transition);
}


.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
  backdrop-filter: blur(4px);
}

.mob-overlay.mob-overlay--open {
  opacity: 1;
  visibility: visible;
}

.mob-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: var(--clr-bg-3);
  border-right: 1px solid var(--clr-border);
  z-index: 1010;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: var(--sp-8) var(--sp-6);
  box-shadow: var(--shadow-xl);
}

.mob-menu.mob-menu--open { transform: translateX(0); }

.mob-close {
  align-self: flex-end;
  color: var(--clr-txt-muted);
  font-size: 1.4rem;
  padding: var(--sp-2);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-bottom: var(--sp-8);
}

.mob-close:hover { color: var(--clr-white); background: rgba(255,255,255,0.06); }

.mob-links { display: flex; flex-direction: column; gap: var(--sp-2); }

.mob-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-txt-muted);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-md);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-16px);
}

.mob-link:hover { color: var(--clr-white); background: rgba(255,255,255,0.06); }

.mob-cta {
  color: var(--clr-gold) !important;
  background: var(--clr-gold-dim) !important;
  border: 1px solid rgba(201,168,76,0.2);
  margin-top: var(--sp-4);
}

.mob-menu--open .mob-link {
  animation: slideInLink 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mob-menu--open .mob-links li:nth-child(1) .mob-link { animation-delay: 0.05s; }
.mob-menu--open .mob-links li:nth-child(2) .mob-link { animation-delay: 0.1s; }
.mob-menu--open .mob-links li:nth-child(3) .mob-link { animation-delay: 0.15s; }
.mob-menu--open .mob-links li:nth-child(4) .mob-link { animation-delay: 0.2s; }
.mob-menu--open .mob-links li:nth-child(5) .mob-link { animation-delay: 0.25s; }

@keyframes slideInLink {
  to { opacity: 1; transform: translateX(0); }
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.8rem var(--sp-6);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn--primary {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: #1a1200;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35), 0 2px 6px rgba(0,0,0,0.3);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #f5de88, var(--clr-gold-light));
  box-shadow: 0 6px 24px rgba(201,168,76,0.5), 0 3px 10px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-txt);
  border: 1px solid var(--clr-border);
}

.btn--ghost:hover {
  border-color: rgba(201,168,76,0.35);
  color: var(--clr-white);
  background: rgba(201,168,76,0.06);
  transform: translateY(-1px);
}

.btn--lg { padding: 1rem var(--sp-8); font-size: 0.95rem; }
.btn--sm { padding: 0.5rem var(--sp-4); font-size: 0.8rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--thanks {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 1rem var(--sp-8);
  font-size: 1rem;
}

.btn--thanks:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--clr-white);
  transform: translateY(-2px);
}


.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-16);
  padding-block: 7rem var(--sp-20);
  padding-inline: var(--sp-6);
  max-width: 1240px;
  margin-inline: auto;
}

.hero-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(58,109,206,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(124,77,206,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(12,14,20,0) 0%, var(--clr-bg) 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow--a {
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(58,109,206,0.18) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.hero-glow--b {
  width: 400px;
  height: 350px;
  background: radial-gradient(circle, rgba(124,77,206,0.14) 0%, transparent 70%);
  bottom: 0;
  right: -50px;
}

.hero-glow--c {
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: var(--clr-gold-dim);
  border: 1px solid rgba(201,168,76,0.25);
  padding: var(--sp-2) var(--sp-4);
  border-radius: 100px;
  margin-bottom: var(--sp-6);
}

.hero-ttl {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--sp-6);
  color: var(--clr-white);
}

.hero-accent {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold), var(--clr-amethyst-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--clr-txt-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--sp-8);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-txt-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border);
  padding: 0.35rem var(--sp-3);
  border-radius: 100px;
}

.pill i { color: var(--clr-gold); font-size: 0.65rem; }

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

.hero-card-stack {
  position: relative;
  border-radius: var(--radius-lg);
}

.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-card--back {
  position: absolute;
  inset: 0;
  transform: rotate(3deg) translateY(12px) translateX(10px);
  background: var(--clr-amethyst);
  opacity: 0.15;
  z-index: 1;
}

.hero-card--mid {
  position: absolute;
  inset: 0;
  transform: rotate(1.5deg) translateY(6px) translateX(5px);
  background: var(--clr-sapphire);
  opacity: 0.2;
  z-index: 2;
}

.hero-card--front {
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow-xl), var(--shadow-gold);
  border: 1px solid rgba(201,168,76,0.15);
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}


.bnf-sec { background: var(--clr-bg-2); }

.bnf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-8);
}

.bnf-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.bnf-item:hover {
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-md), 0 0 20px rgba(201,168,76,0.06);
  transform: translateY(-3px);
}

.bnf-ico {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.2rem;
  margin-top: 2px;
}

.bnf-ttl {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--clr-white);
}

.bnf-txt p { font-size: 0.92rem; color: var(--clr-txt-muted); line-height: 1.65; }


.mod-sec { background: var(--clr-bg); }

.mod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-6);
}

.crd {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.crd:hover {
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(201,168,76,0.06);
  transform: translateY(-4px);
}

.mod-crd { position: relative; padding-top: var(--sp-6); }

.crd-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: var(--sp-3);
}

.crd-ico {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-gold-dim);
  border-radius: var(--radius-md);
  color: var(--clr-gold);
  font-size: 1.2rem;
  margin-bottom: var(--sp-4);
}

.crd-ttl {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--clr-white);
  line-height: 1.35;
}

.crd-txt {
  font-size: 0.88rem;
  color: var(--clr-txt-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.crd-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-sapphire-light);
  background: rgba(58,109,206,0.12);
  border: 1px solid rgba(58,109,206,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}


.forw-sec { background: var(--clr-bg-2); }

.forw-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.forw-card-stack { position: relative; }
.forw-card { border-radius: var(--radius-lg); overflow: hidden; }
.forw-card--back {
  position: absolute;
  inset: 0;
  transform: rotate(-2.5deg) translateY(10px) translateX(-8px);
  background: var(--clr-sapphire);
  opacity: 0.2;
  z-index: 1;
}
.forw-card--front {
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--clr-border);
}

.forw-img { width: 100%; height: 420px; object-fit: cover; }

.forw-list { display: flex; flex-direction: column; gap: var(--sp-4); margin-block: var(--sp-6); }

.forw-row {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-4);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.forw-row:hover {
  border-color: var(--clr-border-hover);
  background: var(--clr-surface-2);
}

.forw-ico {
  color: var(--clr-gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.forw-row p { font-size: 0.92rem; color: var(--clr-txt-muted); margin: 0; }


.srv-sec { background: var(--clr-bg-3); }

.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-6);
}

.srv-crd { text-align: left; }

.crd-ico-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-5);
  transition: var(--transition);
}

.srv-crd:hover .crd-ico-wrap {
  background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.12));
  border-color: rgba(201,168,76,0.35);
  box-shadow: var(--shadow-gold);
}

.fa-crd-ico {
  color: var(--clr-gold);
  font-size: 1.3rem;
}


.proc-sec { background: var(--clr-bg); }

.proc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.proc-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--clr-border);
}

.proc-steps { display: flex; flex-direction: column; gap: var(--sp-6); }

.proc-step {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  padding: var(--sp-5);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.proc-step:hover {
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-md);
}

.proc-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: #1a1200;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(201,168,76,0.3);
}

.proc-step-txt h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: var(--sp-2); color: var(--clr-white); }
.proc-step-txt p { font-size: 0.88rem; color: var(--clr-txt-muted); margin: 0; }


.cmp-sec { background: var(--clr-bg-2); }

.cmp-wrap { overflow-x: auto; border-radius: var(--radius-lg); }
.cmp-tbl-wrap { min-width: 600px; }

.cmp-tbl {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cmp-th {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-txt-muted);
  padding: var(--sp-5) var(--sp-6);
  text-align: center;
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-bg-4);
  position: relative;
}

.cmp-th--feat { text-align: left; }

.cmp-th--rec {
  color: var(--clr-white);
  background: linear-gradient(180deg, rgba(201,168,76,0.15) 0%, rgba(201,168,76,0.06) 100%);
  border-bottom-color: rgba(201,168,76,0.25);
}

.cmp-badge {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-1);
}

.cmp-feat {
  font-size: 0.88rem;
  color: var(--clr-txt);
  padding: var(--sp-4) var(--sp-6);
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}

.cmp-val {
  text-align: center;
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 1px solid var(--clr-border);
}

.cmp-val--rec {
  background: rgba(201,168,76,0.04);
}

.cmp-row:last-child .cmp-feat,
.cmp-row:last-child .cmp-val { border-bottom: none; }

.cmp-yes { color: var(--clr-gold); font-size: 1rem; }
.cmp-no { color: rgba(255,255,255,0.2); font-size: 1rem; }

.cmp-row:hover .cmp-feat,
.cmp-row:hover .cmp-val {
  background: rgba(255,255,255,0.02);
}

.cmp-row--cta .cmp-val { padding-block: var(--sp-5); }


.inst-sec { background: var(--clr-bg); }

.inst-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.inst-txt { order: 1; }
.inst-img-col { order: 2; }

.inst-p { color: var(--clr-txt-muted); font-size: 1rem; line-height: 1.8; margin-bottom: var(--sp-4); }

.inst-stats {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--clr-border);
}

.inst-stat { text-align: center; }

.inst-stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.inst-stat-lbl {
  font-size: 0.78rem;
  color: var(--clr-txt-dim);
  font-weight: 500;
}

.inst-card-stack { position: relative; }
.inst-card { border-radius: var(--radius-lg); overflow: hidden; }
.inst-card--back {
  position: absolute;
  inset: 0;
  transform: rotate(2deg) translateY(8px) translateX(8px);
  background: var(--clr-amethyst);
  opacity: 0.18;
  z-index: 1;
}
.inst-card--front {
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-xl), var(--shadow-gold);
  border: 1px solid rgba(201,168,76,0.12);
}

.inst-img { width: 100%; height: 440px; object-fit: cover; }


.faq-sec { background: var(--clr-bg-2); }

.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--clr-border-hover); }
.faq-item.faq-item--open { border-color: rgba(201,168,76,0.2); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-white);
  transition: var(--transition);
}

.faq-q:hover { background: rgba(255,255,255,0.02); }

.faq-ico {
  flex-shrink: 0;
  color: var(--clr-gold);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.faq-item--open .faq-ico { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a p {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: 0.92rem;
  color: var(--clr-txt-muted);
  line-height: 1.75;
}

.faq-item--open .faq-a { max-height: 300px; }


.cta-sec {
  background: var(--clr-bg-3);
  position: relative;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-badge {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-gold-dim);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: var(--sp-6);
  font-size: 1.5rem;
  color: var(--clr-gold);
}

.cta-ttl {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: var(--sp-4);
  color: var(--clr-white);
}

.cta-sub {
  color: var(--clr-txt-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}


.ftr {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-16);
  margin-top: auto;
}

.ftr-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-16);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--clr-border);
}

.ftr-logo { height: 38px; width: auto; margin-bottom: var(--sp-4); }
.ftr-tagline { font-size: 0.85rem; color: var(--clr-txt-dim); line-height: 1.5; }

.ftr-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.ftr-hd {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-4);
}

.ftr-col ul { display: flex; flex-direction: column; gap: var(--sp-2); }

.ftr-lnk {
  font-size: 0.85rem;
  color: var(--clr-txt-dim);
  transition: var(--transition);
}

.ftr-lnk:hover { color: var(--clr-gold-light); }

.ftr-contact-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--clr-txt-dim);
  line-height: 1.55;
}

.ftr-contact-item i {
  color: var(--clr-gold);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.ftr-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--sp-6);
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.ftr-copy, .ftr-loc {
  font-size: 0.78rem;
  color: var(--clr-txt-dim);
}


.pg-hero {
  padding-top: 7rem;
  padding-bottom: var(--sp-16);
  background: var(--clr-bg);
  position: relative;
}

.pg-hero--sm { padding-bottom: var(--sp-12); }

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

.pg-hero-ttl {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--sp-4);
  color: var(--clr-white);
}

.pg-hero-sub {
  color: var(--clr-txt-muted);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.75;
}


.miss-sec { background: var(--clr-bg-2); }

.miss-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.miss-txt p { color: var(--clr-txt-muted); margin-bottom: var(--sp-4); line-height: 1.8; }

.miss-card-stack { position: relative; }
.miss-card { border-radius: var(--radius-lg); overflow: hidden; }
.miss-card--back {
  position: absolute;
  inset: 0;
  transform: rotate(2.5deg) translateY(8px) translateX(8px);
  background: var(--clr-gold);
  opacity: 0.12;
  z-index: 1;
}
.miss-card--front {
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--clr-border);
}

.miss-img { width: 100%; height: 420px; object-fit: cover; }

.val-sec { background: var(--clr-bg); }

.val-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-6);
}

.val-crd { text-align: left; }

.val-ico {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  color: var(--clr-gold);
  font-size: 1.2rem;
  margin-bottom: var(--sp-4);
}

.val-ttl { font-size: 1rem; font-weight: 700; margin-bottom: var(--sp-3); color: var(--clr-white); }

.appr-sec { background: var(--clr-bg-2); }

.appr-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.appr-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--clr-border);
}

.appr-txt p { color: var(--clr-txt-muted); margin-bottom: var(--sp-4); line-height: 1.8; }

.loc-sec { background: var(--clr-bg); }

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.loc-item {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  align-items: flex-start;
}

.loc-ico {
  color: var(--clr-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.loc-item strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--clr-white); margin-bottom: var(--sp-1); }
.loc-item p { font-size: 0.88rem; color: var(--clr-txt-muted); margin: 0; }
.loc-item a { color: var(--clr-txt-muted); }
.loc-item a:hover { color: var(--clr-gold-light); }

.loc-cta-box {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
}

.loc-cta-box h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: var(--sp-4); color: var(--clr-white); }
.loc-cta-box p { font-size: 0.9rem; color: var(--clr-txt-muted); margin-bottom: var(--sp-6); line-height: 1.7; }


.pyme-why-sec { background: var(--clr-bg-2); }

.pyme-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.pyme-why-txt p { color: var(--clr-txt-muted); margin-bottom: var(--sp-4); line-height: 1.8; }

.pyme-card-stack { position: relative; }
.pyme-card { border-radius: var(--radius-lg); overflow: hidden; }
.pyme-card--back {
  position: absolute;
  inset: 0;
  transform: rotate(-2deg) translateY(10px) translateX(-8px);
  background: var(--clr-sapphire);
  opacity: 0.2;
  z-index: 1;
}
.pyme-card--front {
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--clr-border);
}

.pyme-img { width: 100%; height: 420px; object-fit: cover; }

.chal-sec { background: var(--clr-bg); }

.chal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-6);
}

.chal-crd { text-align: left; }

.chal-ico {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(58,109,206,0.12);
  border: 1px solid rgba(58,109,206,0.2);
  border-radius: var(--radius-md);
  color: var(--clr-sapphire-light);
  font-size: 1.2rem;
  margin-bottom: var(--sp-4);
}

.chal-crd h3 { font-size: 1rem; font-weight: 700; margin-bottom: var(--sp-3); color: var(--clr-white); }

.sect-sec { background: var(--clr-bg-2); }

.sect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-6);
}

.sect-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.sect-item:hover {
  border-color: var(--clr-border-hover);
  box-shadow: var(--shadow-md), 0 0 20px rgba(201,168,76,0.06);
  transform: translateY(-4px);
}

.sect-ico {
  font-size: 2rem;
  color: var(--clr-gold);
  margin-bottom: var(--sp-4);
  display: block;
}

.sect-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: var(--sp-3); color: var(--clr-white); }
.sect-item p { font-size: 0.88rem; color: var(--clr-txt-muted); line-height: 1.65; }

.pyme-proc-sec { background: var(--clr-bg); }

.pyme-proc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.pyme-proc-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--clr-border);
}

.pyme-proc-list { display: flex; flex-direction: column; gap: var(--sp-5); margin-block: var(--sp-6); }

.pyme-proc-item {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
}

.pyme-proc-num {
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  min-width: 36px;
}

.pyme-proc-item h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: var(--sp-2); color: var(--clr-white); }
.pyme-proc-item p { font-size: 0.88rem; color: var(--clr-txt-muted); margin: 0; line-height: 1.65; }

.pyme-proc-txt p { color: var(--clr-txt-muted); line-height: 1.8; }


.form-sec { background: var(--clr-bg-2); }

.form-ctr {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-8);
  align-items: start;
}

.form-sidebar { display: flex; flex-direction: column; gap: var(--sp-4); }

.form-info-crd {
  padding: var(--sp-6);
}

.form-info-ttl {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
}

.form-step-list { display: flex; flex-direction: column; gap: var(--sp-4); }

.form-step {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.form-step-n {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-gold-dim);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-gold);
}

.form-step strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--clr-white); margin-bottom: var(--sp-1); }
.form-step p { font-size: 0.82rem; color: var(--clr-txt-muted); margin: 0; line-height: 1.55; }

.form-contact-crd { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); }

.form-contact-lnk {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.85rem;
  color: var(--clr-txt-muted);
  transition: var(--transition);
}

.form-contact-lnk:hover { color: var(--clr-gold-light); }
.form-contact-lnk i { color: var(--clr-gold); font-size: 0.9rem; }

.frm-crd { padding: var(--sp-8); }

.frm-ttl {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-6);
}

.frm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.frm-grp {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.frm-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-txt-muted);
  letter-spacing: 0.04em;
}

.frm-req { color: var(--clr-gold); }

.frm-inp {
  background: var(--clr-bg-4);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.8rem var(--sp-4);
  color: var(--clr-white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.frm-inp::placeholder { color: var(--clr-txt-dim); }

.frm-inp:focus {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
  background: var(--clr-bg-3);
}

.frm-sel {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9590' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.frm-sel option { background: var(--clr-bg-3); color: var(--clr-white); }

.frm-txt { resize: vertical; min-height: 120px; }

.frm-check-grp { margin-bottom: var(--sp-5); }

.frm-check-lbl {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  cursor: pointer;
}

.frm-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--clr-gold);
  cursor: pointer;
}

.frm-check-lbl span { font-size: 0.82rem; color: var(--clr-txt-muted); line-height: 1.55; }

.frm-lnk { color: var(--clr-gold-light); }
.frm-lnk:hover { color: var(--clr-gold); }

.frm-err {
  color: #e57373;
  font-size: 0.82rem;
  margin-bottom: var(--sp-3);
  display: none;
}

.frm-err.frm-err--show { display: block; }


.iti { --iti-border-color: var(--clr-border); }
.iti__flag-container { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.iti__selected-flag { background: var(--clr-bg-4) !important; border-right: 1px solid var(--clr-border); }
.iti__selected-flag:hover { background: var(--clr-bg-3) !important; }
.iti__country-list { background: var(--clr-bg-3); border: 1px solid var(--clr-border); color: var(--clr-txt); border-radius: var(--radius-md); }
.iti__country:hover { background: var(--clr-bg-4) !important; }
.iti__divider { border-color: var(--clr-border); }
.iti__dial-code { color: var(--clr-txt-muted); }


.contact-sec { background: var(--clr-bg-2); }

.contact-ctr {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-8);
  align-items: start;
}

.contact-info-crd { padding: var(--sp-6); margin-bottom: var(--sp-4); }

.contact-info-ttl {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
}

.contact-detail {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  margin-bottom: var(--sp-5);
}

.contact-ico-wrap {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-gold-dim);
  border-radius: var(--radius-sm);
  color: var(--clr-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-detail strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--clr-txt-muted); letter-spacing: 0.04em; margin-bottom: var(--sp-1); }
.contact-detail p { font-size: 0.9rem; color: var(--clr-white); margin: 0; }
.contact-detail a { color: var(--clr-white); }
.contact-detail a:hover { color: var(--clr-gold-light); }

.contact-map-crd { overflow: hidden; padding: 0; }

.contact-map {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
  filter: grayscale(80%) invert(90%) contrast(0.9) brightness(0.35) sepia(20%);
  border-radius: var(--radius-lg);
}


.news-sec { background: var(--clr-bg); }

.news-crd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  padding: var(--sp-10);
  background: linear-gradient(135deg, var(--clr-surface) 0%, var(--clr-surface-2) 100%);
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(201,168,76,0.04);
}

.news-ico {
  font-size: 2rem;
  color: var(--clr-gold);
  margin-bottom: var(--sp-4);
}

.news-ttl {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--clr-white);
}

.news-txt p { font-size: 0.92rem; color: var(--clr-txt-muted); line-height: 1.7; }

.news-frm-row {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.news-inp { flex: 1; }

.news-btn { white-space: nowrap; flex-shrink: 0; }

.news-legal { font-size: 0.75rem; color: var(--clr-txt-dim); line-height: 1.5; }
.news-legal a { color: var(--clr-gold-light); }


.pg-thanks { display: flex; flex-direction: column; }

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-sapphire) 0%, var(--clr-amethyst) 50%, rgba(201,168,76,0.8) 100%);
  min-height: calc(100vh - 200px);
  padding: var(--sp-16) var(--sp-6);
  position: relative;
}

.thanks-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.thanks-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.thanks-ico {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: var(--sp-6);
  font-size: 2rem;
  color: var(--clr-white);
}

.thanks-ttl {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}

.thanks-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}


.legal-sec { background: var(--clr-bg-2); }

.legal-ctr {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 860px;
}

.legal-crd {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
}

.legal-crd--alt {
  background: var(--clr-bg-3);
  border-color: rgba(255,255,255,0.05);
}

.legal-crd--cookie {
  background: var(--clr-surface-2);
  border-color: rgba(201,168,76,0.08);
}

.legal-crd h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-gold-light);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--clr-border);
}

.legal-crd p {
  font-size: 0.9rem;
  color: var(--clr-txt-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-3);
}

.legal-crd p:last-child { margin-bottom: 0; }

.legal-crd ul {
  list-style: disc;
  padding-left: var(--sp-6);
  margin-block: var(--sp-3);
}

.legal-crd ul li {
  font-size: 0.9rem;
  color: var(--clr-txt-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-2);
}

.legal-lnk { color: var(--clr-gold-light); transition: var(--transition); }
.legal-lnk:hover { color: var(--clr-gold); }

.legal-tbl {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--sp-3);
}

.legal-tbl td {
  padding: var(--sp-3) var(--sp-4);
  font-size: 0.88rem;
  color: var(--clr-txt-muted);
  border-bottom: 1px solid var(--clr-border);
  vertical-align: top;
}

.legal-tbl td:first-child {
  color: var(--clr-txt);
  width: 40%;
  font-weight: 600;
}

.legal-tbl tr:last-child td { border-bottom: none; }

.cookie-ico-hd {
  font-size: 2rem;
  color: var(--clr-gold);
  margin-bottom: var(--sp-3);
}

.cookie-type {
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--clr-border);
}

.cookie-type:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

.cookie-type h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.cookie-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
}

.cookie-badge--req {
  background: rgba(58,109,206,0.15);
  color: var(--clr-sapphire-light);
  border: 1px solid rgba(58,109,206,0.25);
}

.cookie-badge--opt {
  background: rgba(201,168,76,0.12);
  color: var(--clr-gold);
  border: 1px solid rgba(201,168,76,0.2);
}

.cookie-table-wrap { overflow-x: auto; margin-top: var(--sp-3); }

.cookie-tbl {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}

.cookie-tbl th {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-txt-dim);
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-bg-4);
}

.cookie-tbl td {
  font-size: 0.85rem;
  color: var(--clr-txt-muted);
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
  vertical-align: top;
}

.cookie-tbl tr:last-child td { border-bottom: none; }


.cookie-trigger {
  position: fixed;
  bottom: var(--sp-4);
  left: var(--sp-4);
  z-index: 800;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--clr-txt-dim);
  background: rgba(16,18,26,0.7);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: 0.35rem 0.75rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.cookie-trigger:hover {
  color: var(--clr-gold-light);
  border-color: rgba(201,168,76,0.3);
  background: rgba(16,18,26,0.9);
}

.cookie-trigger.cookie-pulse {
  animation: cookiePulse 2s ease-in-out 1s 3;
}

@keyframes cookiePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50% { box-shadow: 0 0 0 6px rgba(201,168,76,0.15); }
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
  padding: var(--sp-4);
  backdrop-filter: blur(6px);
}

.cookie-modal-overlay.cookie-modal--open {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.cookie-modal-overlay.cookie-modal--open .cookie-modal {
  transform: translateY(0);
}

.cookie-modal-hd {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.cookie-modal-hd i { color: var(--clr-gold); font-size: 1.3rem; }

.cookie-modal-ttl {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
}

.cookie-modal-txt {
  font-size: 0.88rem;
  color: var(--clr-txt-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.cookie-modal-cats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4);
  background: var(--clr-bg-4);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  gap: var(--sp-4);
}

.cookie-cat-txt strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--clr-white); margin-bottom: 2px; }
.cookie-cat-txt span { font-size: 0.78rem; color: var(--clr-txt-muted); }

.cookie-toggle {
  flex-shrink: 0;
  position: relative;
  width: 40px;
  height: 22px;
  cursor: pointer;
}

.cookie-toggle input { opacity: 0; width: 0; height: 0; }

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  transition: var(--transition);
  border: 1px solid var(--clr-border);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: var(--clr-txt-dim);
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: rgba(201,168,76,0.25);
  border-color: rgba(201,168,76,0.4);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(18px);
  background: var(--clr-gold);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.cookie-modal-actions .btn { flex: 1; justify-content: center; }


[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 6rem;
    text-align: center;
  }

  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-pills { justify-content: center; }
  .hero-img-wrap { max-width: 600px; margin-inline: auto; }

  .inst-inner { grid-template-columns: 1fr; }
  .inst-txt { order: 2; }
  .inst-img-col { order: 1; }
  .inst-img { height: 320px; }

  .ftr-top { grid-template-columns: 1fr; gap: var(--sp-8); }
  .ftr-nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --sp-20: 3.5rem;
    --sp-16: 2.5rem;
  }

  .hdr-links, .hdr-cta { display: none; }
  .hdr-burger { display: flex; }

  .forw-inner,
  .miss-inner,
  .appr-inner,
  .proc-grid,
  .pyme-why-inner,
  .pyme-proc-inner,
  .loc-grid { grid-template-columns: 1fr; gap: var(--sp-8); }

  .forw-img, .miss-img, .pyme-img { height: 300px; }
  .proc-img { height: 280px; }
  .appr-img { height: 280px; }
  .pyme-proc-photo { height: 280px; }

  .form-ctr { grid-template-columns: 1fr; }
  .contact-ctr { grid-template-columns: 1fr; }

  .frm-row { grid-template-columns: 1fr; }

  .news-crd { grid-template-columns: 1fr; gap: var(--sp-6); }
  .news-frm-row { flex-direction: column; }

  .cmp-tbl-wrap { min-width: 500px; }

  .ftr-nav { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }

  .inst-stats { gap: var(--sp-5); }

  .cta-actions { flex-direction: column; align-items: center; }

  .hero-img { height: 300px; }
}

@media (max-width: 480px) {
  .ctr { padding-inline: var(--sp-4); }

  .hdr { padding: var(--sp-3) var(--sp-4); }

  .hero-ttl { font-size: 2rem; }

  .ftr-nav { grid-template-columns: 1fr; }

  .inst-stats { flex-direction: column; gap: var(--sp-4); text-align: center; }

  .mod-grid, .srv-grid, .bnf-grid { grid-template-columns: 1fr; }

  .cookie-modal-actions { flex-direction: column; }

  .cmp-th, .cmp-feat, .cmp-val { padding: var(--sp-3) var(--sp-4); font-size: 0.8rem; }
}


.bnf-sec { background: var(--clr-bg-2); }
.mod-sec { background: var(--clr-bg); }
.forw-sec { background: var(--clr-bg-2); }
.srv-sec { background: var(--clr-bg-3); }
.proc-sec { background: var(--clr-bg); }
.cmp-sec { background: var(--clr-bg-2); }
.inst-sec { background: var(--clr-bg); }
.faq-sec { background: var(--clr-bg-2); }
.cta-sec { background: var(--clr-bg-3); }

.miss-sec { background: var(--clr-bg-2); }
.val-sec { background: var(--clr-bg); }
.appr-sec { background: var(--clr-bg-2); }
.loc-sec { background: var(--clr-bg); }

.pyme-why-sec { background: var(--clr-bg-2); }
.chal-sec { background: var(--clr-bg); }
.sect-sec { background: var(--clr-bg-2); }
.pyme-proc-sec { background: var(--clr-bg); }

.form-sec { background: var(--clr-bg-2); }
.contact-sec { background: var(--clr-bg-2); }
.news-sec { background: var(--clr-bg); }
.legal-sec { background: var(--clr-bg-2); }


::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201,168,76,0.3); }