/* ============================================
   WilsonCyber Corporate Website Styles
   ============================================ */

/* CSS Variables */
:root {
  --color-primary: #0f172a;
  --color-secondary: #1e293b;
  --color-accent: #3b82f6;
  --color-accent-light: #60a5fa;
  --color-accent-dark: #2563eb;
  --color-cyan: #06b6d4;
  --color-text: #334155;
  --color-text-light: #64748b;
  --color-text-muted: #94a3b8;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-border: #e2e8f0;
  --color-card: #ffffff;
  --color-success: #10b981;
  --color-error: #ef4444;

  --font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', Monaco, monospace;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px rgb(59 130 246 / 0.3);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

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

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-accent-dark);
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

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

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgb(59 130 246 / 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgb(59 130 246 / 0.45);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

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

.btn-lg {
  padding: 14px 36px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-cyan) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  transition: var(--transition);
}

.logo-sub {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 6px;
  transition: var(--transition);
}

.navbar.scrolled .logo-text {
  color: var(--color-primary);
}

.navbar.scrolled .logo-sub {
  color: var(--color-text-light);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle {
  color: var(--color-primary);
}

.nav-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  list-style: none;
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
}

.nav-menu.active {
  display: flex;
}

.nav-link {
  display: block;
  padding: 12px 16px;
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  background: var(--color-bg-alt);
  color: var(--color-accent);
}

.nav-cta {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
}

.nav-cta .btn {
  width: 100%;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: none;
    border: none;
    backdrop-filter: none;
  }

  .nav-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
  }

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

  .navbar.scrolled .nav-link {
    color: var(--color-text);
  }

  .navbar.scrolled .nav-link:hover {
    background: var(--color-bg-alt);
    color: var(--color-accent);
  }

  .nav-cta {
    margin-top: 0;
    padding-top: 0;
    border: none;
    margin-left: 8px;
  }

  .nav-cta .btn {
    width: auto;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #0c4a6e 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 48px 24px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-accent-light);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 36px;
}

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

@media (min-width: 768px) {
  .hero-title {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 68px;
  }
}

/* ============================================
   SECTIONS (General)
   ============================================ */
.section {
  padding: 80px 0;
}

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

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

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgb(59 130 246 / 0.1) 0%, rgb(6 182 212 / 0.1) 100%);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }

  .section-title {
    font-size: 40px;
  }
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  gap: 48px;
}

.about-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-header {
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.card-body {
  padding: 28px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  gap: 16px;
}

.info-row:last-of-type {
  border-bottom: none;
}

.info-label {
  font-size: 14px;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.info-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-secondary);
  text-align: right;
}

.info-divider {
  height: 1px;
  background: var(--color-border);
  margin: 16px 0;
}

.founder-block {
  padding-top: 4px;
}

.founder-label {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.founder-name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.founder-desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 420px;
    align-items: start;
  }
}

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages-grid {
  display: grid;
  gap: 24px;
}

.advantage-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-light);
}

.advantage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgb(59 130 246 / 0.1) 0%, rgb(6 182 212 / 0.1) 100%);
  color: var(--color-accent);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.advantage-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.advantage-desc {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

/* ============================================
   SERVICES
   ============================================ */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-item {
  display: grid;
  gap: 28px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-light);
}

.service-icon-wrap {
  display: flex;
  align-items: flex-start;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-cyan) 100%);
  color: #fff;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-accent);
}

.service-link:hover {
  gap: 10px;
}

@media (min-width: 768px) {
  .service-item {
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 40px;
  }

  .service-reverse {
    direction: rtl;
  }

  .service-reverse > * {
    direction: ltr;
  }

  .service-reverse .service-icon-wrap {
    justify-content: flex-end;
  }
}

/* ============================================
   TECH STACK
   ============================================ */
.tech-intro {
  text-align: center;
  font-size: 17px;
  color: var(--color-text-light);
  margin-top: -32px;
  margin-bottom: 40px;
}

.tech-grid {
  display: grid;
  gap: 24px;
}

.tech-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.tech-card:hover {
  box-shadow: var(--shadow-md);
}

.tech-category {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-border);
}

.tech-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text);
}

.tech-check {
  color: var(--color-success);
  flex-shrink: 0;
}

.tech-banner {
  margin-top: 40px;
}

.tech-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 32px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 500;
}

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

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

/* ============================================
   USE CASES
   ============================================ */
.usecases-grid {
  display: grid;
  gap: 24px;
}

.usecase-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.usecase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-cyan) 100%);
}

.usecase-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.usecase-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}

.usecase-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.usecase-desc {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.usecases-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: linear-gradient(135deg, rgb(59 130 246 / 0.05) 0%, rgb(6 182 212 / 0.05) 100%);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--color-text-light);
}

.usecases-note a {
  font-weight: 500;
}

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

/* ============================================
   PROCESS
   ============================================ */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}

.process-last {
  padding-bottom: 0;
}

.process-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-cyan) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgb(59 130 246 / 0.3);
  z-index: 2;
}

.process-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-border) 100%);
  margin-top: 8px;
}

.process-content {
  padding-top: 10px;
}

.process-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.process-desc {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .process-timeline {
    flex-direction: row;
    justify-content: space-between;
    max-width: none;
    gap: 16px;
  }

  .process-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 0;
    gap: 16px;
  }

  .process-line {
    display: none;
  }

  .process-content {
    padding-top: 0;
  }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  gap: 48px;
}

.contact-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.contact-lead {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgb(59 130 246 / 0.1) 0%, rgb(6 182 212 / 0.1) 100%);
  color: var(--color-accent);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}

.contact-label {
  font-size: 13px;
  color: var(--color-text-muted);
}

.contact-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-secondary);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-secondary);
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  font-family: var(--font-family);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgb(59 130 246 / 0.1);
}

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

.form-error {
  display: none;
  font-size: 13px;
  color: var(--color-error);
}

.form-group.has-error .form-input,
.form-group.has-error .form-textarea {
  border-color: var(--color-error);
}

.form-group.has-error .form-error {
  display: block;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 48px 24px;
  color: var(--color-success);
}

.form-success h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
}

.form-success p {
  font-size: 15px;
  color: var(--color-text-light);
  max-width: 320px;
}

.form-success.visible {
  display: flex;
}

.contact-form.hidden {
  display: none;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-mark {
  width: 32px;
  height: 32px;
  font-size: 16px;
}

.footer-logo .logo-text {
  color: #fff;
  font-size: 18px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-icp a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-icp a:hover {
  color: rgba(255, 255, 255, 0.8);
}

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
