/* ==========================================================================
   Syncro Design System — Inspired by Aiven.io
   ========================================================================== */

:root {
  /* Color Tokens */
  --bg-black: #08090C;
  --bg-primary: #0D0F15;
  --bg-surface: #131620;
  --bg-surface-elevated: #181C29;
  --bg-surface-muted: #11131B;
  --bg-card: #0F121A;
  --bg-card-hover: #161A26;

  /* Accent Colors */
  --color-syncro: #B68CFF;
  --color-syncro-hover: #A472FA;
  --color-syncro-active: #9358FF;
  --color-syncro-subtle: rgba(182, 140, 255, 0.12);
  --color-syncro-border: rgba(182, 140, 255, 0.3);
  --color-syncro-glow: rgba(182, 140, 255, 0.25);

  --color-drive-green: #00E699;
  --color-drive-blue: #4285F4;
  --color-drive-yellow: #FBBC04;
  --color-drive-red: #EA4335;

  --color-highlight: rgba(182, 140, 255, 0.35);

  /* Typography Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #9AA2B8;
  --text-muted: #646C82;
  --text-inverse: #08090C;

  /* Borders */
  --border-base: rgba(255, 255, 255, 0.08);
  --border-muted: rgba(255, 255, 255, 0.04);
  --border-active: rgba(182, 140, 255, 0.4);
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
  --border-radius-pill: 9999px;

  /* Spacing & Layout */
  --max-width: 1240px;
  --header-height: 68px;

  /* Fonts */
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Transitions */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.15s;
  --duration-normal: 0.25s;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-black);
  color: var(--text-primary);
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  background-color: var(--bg-black);
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

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

button, input {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

/* Aiven-style Framed Container */
.container-frame {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  border-left: 1px solid var(--border-base);
  border-right: 1px solid var(--border-base);
  background-color: var(--bg-primary);
  position: relative;
}

@media (max-width: 1280px) {
  .container-frame {
    border-left: none;
    border-right: none;
  }
}

.content-inner {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .content-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* Typography Helpers */
.highlight-text {
  background-image: linear-gradient(to top, var(--color-highlight) 65%, transparent 65%);
  background-repeat: no-repeat;
  background-size: 100% 90%;
  display: inline;
}

.gradient-brand-text {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--color-syncro) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-syncro);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow-tag.green {
  color: var(--color-drive-green);
}

/* Top Announcement Banner (Aiven-style) */
.hide-announcement .announcement-bar,
.announcement-bar.hidden {
  display: none !important;
}

.announcement-bar {
  background-color: var(--bg-surface-muted);
  border-bottom: 1px solid var(--border-base);
  padding: 0.65rem 2.75rem 0.65rem 1rem;
  font-size: 0.8125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  transition: opacity var(--duration-fast) ease, max-height var(--duration-normal) ease;
}

.announcement-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-pill);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.announcement-close:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.announcement-close:focus-visible {
  outline: 2px solid var(--color-syncro);
}

.announcement-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.announcement-badge {
  background-color: rgba(0, 230, 153, 0.15);
  color: var(--color-drive-green);
  border: 1px solid rgba(0, 230, 153, 0.3);
  padding: 0.15rem 0.55rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.announcement-link {
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.announcement-link:hover {
  color: var(--color-syncro);
}

.announcement-link svg {
  transition: transform var(--duration-fast) ease;
}

.announcement-link:hover svg {
  transform: translateX(3px);
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-base);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.site-header .container-frame {
  width: 100%;
  background-color: transparent;
}

.site-header .content-inner {
  width: 100%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

.logo-img {
  height: 42px;
  width: auto;
  border-radius: 9px;
  display: block;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-badge {
  font-size: 0.65rem;
  padding: 0.1rem 0.45rem;
  background-color: var(--color-syncro-subtle);
  border: 1px solid var(--color-syncro-border);
  color: var(--color-syncro);
  border-radius: var(--border-radius-pill);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-fast) ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link:focus-visible {
  color: var(--text-primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-syncro);
  transition: width var(--duration-normal) var(--ease-spring);
}

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

.nav-link.active::after {
  width: 100%;
}

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

/* Buttons (Aiven Pill Style) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--duration-normal) var(--ease-spring);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-syncro);
  color: var(--text-inverse);
  box-shadow: 0 0 20px rgba(182, 140, 255, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-syncro-hover);
  box-shadow: 0 0 25px rgba(182, 140, 255, 0.45);
  transform: translateY(-1px);
}

.btn-primary:active {
  background-color: var(--color-syncro-active);
  transform: translateY(0);
}

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

.btn-secondary:hover {
  background-color: var(--bg-surface);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-green {
  background-color: var(--color-drive-green);
  color: #000;
}

.btn-green:hover {
  background-color: #1affb0;
  box-shadow: 0 0 25px rgba(0, 230, 153, 0.35);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

/* Disabled Button State */
.btn.btn-disabled,
.btn[disabled],
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
  filter: grayscale(0.2);
  user-select: none;
}

.btn.btn-disabled:hover,
.btn[disabled]:hover,
.btn:disabled:hover,
.btn[aria-disabled="true"]:hover,
.btn.btn-disabled:active,
.btn[disabled]:active,
.btn:disabled:active,
.btn[aria-disabled="true"]:active {
  transform: none !important;
  box-shadow: none !important;
  background-color: var(--color-syncro) !important;
  color: var(--text-inverse) !important;
  cursor: not-allowed !important;
}

.mobile-toggle {
  display: none;
  color: var(--text-primary);
  padding: 0.5rem;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: calc(var(--header-height) + 38px);
  left: 0;
  right: 0;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-base);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 99;
}

.mobile-nav-drawer.open {
  display: flex;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

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

/* Hero Section */
.hero-section {
  border-bottom: 1px solid var(--border-base);
  background-color: var(--bg-primary);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background-color: rgba(182, 140, 255, 0.1);
  border: 1px solid var(--color-syncro-border);
  border-radius: var(--border-radius-pill);
  font-size: 0.8125rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-pill-badge .sparkle {
  color: var(--color-syncro);
}

.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.hero-trust-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-base);
  padding-top: 1.25rem;
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-item svg {
  color: var(--color-drive-green);
}

/* Hero Visual Showcase */
.hero-visual-card {
  background: linear-gradient(180deg, #161A26 0%, #0F121A 100%);
  border: 1px solid var(--border-base);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(182, 140, 255, 0.1);
  position: relative;
}

.window-chrome {
  background-color: #0A0B0E;
  border-bottom: 1px solid var(--border-base);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.window-nav-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.window-dots {
  display: flex;
  gap: 0.4rem;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background-color: #FF5F56; }
.dot-yellow { background-color: #FFBD2E; }
.dot-green { background-color: #27C93F; }

.browser-nav-arrows {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  opacity: 0.6;
}

.window-url-bar {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-radius: var(--border-radius-pill);
  padding: 0.25rem 0.85rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  max-width: 260px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.window-url-bar .url-text {
  font-family: var(--font-mono);
  color: var(--text-secondary);
}

/* Browser Extension Toolbar Area */
.browser-extensions-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.browser-tool-icon {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 4px;
}

.browser-ext-pinned {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(182, 140, 255, 0.15);
  border: 1px solid var(--color-syncro);
  border-radius: 6px;
  padding: 3px 5px;
  box-shadow: 0 0 10px rgba(182, 140, 255, 0.35);
  cursor: default;
}

.ext-pinned-icon {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  display: block;
}

.ext-rec-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #EF4444;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  font-family: var(--font-mono);
  padding: 1px 3px;
  border-radius: 3px;
  line-height: 1;
  letter-spacing: 0.05em;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
  animation: pulseRec 1.5s infinite;
}

.browser-profile-dot .profile-circle {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--color-syncro), #7C3AED);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.window-body {
  position: relative;
  background-color: #0c0e14;
  overflow: hidden;
}

.screen-preview-bg {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
}

/* ==========================================================================
   Hero Extension Showcase (Sleek Real Extension UI Presentation)
   ========================================================================== */
.hero-extension-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  width: 100%;
}

.extension-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(182, 140, 255, 0.16) 0%, rgba(0, 230, 153, 0.05) 45%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.extension-card-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.75rem;
}



.extension-frame {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(182, 140, 255, 0.35);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.85), 
              0 0 40px rgba(182, 140, 255, 0.18),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
  background: #12151e;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.extension-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 75px -12px rgba(0, 0, 0, 0.95), 
              0 0 50px rgba(182, 140, 255, 0.28),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.extension-popup-img {
  width: 100%;
  height: auto;
  display: block;
}



/* Hero Browser Compatibility Strip */
.hero-browser-strip {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.browser-strip-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 600;
}

.browser-pills {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.browser-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-base);
  padding: 0.2rem 0.55rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.browser-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}





/* Social Proof & Integration Marquee (Aiven-style) */
.marquee-section {
  border-bottom: 1px solid var(--border-base);
  background-color: var(--bg-black);
  padding: 1.75rem 0;
  overflow: hidden;
}

.marquee-header-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.marquee-track-wrapper {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scrollMarquee 35s linear infinite;
  white-space: nowrap;
  padding-left: 2rem;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all var(--duration-fast) ease;
}

.marquee-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  color: var(--text-primary);
}

.marquee-item svg, .marquee-item img {
  height: 24px;
  width: auto;
}

/* Connected 1px Architectural Cards Grid (Aiven-style) */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header.left-align {
  text-align: left;
  margin: 0 0 2.5rem 0;
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.035em;
  margin-top: 0.65rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.feature-cards-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-base);
  background-color: var(--bg-primary);
}

.connected-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-base);
  border-bottom: 1px solid var(--border-base);
}

@media (max-width: 992px) {
  .connected-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .connected-grid {
    grid-template-columns: 1fr;
  }
}

.connected-card {
  border-right: 1px solid var(--border-base);
  border-bottom: 1px solid var(--border-base);
  background-color: var(--bg-card);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color var(--duration-normal) ease, border-color var(--duration-normal) ease;
  position: relative;
  overflow: hidden;
}

.connected-card:hover {
  background-color: var(--bg-card-hover);
}

.connected-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background-color var(--duration-fast) ease;
}

.connected-card:hover::before {
  background: var(--color-syncro);
}

.card-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  display: inline-block;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.card-body-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.card-icon-container {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-metric-badge {
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-mono);
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-base);
  color: var(--text-secondary);
}

/* ==========================================================================
   Product Preview / Laptop Showcase Section (Silver MacBook + Arc Browser)
   ========================================================================== */
.laptop-showcase-section {
  padding: 5rem 0 6.5rem 0;
  border-bottom: 1px solid var(--border-base);
  background: radial-gradient(circle at 50% 30%, rgba(182, 140, 255, 0.08) 0%, rgba(8, 9, 12, 0) 70%), var(--bg-surface-muted);
  position: relative;
  overflow: hidden;
}

.laptop-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}

/* Ambient Purple & Blue Glow Backdrop */
.laptop-ambient-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -15%);
  width: 95%;
  height: 90%;
  background: radial-gradient(ellipse 70% 55% at 50% 45%, rgba(182, 140, 255, 0.22) 0%, rgba(66, 133, 244, 0.1) 45%, rgba(8, 9, 12, 0) 75%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Laptop Hardware Chassis */
.laptop-device {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Space Gray / Dark Gray MacBook Lid (Outer Aluminum Shell) */
.laptop-device.dark-gray-macbook .laptop-lid,
.laptop-device.silver-macbook .laptop-lid {
  width: 100%;
  background: linear-gradient(180deg, #484D5B 0%, #353945 35%, #252833 100%);
  border-radius: 20px 20px 0 0;
  padding: 5px 5px 0 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: none;
  box-shadow: 
    0 0 0 1px #1B1D25,
    inset 0 1px 1px rgba(255, 255, 255, 0.45),
    0 35px 80px -15px rgba(0, 0, 0, 0.95),
    0 0 50px rgba(182, 140, 255, 0.18);
  position: relative;
  box-sizing: border-box;
}

/* Inner Black Glass Bezel */
.laptop-bezel {
  width: 100%;
  background: #08090C;
  border-radius: 15px 15px 0 0;
  padding: 10px 10px 0 10px;
  position: relative;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Top Bezel & FaceTime Camera */
.laptop-camera-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 5;
}

.laptop-camera-lens {
  width: 5px;
  height: 5px;
  background: #030406;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 2px rgba(66, 133, 244, 0.75);
  position: relative;
  display: inline-block;
}

.laptop-camera-lens::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 1.5px;
  height: 1.5px;
  border-radius: 50%;
  background: rgba(0, 230, 153, 0.65);
}

/* Space Gray / Dark Gray MacBook Base Chassis */
.laptop-device.dark-gray-macbook .laptop-base-chassis,
.laptop-device.silver-macbook .laptop-base-chassis {
  position: relative;
  width: calc(100% + 56px);
  height: 18px;
  background: linear-gradient(180deg, #4E5362 0%, #393E4A 25%, #2A2E38 65%, #1D2028 100%);
  border-radius: 0 0 18px 18px;
  border: 1px solid #434754;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 2px rgba(0, 0, 0, 0.5),
    0 14px 34px rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

/* Opening Center Thumb Scoop / Notch */
.laptop-device.dark-gray-macbook .laptop-notch,
.laptop-device.silver-macbook .laptop-notch {
  width: 110px;
  height: 5px;
  background: linear-gradient(180deg, #1A1C24 0%, #262934 100%);
  border-radius: 0 0 6px 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.65);
}

/* Ground Contact Soft Shadow */
.laptop-ground-shadow {
  position: absolute;
  bottom: -22px;
  left: 5%;
  width: 90%;
  height: 28px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 75%);
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

/* ==========================================================================
   Arc Browser UI (Inside Screen)
   ========================================================================== */
.arc-browser-window {
  display: flex;
  width: 100%;
  background: linear-gradient(135deg, #151722 0%, #0d0e15 100%);
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Arc Left Sidebar */
.arc-sidebar {
  width: 195px;
  flex-shrink: 0;
  padding: 12px 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(18, 20, 29, 0.95);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  user-select: none;
}

/* Traffic Lights (Window Controls) */
.arc-traffic-lights {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 2px 2px 4px 2px;
}

.arc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.arc-dot-red {
  background-color: #FF5F56;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.arc-dot-yellow {
  background-color: #FFBD2E;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.arc-dot-green {
  background-color: #27C93F;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

/* Arc Command Bar / URL Input Pill */
.arc-url-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  padding: 5px 8px;
  font-size: 0.6875rem;
  color: #D1D5DB;
  font-family: var(--font-sans);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
}

.arc-lock-icon {
  color: var(--color-syncro);
  flex-shrink: 0;
}

.arc-url-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  color: #E2E8F0;
  letter-spacing: -0.01em;
}

.arc-reload-icon {
  font-size: 0.75rem;
  color: #64748B;
  flex-shrink: 0;
  line-height: 1;
}

/* Arc Tab Groups */
.arc-tab-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.arc-section-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  color: #64748B;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 6px 2px 6px;
}

.arc-tab-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 7px;
  font-size: 0.7188rem;
  color: #94A3B8;
  transition: all var(--duration-fast) ease;
  position: relative;
  cursor: default;
}

.arc-tab-item.active {
  background: rgba(182, 140, 255, 0.16);
  color: #FFFFFF;
  font-weight: 600;
  border: 1px solid rgba(182, 140, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.arc-favicon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  object-fit: contain;
}

.arc-tab-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.arc-active-glow {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-syncro);
  box-shadow: 0 0 6px var(--color-syncro);
  flex-shrink: 0;
}

/* Arc Spaces Switcher at Bottom */
.arc-spaces-dock {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.arc-space-pill {
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.625rem;
  font-weight: 600;
  color: #64748B;
  background: rgba(255, 255, 255, 0.03);
}

.arc-space-pill.active {
  color: #E2E8F0;
  background: rgba(255, 255, 255, 0.08);
}

/* Arc Main Web Viewport (Signature Card Canvas) */
.arc-web-viewport {
  flex: 1;
  margin: 8px 8px 8px 0;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
  background: #08090C;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 30px rgba(0, 0, 0, 0.6);
  display: flex;
}

.arc-screen-media {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1306 / 738;
}

/* Screen Glass Sheen Overlay */
.laptop-screen-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 30%, transparent 60%);
}

/* Mobile & Tablet Responsiveness for Silver MacBook & Arc */
@media (max-width: 768px) {
  .laptop-showcase-section {
    padding: 3rem 0 4.5rem;
  }

  .laptop-wrapper {
    padding: 0 0.5rem;
  }

  .laptop-device.dark-gray-macbook .laptop-lid,
  .laptop-device.silver-macbook .laptop-lid {
    border-radius: 12px 12px 0 0;
    padding: 3px 3px 0 3px;
  }

  .laptop-bezel {
    border-radius: 9px 9px 0 0;
    padding: 6px 6px 0 6px;
  }

  .laptop-camera-bar {
    height: 6px;
  }

  .laptop-camera-lens {
    width: 4px;
    height: 4px;
  }

  .laptop-device.dark-gray-macbook .laptop-base-chassis,
  .laptop-device.silver-macbook .laptop-base-chassis {
    width: calc(100% + 22px);
    height: 12px;
    border-radius: 0 0 12px 12px;
  }

  .laptop-device.dark-gray-macbook .laptop-notch,
  .laptop-device.silver-macbook .laptop-notch {
    width: 65px;
    height: 3px;
    border-radius: 0 0 4px 4px;
  }

  .laptop-ground-shadow {
    bottom: -15px;
    height: 18px;
  }

  /* Arc Browser Mobile Adaptation: Top Header Bar */
  .arc-browser-window {
    flex-direction: column;
  }

  .arc-sidebar {
    width: 100%;
    height: 34px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 4px 10px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 8px;
  }

  .arc-tab-group,
  .arc-spaces-dock {
    display: none;
  }

  .arc-url-pill {
    flex: 1;
    max-width: 200px;
    padding: 3px 6px;
    font-size: 0.625rem;
  }

  .arc-web-viewport {
    margin: 0;
    border-radius: 0;
  }
}

/* Workflow Steps (Aiven-style "How it works") */
.workflow-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-base);
  background-color: var(--bg-primary);
}

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

@media (max-width: 992px) {
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.workflow-step {
  border: 1px solid var(--border-base);
  border-radius: var(--border-radius-md);
  background-color: var(--bg-surface);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--duration-normal) ease, border-color var(--duration-normal) ease;
}

.workflow-step:hover {
  transform: translateY(-4px);
  border-color: var(--color-syncro-border);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 800;
  color: rgba(182, 140, 255, 0.4);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Comparison Table (Aiven Matrix Style) */
.comparison-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-base);
  background-color: var(--bg-surface-muted);
}

.table-responsive {
  overflow-x: auto;
  border: 1px solid var(--border-base);
  border-radius: var(--border-radius-md);
  background-color: var(--bg-primary);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--border-base);
  font-size: 0.9375rem;
}

.comparison-table th {
  background-color: #0A0B0E;
  font-weight: 700;
  color: var(--text-primary);
  position: sticky;
  top: 0;
  z-index: 10;
}

.comparison-table th.col-highlight {
  background-color: #12141F;
  color: var(--color-syncro);
  border-left: 1px solid var(--border-active);
  border-right: 1px solid var(--border-active);
}

.comparison-table td.col-highlight {
  background-color: rgba(182, 140, 255, 0.04);
  border-left: 1px solid var(--border-active);
  border-right: 1px solid var(--border-active);
  font-weight: 600;
  color: var(--text-primary);
}

.check-icon {
  color: var(--color-drive-green);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cross-icon {
  color: #EF4444;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Company Showcase Banner (UtilsFirst) */
.company-showcase-section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border-base);
  background: linear-gradient(135deg, #10121C 0%, #0A0C12 100%);
}

.company-card {
  border: 1px solid var(--border-active);
  border-radius: var(--border-radius-lg);
  padding: 2.75rem 2.5rem;
  background: radial-gradient(circle at 90% 10%, rgba(182, 140, 255, 0.12) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.company-info {
  max-width: 620px;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-drive-green);
  margin-bottom: 0.75rem;
}

.company-title {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.company-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ Accordion Section */
.faq-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-base);
  background-color: var(--bg-primary);
}

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

.faq-item {
  border: 1px solid var(--border-base);
  border-radius: var(--border-radius-md);
  background-color: var(--bg-surface);
  overflow: hidden;
  transition: border-color var(--duration-fast) ease;
}

.faq-item:hover, .faq-item.active {
  border-color: var(--color-syncro-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  cursor: pointer;
}

.faq-icon {
  color: var(--color-syncro);
  transition: transform var(--duration-normal) var(--ease-spring);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.2s ease;
}

/* Bottom Glowing CTA */
.cta-banner-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border-base);
  background: radial-gradient(circle at 50% 50%, rgba(182, 140, 255, 0.18) 0%, rgba(8, 9, 12, 1) 70%);
  text-align: center;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  background-color: var(--bg-black);
  padding: 4.5rem 0 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 5rem;
  margin-bottom: 0;
}

@media (max-width: 868px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-logo-row img,
.footer-logo-img {
  height: 42px;
  width: auto;
  border-radius: 9px;
  display: block;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 320px;
}

.footer-copyright {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-copyright a {
  color: #fff;
  font-weight: 600;
  transition: color var(--duration-fast) ease;
}

.footer-copyright a:hover {
  color: var(--color-syncro);
}

.footer-col-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--color-syncro);
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--color-drive-green);
  border-radius: var(--border-radius-pill);
  padding: 0.75rem 1.25rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--duration-normal) var(--ease-spring);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* Keyframe Animations */
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulseRec {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.85); }
}

@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 153, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(0, 230, 153, 0); }
}

@keyframes soundwave {
  0% { height: 4px; }
  100% { height: 18px; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--color-syncro);
  color: #000;
  padding: 0.6rem 1rem;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

:focus-visible {
  outline: 2px solid var(--color-syncro);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Subpages Common Layout (Contact, Terms, Privacy)
   ========================================================================== */
.subpage-hero {
  border-bottom: 1px solid var(--border-base);
  background-color: var(--bg-primary);
  padding: 3.5rem 0 3rem;
  position: relative;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.breadcrumb-nav a {
  color: var(--text-secondary);
  transition: color var(--duration-fast) ease;
}

.breadcrumb-nav a:hover {
  color: var(--color-syncro);
}

.breadcrumb-separator {
  color: var(--border-base);
}

.subpage-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.75rem;
}

.subpage-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.6;
}

.subpage-meta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 0.4rem 0.85rem;
  background-color: var(--bg-surface-muted);
  border: 1px solid var(--border-base);
  border-radius: var(--border-radius-pill);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Legal Content Section */
.legal-section {
  padding: 3.5rem 0 5rem;
  background-color: var(--bg-black);
}

.legal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
}

@media (max-width: 992px) {
  .legal-sidebar {
    position: static;
  }
}

.legal-sidebar-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.legal-nav-link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all var(--duration-fast) ease;
  display: block;
  padding: 0.35rem 0.5rem;
  border-radius: var(--border-radius-sm);
}

.legal-nav-link:hover {
  color: #fff;
  background-color: rgba(182, 140, 255, 0.08);
  padding-left: 0.75rem;
}

.legal-body {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .legal-body {
    padding: 1.75rem;
  }
}

.legal-highlight-box {
  background: linear-gradient(135deg, rgba(182, 140, 255, 0.08) 0%, rgba(0, 230, 153, 0.04) 100%);
  border: 1px solid var(--color-syncro-border);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.legal-highlight-box h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-highlight-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.legal-section-block {
  margin-bottom: 2.75rem;
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.legal-section-block:last-child {
  margin-bottom: 0;
}

.legal-section-block h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-muted);
}

.legal-section-block h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 1.25rem 0 0.5rem;
}

.legal-section-block p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.legal-section-block ul {
  margin: 0.75rem 0 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-section-block li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.legal-contact-callout {
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border-base);
  border-radius: var(--border-radius-md);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}

.legal-contact-callout p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.legal-contact-callout strong {
  color: #fff;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-section {
  padding: 3.5rem 0 5rem;
  background-color: var(--bg-black);
}

.contact-details-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card-modern {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-radius: var(--border-radius-md);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--duration-normal) var(--ease-spring);
}

.contact-card-modern:hover {
  border-color: var(--color-syncro-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.contact-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--color-syncro-subtle);
  border: 1px solid var(--color-syncro-border);
  color: var(--color-syncro);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.contact-card-detail {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-syncro);
  display: block;
  margin-bottom: 0.25rem;
  transition: color var(--duration-fast) ease;
}

.contact-card-detail:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-card-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.contact-form-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
}

@media (max-width: 640px) {
  .contact-form-card {
    padding: 1.5rem;
  }
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-form-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
  .form-grid-2col {
    grid-template-columns: 1fr;
  }
}

.form-group-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label-custom {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input-custom,
.form-select-custom,
.form-textarea-custom {
  width: 100%;
  background-color: var(--bg-black);
  border: 1px solid var(--border-base);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all var(--duration-fast) ease;
}

.form-input-custom:focus,
.form-select-custom:focus,
.form-textarea-custom:focus {
  outline: none;
  border-color: var(--color-syncro);
  box-shadow: 0 0 0 3px rgba(182, 140, 255, 0.2);
}

.form-select-custom {
  cursor: pointer;
}

.form-textarea-custom {
  min-height: 130px;
  resize: vertical;
}

.contact-form-alert {
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  display: none;
}

.contact-form-alert.success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(0, 230, 153, 0.1);
  border: 1px solid rgba(0, 230, 153, 0.3);
  color: var(--color-drive-green);
}

