:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --bg-card: #151515;
  --bg-card-hover: #1a1a1a;
  --surface: #1c1c1c;
  --surface-light: #242424;
  --text: #ffffff;
  --text-secondary: #a0a0a0;
  --muted: #666666;
  --accent: #c9a962;
  --accent-light: #e8d5a3;
  --accent-dark: #9a7b3c;
  --accent-glow: rgba(201, 169, 98, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(201, 169, 98, 0.3);
  --gradient-gold: linear-gradient(135deg, #c9a962 0%, #e8d5a3 50%, #c9a962 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 60px rgba(201, 169, 98, 0.1);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  font-size: 16px;
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./assets/fonts/SpaceGrotesk-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./assets/fonts/SpaceGrotesk-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./assets/fonts/SpaceGrotesk-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./assets/fonts/SpaceGrotesk-Bold.ttf') format('truetype');
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', 'PingFang SC', -apple-system, sans-serif;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Animated background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 169, 98, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(201, 169, 98, 0.05), transparent),
    radial-gradient(ellipse 50% 30% at 0% 100%, rgba(201, 169, 98, 0.03), transparent);
  pointer-events: none;
  z-index: 0;
}

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

button,
a.primary,
a.ghost,
.cta-button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.95rem 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

button:active,
a.primary:active,
a.ghost:active,
.cta-button:active {
  transform: scale(0.98);
}

.primary {
  color: #000;
  background: var(--gradient-gold);
  background-size: 200% 200%;
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
  border: 1px solid var(--accent);
}

.primary:hover {
  background-position: 100% 100%;
  box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
  transform: translateY(-2px);
}

.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.primary:hover::before {
  left: 100%;
}

.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}

.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.block {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 0 clamp(1.5rem, 6vw, 6rem) 5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-bg,
.hero-bg-1,
.hero-bg-2,
.hero-bg-3 {
  display: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 600px;
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08), transparent 70%);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  gap: 1rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 10;
}

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

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.3);
}

.logo p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo strong {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 0.8rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  margin: 0 auto;
  transition: all 0.3s;
}

/* Hero Content */
.hero-content {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  flex: 1;
}

.hero-text h1 {
  margin: 0.5rem 0 1.5rem;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-text h1::first-line {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  max-width: 560px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

.hero-desc.secondary {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: -0.2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-badges span {
  font-size: 0.8rem;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s;
}

.hero-badges span:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.1);
}

.floating-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.floating-panels article {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.floating-panels article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

.floating-panels article:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.floating-panels .label {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.floating-panels .value {
  margin: 0.5rem 0 0;
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.floating-panels small {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Hero Visual / Card */
.hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: 100%;
  padding: 2.5rem;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--surface) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.hero-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.card-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: var(--accent-glow);
  color: var(--accent);
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--border-gold);
}

.card-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.5s ease-in-out infinite;
}

.card-desc {
  margin: 1rem 0 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.card-emphasis {
  margin: 1.5rem 0 0.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(201, 169, 98, 0.05);
  border: 1px solid var(--border-gold);
  position: relative;
}

.card-title.subtle {
  letter-spacing: 0.1em;
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0;
  text-transform: uppercase;
}

.card-emphasis-value {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-highlight {
  margin: 1.2rem 0 0;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.05));
  color: var(--accent-light);
  font-weight: 600;
  line-height: 1.5;
  border-left: 3px solid var(--accent);
  font-size: 0.95rem;
}

.card-benefits {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.card-benefits .card-title {
  color: var(--text);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.card-checklist {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card-checklist li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 500;
  color: var(--text);
}

.card-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(201, 169, 98, 0.5);
}

.card-benefits small {
  display: block;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.85rem;
}

.card-note {
  margin: 0.5rem 0 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
}

/* SEO Highlight Section */
.seo-highlight {
  margin: 0 clamp(1.5rem, 6vw, 6rem);
  padding: 2.5rem 3rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.seo-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

.seo-highlight h2 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.seo-highlight p {
  margin: 0 0 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.seo-tags span {
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: var(--accent-glow);
  border: 1px solid var(--border-gold);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
}

.seo-tags span:hover {
  background: rgba(201, 169, 98, 0.15);
  transform: translateY(-2px);
}

/* Stats Section */
.stats {
  margin: 4rem clamp(1.5rem, 6vw, 6rem) 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stats div {
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.stats div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
}

.stats div:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.stats h3 {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats p {
  margin: 0.5rem 0 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Logo Strip */
.logo-strip {
  padding: 4rem clamp(1.5rem, 6vw, 6rem) 2rem;
  color: var(--muted);
  text-align: center;
}

.logo-strip p {
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
}

.logo-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.logo-marquee span {
  transition: all 0.3s;
  cursor: default;
}

.logo-marquee span:hover {
  color: var(--accent);
}

/* Sections */
.section {
  padding: 5rem clamp(1.5rem, 6vw, 6rem);
  position: relative;
}

.section.accent {
  background: var(--bg-soft);
}

.section.accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.section-header {
  max-width: 800px;
  margin-bottom: 3.5rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin: 0.6rem 0 1.2rem;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  margin: 0 0 1rem;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--text);
}

.card p, .card ul {
  color: var(--text-secondary);
  line-height: 1.7;
}

.card ul {
  padding-left: 0;
  list-style: none;
  margin: 1rem 0 0;
}

.card ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}

.card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Feature Grid */
.feature-grid, .scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature, .scenario-grid article {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
}

.feature::before, .scenario-grid article::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-glow);
  border: 1px solid var(--border-gold);
}

.feature h3, .scenario-grid article h4 {
  margin: 0 0 0.8rem;
  padding-top: 3.5rem;
  font-weight: 600;
  font-size: 1.15rem;
}

.feature p, .scenario-grid article p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.feature:hover, .scenario-grid article:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.pricing-card {
  border-radius: 24px;
  border: 1px solid var(--border-gold);
  background: linear-gradient(145deg, var(--surface) 0%, var(--bg-card) 100%);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.pricing-card::after {
  content: 'POPULAR';
  position: absolute;
  top: 1.5rem;
  right: -2rem;
  background: var(--gradient-gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 3rem;
  transform: rotate(45deg);
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.price {
  margin: 1rem 0 1.5rem;
  font-size: 4rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price span {
  font-size: 1.5rem;
  vertical-align: super;
}

.price small {
  font-size: 1rem;
  color: var(--text-secondary);
  -webkit-text-fill-color: var(--text-secondary);
  font-weight: 400;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  color: var(--text-secondary);
  line-height: 2.2;
}

.pricing-card ul li {
  position: relative;
  padding-left: 1.5rem;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.pricing-note {
  color: var(--text-secondary);
  line-height: 1.7;
}

.pricing-note p {
  margin: 0 0 1rem;
}

.pricing-note a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.3s;
}

.pricing-note a:hover {
  color: var(--accent-light);
}

/* Security Grid */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.security-grid > div:first-child h2 {
  font-size: 2.4rem;
  margin: 0.5rem 0 1.5rem;
  line-height: 1.2;
}

.security-grid > div:first-child p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.security-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.security-list li {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.security-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-gold);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.security-list li:hover {
  border-color: var(--border-gold);
  transform: translateX(8px);
}

.security-list li:hover::before {
  transform: scaleY(1);
}

.security-list strong {
  font-size: 1.1rem;
  font-weight: 600;
}

.security-list span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--border-gold);
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.05rem;
  text-align: left;
}

.faq-item button span:last-child {
  color: var(--accent);
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-content {
  display: none;
  padding: 0 2rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.active .faq-content {
  display: block;
}

.faq-item.active button span:last-child {
  transform: rotate(45deg);
}

/* CTA Section */
.cta {
  margin: 5rem clamp(1.5rem, 6vw, 6rem);
  padding: 4rem;
  border-radius: 24px;
  border: 1px solid var(--border-gold);
  background: linear-gradient(145deg, var(--surface) 0%, var(--bg-card) 100%);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.cta::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.1), transparent 70%);
  pointer-events: none;
}

.cta h2 {
  margin: 0.5rem 0 1rem;
  font-size: 2rem;
}

.cta p {
  margin: 0;
  color: var(--text-secondary);
  max-width: 500px;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 10px;
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.cta-button .cta-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

.cta-outline {
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text);
}

.cta-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

/* Support Widget */
.support-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.support-float {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--surface);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.3);
}

.support-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
}

.support-float img {
  width: 32px;
  height: 32px;
  display: block;
}

.support-toast {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border-gold);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.support-toast::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.support-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.support-toast::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 24px;
  border-width: 8px 8px 0 8px;
  border-style: solid;
  border-color: var(--surface) transparent transparent transparent;
}

/* Footer */
.footer {
  padding: 4rem clamp(1.5rem, 6vw, 6rem);
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text-secondary);
}

.footer strong {
  font-size: 1.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.footer > div:first-child p {
  margin: 0;
  max-width: 300px;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}

.footer-info p {
  margin: 0;
}

.footer-info a {
  color: var(--accent);
  transition: color 0.3s;
}

.footer-info a:hover {
  color: var(--accent-light);
}

.copyright {
  margin: 2rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1200px) {
  .card-grid,
  .feature-grid,
  .scenario-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 1000px) {
  .nav {
    flex-wrap: wrap;
    padding: 1.2rem 1.5rem;
  }

  .nav-links,
  .nav-actions {
    width: 100%;
    justify-content: center;
    display: none;
  }

  .nav.is-open .nav-links,
  .nav.is-open .nav-actions {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1rem 0;
  }

  .nav-actions {
    flex-direction: column;
    padding-bottom: 0.5rem;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

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

  .pricing,
  .security-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .card-grid,
  .feature-grid,
  .scenario-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-visual {
    order: -1;
    min-height: auto;
  }

  .floating-panels {
    grid-template-columns: 1fr;
  }

  .cta {
    margin: 3rem 1rem;
    padding: 2.5rem;
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .support-widget {
    right: 1rem;
    bottom: 1rem;
  }
}
