/* QueForce Security - Static Site Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --background: #0A0A0A;
  --background-card: #0F0F0F;
  --background-muted: #1A1A1A;
  --foreground: #FAFAFA;
  --muted-foreground: #99A1AF;
  --border: #262626;
  --gold: #C7AE6A;
  --gold-hover: #d4be7a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  font-size: 20px;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.text-body {
  font-size: 20px;
}

.text-body-sm {
  font-size: 16px;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--foreground);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-foreground);
  font-size: 16px;
  transition: color 0.2s;
}

.nav-phone:hover {
  color: var(--foreground);
}

.mobile-menu-btn {
  display: flex;
  padding: 8px;
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  padding: 16px;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted-foreground);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--foreground);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-actions {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--gold);
  color: #000;
  border: 1px solid var(--gold-hover);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-hero-outline {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: var(--foreground);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.4));
}

.hero-content {
  position: relative;
  max-width: 640px;
  padding: 80px 0;
}

.hero-content h1 {
  color: var(--foreground);
  margin-bottom: 24px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-page {
  min-height: 60vh;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-card {
  background-color: var(--background-card);
}

.section-muted {
  background-color: var(--background-muted);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  color: var(--foreground);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted-foreground);
  max-width: 640px;
  margin: 0 auto;
}

/* Cards */
.card {
  background-color: var(--background-card);
  border: 1px solid rgba(38, 38, 38, 0.5);
  transition: border-color 0.2s;
}

.card:hover {
  border-color: rgba(153, 161, 175, 0.3);
}

.card-content {
  padding: 32px;
}

/* Grid */
.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Icon Box */
.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-muted);
  margin-bottom: 24px;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  color: var(--foreground);
}

.icon-box-center {
  margin-left: auto;
  margin-right: auto;
}

/* Service Card */
.service-card h3 {
  color: var(--foreground);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted-foreground);
  font-size: 16px;
  margin-bottom: 16px;
}

.service-card .link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--foreground);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
}

.service-card .link:hover {
  color: var(--muted-foreground);
}

.service-card .link svg {
  width: 16px;
  height: 16px;
}

/* Reason Card */
.reason-card {
  text-align: center;
}

.reason-card h3 {
  color: var(--foreground);
  margin-bottom: 16px;
}

.reason-card p {
  color: var(--muted-foreground);
  font-size: 16px;
}

/* Industry Card */
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(38, 38, 38, 0.5);
  transition: border-color 0.2s;
}

.industry-card:hover {
  border-color: rgba(153, 161, 175, 0.3);
}

.industry-card svg {
  width: 32px;
  height: 32px;
  color: var(--muted-foreground);
}

.industry-card span {
  color: var(--foreground);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

/* CTA Section */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  color: var(--foreground);
  margin-bottom: 24px;
}

.cta-section p {
  color: var(--muted-foreground);
  max-width: 640px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Trust Bar */
.trust-bar {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .trust-items {
    gap: 64px;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-foreground);
  font-size: 16px;
}

.trust-item svg {
  width: 20px;
  height: 20px;
}

/* Service Detail Card */
.service-detail {
  scroll-margin-top: 96px;
}

.service-detail-content {
  padding: 32px;
}

@media (min-width: 1024px) {
  .service-detail-content {
    padding: 48px;
  }
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.service-detail-header .icon-box {
  margin-bottom: 0;
}

.service-detail h2 {
  color: var(--foreground);
  font-size: 24px;
}

.service-detail > p,
.service-detail-content > p {
  color: var(--muted-foreground);
  font-size: 16px;
  margin-bottom: 24px;
}

.service-list-title {
  color: var(--foreground);
  font-weight: 500;
  margin-bottom: 12px;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  list-style: none;
}

@media (min-width: 640px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-foreground);
  font-size: 16px;
}

.service-list li svg {
  width: 16px;
  height: 16px;
  color: var(--foreground);
  flex-shrink: 0;
}

/* Process Steps */
.process-step {
  position: relative;
}

.process-number {
  font-size: 48px;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.5);
  margin-bottom: 16px;
}

.process-step h3 {
  color: var(--foreground);
  margin-bottom: 8px;
}

.process-step p {
  color: var(--muted-foreground);
  font-size: 16px;
}

/* Commitment Card */
.commitment-card {
  background-color: var(--background);
  text-align: center;
}

.commitment-card h3 {
  color: var(--foreground);
  margin-bottom: 12px;
}

.commitment-card p {
  color: var(--muted-foreground);
  font-size: 16px;
}

/* Benefits List */
.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--foreground);
}

.benefits-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Contact Box */
.contact-box {
  background-color: var(--background-card);
  border: 1px solid var(--border);
  padding: 32px;
}

@media (min-width: 1024px) {
  .contact-box {
    padding: 48px;
  }
}

.contact-box h3 {
  color: var(--foreground);
  margin-bottom: 24px;
}

.contact-box > p {
  color: var(--muted-foreground);
  font-size: 16px;
  margin-bottom: 32px;
}

.contact-box .phone-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--foreground);
  font-size: 18px;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.contact-box .phone-link:hover {
  color: var(--muted-foreground);
}

.contact-box .phone-link svg {
  width: 20px;
  height: 20px;
}

.contact-box .btn {
  width: 100%;
  margin-bottom: 16px;
}

/* Footer */
.footer {
  background-color: var(--background-card);
  border-top: 1px solid var(--border);
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  color: var(--muted-foreground);
  font-size: 16px;
  line-height: 1.6;
}

.footer-section h4 {
  color: var(--foreground);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--muted-foreground);
  font-size: 16px;
  transition: color 0.2s;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted-foreground);
  font-size: 16px;
}

.footer-contact li svg {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--foreground);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 16px;
}

.footer-bottom .license {
  font-size: 14px;
}

/* Contact Form */
.contact-form-section {
  padding-top: 160px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  color: var(--foreground);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: var(--background-muted);
  border: 1px solid var(--border);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2399A1AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-submit {
  margin-top: 32px;
}

.form-submit .btn {
  width: 100%;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-white {
  color: var(--foreground);
}

.text-muted {
  color: var(--muted-foreground);
}

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

.space-y-4 > * + * { margin-top: 16px; }
.space-y-16 > * + * { margin-top: 64px; }

.max-w-4xl {
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}
