:root {
  --bg: #f3f3f3;
  --surface: #ffffff;
  --surface-muted: #ebebeb;
  --text: #1d1d1d;
  --text-soft: #555555;
  --border: #d9d9d9;
  --brand: #f2bc17;
  --brand-dark: #d59f00;
  --footer: #393839;
  --footer-text: #9a9a9a;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1120px;
  --header-height: 82px;
  --hero-background-image: url("/src/images/thumbnail_MicrosoftTeams-image 1(1).svg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 150px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-mobile-cta {
  display: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #1d1d1d;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav a {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #000;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta {
  padding: 14px 20px;
  background: var(--brand);
  color: #111;
  box-shadow: 0 10px 24px rgba(242, 188, 23, 0.28);
  white-space: nowrap;
  flex: 0 0 auto;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: 24px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #d7d7d7;
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.46) 0%, rgba(20, 20, 20, 0.14) 42%, rgba(20, 20, 20, 0.06) 100%),
    var(--hero-background-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-content {
  width: 100%;
  min-height: calc(100svh - var(--header-height) - 48px);
  display: flex;
  align-items: center;
  padding: 24px 0;
}

.hero-card {
  width: min(100%, 760px);
  color: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(46, 46, 46, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-badge {
  color: #111;
  background: var(--brand);
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0 0 16px;
  max-width: 14ch;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.02;
}

.hero p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 62ch;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.65;
}

.hero strong {
  color: var(--brand);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.meta-card {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.meta-card strong {
  display: block;
}

.meta-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.meta-label {
  color: rgba(255, 255, 255, 0.72);
}

.meta-card strong {
  font-size: 16px;
  line-height: 1.4;
}

.btn {
  min-height: 52px;
  padding: 0 22px;
}

.btn-primary {
  background: var(--brand);
  color: #111;
  box-shadow: 0 12px 26px rgba(242, 188, 23, 0.24);
}

.btn-primary:hover,
.nav-cta:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-large {
  min-width: 270px;
}

.support-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
}

.eyebrow {
  color: #8a6a00;
  margin: 0 0 10px;
}

.support h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.support p,
.faq-content p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
}
.faq-section {
  padding: 28px 0 28px;
}

.faq-header {
  margin-bottom: 20px;
}

.faq-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.section-copy {
  margin: 0;
  max-width: 780px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
}

.faq-wrapper {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.35;
  font-weight: 800;
  background: var(--surface-muted);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: #222;
  transition: transform 0.22s ease;
}

.faq-icon::before {
  left: 1px;
  transform: translateY(-50%) rotate(40deg);
}

.faq-icon::after {
  right: 1px;
  transform: translateY(-50%) rotate(-40deg);
}

.faq-item[open] .faq-icon::before {
  transform: translateY(-50%) rotate(-40deg);
}

.faq-item[open] .faq-icon::after {
  transform: translateY(-50%) rotate(40deg);
}

.faq-content {
  padding: 0 28px 28px;
}

.faq-content p + p {
  margin-top: 16px;
}

.support {
  padding: 28px 0 72px;
}

.support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.support-card > div {
  max-width: 760px;
}

.site-footer {
  background: var(--footer);
  color: #fff;
  padding: 24px 0 22px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  flex: 0 1 auto;
}

.footer-brand img {
  width: clamp(180px, 22vw, 280px);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social img {
  max-height: 18px;
  width: auto;
}

.footer-legal {
  margin-top: 14px;
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal p {
  margin: 0;
  color: var(--footer-text);
  font-size: 12px;
  line-height: 1.65;
}

.footer-legal p + p {
  margin-top: 10px;
}

.footer-legal span {
  display: inline-block;
  margin: 0 10px;
}

.footer-legal a {
  color: var(--footer-text);
}

@media (max-width: 980px) {
  .nav-wrapper {
    min-height: 88px;
    gap: 16px;
  }

  .brand img {
    width: clamp(220px, 42vw, 320px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav a,
  .nav-mobile-cta {
    padding: 14px 16px;
    border-radius: 12px;
  }

  .nav a:hover,
  .nav-mobile-cta:hover {
    background: #f5f5f5;
  }

  .nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    background: var(--brand);
    color: #111;
    font-weight: 700;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    padding: 20px 0;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .support-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-large {
    min-width: 0;
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (min-width: 1280px) {
  .container {
    width: min(calc(100% - 72px), 1280px);
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    padding: 28px 0;
  }

  .hero-content {
    min-height: calc(100svh - var(--header-height) - 56px);
    padding: 28px 0;
  }

  .hero-card {
    padding: 40px;
  }
}

@media (max-width: 700px) {
  .nav-wrapper {
    min-height: 74px;
    gap: 14px;
  }

  .brand img {
    width: clamp(190px, 52vw, 260px);
  }

  .hero-content {
    min-height: calc(100svh - var(--header-height) - 24px);
    padding: 12px 0 20px;
  }

  .hero-card,
  .support-card {
    padding: 24px;
    border-radius: 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-meta {
    gap: 10px;
  }

  .hero p,
  .support p,
  .faq-content p,
  .section-copy {
    font-size: 16px;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 17px;
  }

  .faq-content {
    padding: 0 20px 20px;
  }

  .footer-social {
    gap: 10px;
  }
}

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

  .site-header {
    position: sticky;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .nav-wrapper {
    min-height: 68px;
  }

  .brand img {
    width: min(120px, 58vw);
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .hero-card,
  .support-card {
    padding: 18px;
    border-radius: 18px;
  }

  .hero-content {
    min-height: calc(100svh - var(--header-height) - 16px);
    padding: 8px 0 12px;
  }

  .hero-badge,
  .eyebrow {
    font-size: 11px;
  }

  .hero h1,
  .support h2,
  .faq-header h2 {
    font-size: 27px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-large {
    width: 100%;
    min-width: 0;
  }

  .meta-card {
    padding: 14px 16px;
  }

  .meta-card strong {
    font-size: 15px;
  }

  .faq-section {
    padding-top: 18px;
  }

  .faq-item summary {
    padding: 16px 16px;
    font-size: 16px;
    gap: 12px;
  }

  .faq-icon {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
  }

  .faq-content {
    padding: 0 16px 18px;
  }

  .site-footer {
    padding: 20px 0 18px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
  }

  .footer-brand img {
    width: min(220px, 100%);
  }

  .footer-legal p {
    font-size: 12px;
    line-height: 1.7;
  }

  .footer-legal span {
    display: block;
    margin: 8px 0 0;
  }
}


/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
 
::-webkit-scrollbar-track {
    background: transparent;
}
 
::-webkit-scrollbar-thumb {
    background: #f2bc17;
    border-radius: 3px;
}
