:root {
  --bg: #040510;
  --bg-elevated: rgba(24, 30, 58, 0.75);
  --bg-card: rgba(13, 21, 43, 0.85);
  --accent: #4d8dff;
  --accent-secondary: #62ffe5;
  --text-primary: #f4f7ff;
  --text-secondary: #a6b0d6;
  --border: rgba(109, 132, 204, 0.35);
  color-scheme: dark;
}

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(23, 38, 111, 0.45), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(53, 119, 190, 0.35), transparent 45%),
    var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

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

a:hover,
a:focus {
  color: var(--accent-secondary);
}

[data-animate] {
  --reveal-ty: 0px;
  --reveal-scale: 1;
  --reveal-rotate: 0deg;
  position: relative;
  opacity: 1;
  transform: translate3d(0, var(--reveal-ty), 0) scale(var(--reveal-scale))
    rotate(var(--reveal-rotate));
  transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-animate].reveal-hidden {
  opacity: 0;
  --reveal-ty: 34px;
  --reveal-scale: 0.94;
  pointer-events: none;
}

[data-animate="fade-in"].reveal-hidden {
  --reveal-ty: 0px;
  --reveal-scale: 0.92;
}

[data-animate="fade-in"] {
  transition: transform 1.1s cubic-bezier(0.2, 0.65, 0.3, 1.2), opacity 0.9s ease;
}

[data-animate="fade-up"] {
  --reveal-ty: 0px;
}

[data-animate="fade-up"].reveal-hidden {
  --reveal-ty: 28px;
}

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.page-content {
  padding-top: 8rem;
}

/* About Page Styles */
.about-content {
  padding: 6rem 0;
}

.about-section {
  margin-bottom: 5rem;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.about-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
  margin: 1rem auto 0;
  border-radius: 2px;
}

.about-section .info-item {
  display: grid;
}

.section-description {
  font-size: 1.2rem;
  color: #b8c5d6;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.info-item {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.6));
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  border-color: rgba(98, 255, 229, 0.4);
  box-shadow: 0 10px 30px rgba(98, 255, 229, 0.1);
}

.info-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.info-item p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
}

/* Business Grid */
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.business-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.7));
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.business-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
}

.business-card:hover {
  transform: translateY(-8px);
  border-color: rgba(98, 255, 229, 0.4);
  box-shadow: 0 15px 40px rgba(98, 255, 229, 0.15);
}

.business-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.business-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.business-card p {
  color: #b8c5d6;
  line-height: 1.6;
  font-size: 1rem;
}

/* Tech Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-category {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.6));
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.tech-category:hover {
  transform: translateY(-3px);
  border-color: rgba(98, 255, 229, 0.4);
}

.tech-category h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.tech-tag {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
  color: #0b1227;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(98, 255, 229, 0.3);
}

/* Philosophy Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.philosophy-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.7));
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.philosophy-card:hover {
  transform: translateY(-5px);
  border-color: rgba(98, 255, 229, 0.4);
  box-shadow: 0 10px 30px rgba(98, 255, 229, 0.1);
}

.philosophy-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.philosophy-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.philosophy-card p {
  color: #b8c5d6;
  line-height: 1.6;
  font-size: 1rem;
}

/* Map Section */
.map-container {
  margin: 3rem 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(98, 255, 229, 0.2);
}

.address-info {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.6));
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 2rem;
}

.address-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.address-info p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.access-details {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.access-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #b8c5d6;
  font-size: 1rem;
}

.access-icon {
  font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.5), rgba(22, 33, 62, 0.3));
  border-radius: 2rem;
  padding: 4rem 2rem;
  margin-top: 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-item {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.6));
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  border-color: rgba(98, 255, 229, 0.4);
  box-shadow: 0 8px 25px rgba(98, 255, 229, 0.1);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-item small {
  color: #b8c5d6;
  font-size: 0.9rem;
}

.contact-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(98, 255, 229, 0.1), rgba(77, 141, 255, 0.1));
  border-radius: 1rem;
  border: 1px solid rgba(98, 255, 229, 0.2);
}

.cta-text {
  color: #ffffff;
  font-size: 1.2rem;
  margin: 0;
}

.cta-text strong {
  color: var(--accent);
}

/* Privacy & Terms Page Styles */
.privacy-content,
.terms-content {
  padding: 6rem 0;
}

.privacy-section,
.terms-section {
  margin-bottom: 4rem;
}

.privacy-section h2,
.terms-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.privacy-section h2::after,
.terms-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
  margin: 1rem auto 0;
  border-radius: 2px;
}

.policy-meta {
  background: linear-gradient(135deg, rgba(98, 255, 229, 0.1), rgba(77, 141, 255, 0.1));
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.policy-meta p {
  color: #b8c5d6;
  margin: 0.5rem 0;
  font-size: 1rem;
}

.policy-card,
.terms-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.6));
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.policy-card:hover,
.terms-card:hover {
  transform: translateY(-3px);
  border-color: rgba(98, 255, 229, 0.4);
  box-shadow: 0 10px 30px rgba(98, 255, 229, 0.1);
}

.policy-card h3,
.terms-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.policy-card h3:first-child,
.terms-card h3:first-child {
  margin-top: 0;
}

.policy-list,
.terms-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.policy-list li,
.terms-list li {
  color: #b8c5d6;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(98, 255, 229, 0.1);
  position: relative;
  padding-left: 1.5rem;
}

.policy-list li::before,
.terms-list li::before {
  content: '•';
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Purpose Grid */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.purpose-item {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.4));
  border: 1px solid rgba(98, 255, 229, 0.15);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.purpose-item:hover {
  transform: translateY(-5px);
  border-color: rgba(98, 255, 229, 0.3);
}

.purpose-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.purpose-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.purpose-item p {
  color: #b8c5d6;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Security Grid */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.security-item {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.4));
  border: 1px solid rgba(98, 255, 229, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.security-item:hover {
  transform: translateY(-3px);
  border-color: rgba(98, 255, 229, 0.3);
}

.security-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.security-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.security-item p {
  color: #b8c5d6;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-method {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.4));
  border: 1px solid rgba(98, 255, 229, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  border-color: rgba(98, 255, 229, 0.3);
}

.method-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-method h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-method p {
  color: var(--accent);
  font-weight: 500;
  font-size: 1rem;
}

/* Cookie Types */
.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.cookie-type {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.4));
  border: 1px solid rgba(98, 255, 229, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.cookie-type:hover {
  transform: translateY(-3px);
  border-color: rgba(98, 255, 229, 0.3);
}

.cookie-type h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.cookie-type p {
  color: #b8c5d6;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Registration Requirements */
.registration-requirements {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(98, 255, 229, 0.05), rgba(77, 141, 255, 0.05));
  border-radius: 1rem;
  border: 1px solid rgba(98, 255, 229, 0.1);
}

/* Security Guidelines */
.security-guidelines {
  margin-top: 2rem;
}

.guideline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.guideline-item {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.4));
  border: 1px solid rgba(98, 255, 229, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.guideline-item:hover {
  transform: translateY(-3px);
  border-color: rgba(98, 255, 229, 0.3);
}

.guideline-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.guideline-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.guideline-item p {
  color: #b8c5d6;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Prohibited Categories */
.prohibited-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.prohibited-category {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.4));
  border: 1px solid rgba(98, 255, 229, 0.15);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.prohibited-category:hover {
  transform: translateY(-3px);
  border-color: rgba(98, 255, 229, 0.3);
}

.prohibited-category h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Restriction Reasons */
.restriction-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.reason-item {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.4));
  border: 1px solid rgba(98, 255, 229, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.reason-item:hover {
  transform: translateY(-3px);
  border-color: rgba(98, 255, 229, 0.3);
}

.reason-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.reason-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.reason-item p {
  color: #b8c5d6;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Withdrawal Process */
.withdrawal-process {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(98, 255, 229, 0.05), rgba(77, 141, 255, 0.05));
  border-radius: 1rem;
  border: 1px solid rgba(98, 255, 229, 0.1);
}

.process-steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.process-steps li {
  counter-increment: step-counter;
  color: #b8c5d6;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(98, 255, 229, 0.1);
  position: relative;
  padding-left: 3rem;
}

.process-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 1rem;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
  color: #0b1227;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Disclaimer Items */
.disclaimer-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.disclaimer-item {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.4));
  border: 1px solid rgba(98, 255, 229, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.disclaimer-item:hover {
  transform: translateY(-3px);
  border-color: rgba(98, 255, 229, 0.3);
}

.disclaimer-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.disclaimer-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.disclaimer-item p {
  color: #b8c5d6;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Change Notification */
.change-notification {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(98, 255, 229, 0.05), rgba(77, 141, 255, 0.05));
  border-radius: 1rem;
  border: 1px solid rgba(98, 255, 229, 0.1);
}

/* Privacy Link */
.privacy-link {
  text-align: center;
  margin-top: 2rem;
}

.privacy-link-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
  color: #0b1227;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.privacy-link-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(98, 255, 229, 0.3);
}

/* Contact Info */
.contact-info {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.6));
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 1.5rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.4));
  border-radius: 0.8rem;
  border: 1px solid rgba(98, 255, 229, 0.1);
}

.detail-label {
  font-weight: 600;
  color: var(--accent);
  min-width: 80px;
}

.contact-detail span:last-child {
  color: #ffffff;
}

/* Legal Info */
.legal-info {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(98, 255, 229, 0.05), rgba(77, 141, 255, 0.05));
  border-radius: 1rem;
  border: 1px solid rgba(98, 255, 229, 0.1);
}

.legal-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}

.legal-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.legal-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.4));
  border-radius: 0.8rem;
  border: 1px solid rgba(98, 255, 229, 0.1);
}

/* Contact Form Styles */
.contact-content {
  padding: 6rem 0;
}

.contact-section {
  margin-bottom: 5rem;
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.contact-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section-description {
  font-size: 1.2rem;
  color: #b8c5d6;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Form */
.contact-form-container {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.6));
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 2rem;
  padding: 3rem;
  margin-top: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-group label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.7));
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 0.8rem;
  padding: 1rem 1.2rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(98, 255, 229, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b8c5d6;
}

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

/* Checkbox Styles */
.checkbox-group {
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  color: #b8c5d6;
  font-size: 1rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(98, 255, 229, 0.3);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.7));
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
  border-color: var(--accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0b1227;
  font-weight: bold;
  font-size: 12px;
}

.checkbox-label a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.checkbox-label a:hover {
  color: var(--accent-secondary);
}

/* Form Actions */
.form-actions {
  text-align: center;
  margin-top: 2rem;
}

.submit-btn {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
  color: #0b1227;
  border: none;
  border-radius: 2rem;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 200px;
  justify-content: center;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(98, 255, 229, 0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Contact Info Grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-info-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.6));
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(98, 255, 229, 0.4);
  box-shadow: 0 10px 30px rgba(98, 255, 229, 0.1);
}

.contact-info-card .contact-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.contact-info-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-info-card p {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-info-card small {
  color: #b8c5d6;
  font-size: 0.9rem;
}

/* FAQ Styles */
.faq-container {
  margin-top: 3rem;
}

.faq-item {
  overflow: hidden;
  transition: all 0.3s ease;
}



.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(98, 255, 229, 0.05), rgba(77, 141, 255, 0.05));
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  display: none;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(98, 255, 229, 0.1);
}

.faq-answer p {
  color: #b8c5d6;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about-content,
  .privacy-content,
  .terms-content,
  .contact-content {
    padding: 4rem 0;
  }
  
  .about-section,
  .privacy-section,
  .terms-section {
    margin-bottom: 3rem;
  }
  
  .about-section h2,
  .privacy-section h2,
  .terms-section h2 {
    font-size: 2rem;
  }
  
  .info-grid,
  .business-grid,
  .tech-grid,
  .philosophy-grid,
  .contact-grid,
  .purpose-grid,
  .security-grid,
  .guideline-grid,
  .prohibited-categories,
  .restriction-reasons,
  .disclaimer-items {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .business-card,
  .philosophy-card,
  .policy-card,
  .terms-card {
    padding: 2rem;
  }
  
  .contact-section {
    padding: 3rem 1.5rem;
  }
  
  .map-container {
    margin: 2rem 0;
  }
  
  .access-details {
    flex-direction: column;
    gap: 1rem;
  }
  
  .address-info {
    padding: 1.5rem;
  }
  
  .contact-details,
  .legal-details {
    grid-template-columns: 1fr;
  }
  
  .contact-detail,
  .legal-detail {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .detail-label {
    min-width: auto;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .faq-question {
    padding: 1rem 1.5rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem 1rem;
  }
}

/* Flash Messages */
.flash-messages {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.flash-message {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.9));
  border: 1px solid rgba(98, 255, 229, 0.3);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  animation: slideInRight 0.3s ease;
}

.flash-success {
  border-color: rgba(34, 197, 94, 0.5);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 33, 62, 0.9));
}

.flash-error {
  border-color: rgba(239, 68, 68, 0.5);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(22, 33, 62, 0.9));
}

.flash-text {
  color: #ffffff;
  font-weight: 500;
  flex: 1;
}

.flash-close {
  background: none;
  border: none;
  color: #b8c5d6;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* FAQ Section Styles */
.faq {
  padding: 6rem 0 0 0;
  /* background: linear-gradient(135deg, rgba(11, 18, 39, 0.8), rgba(26, 26, 46, 0.6)); */
}

.faq-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.faq-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.faq-category {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.6));
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.faq-category:hover {
  transform: translateY(-5px);
  border-color: rgba(98, 255, 229, 0.4);
  box-shadow: 0 15px 40px rgba(98, 255, 229, 0.1);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  /* padding-bottom: 1.5rem; */
  /* border-bottom: 1px solid rgba(98, 255, 229, 0.2); */
}

.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 4rem; */
  /* height: 4rem; */
  /* background: linear-gradient(135deg, rgba(98, 255, 229, 0.1), rgba(77, 141, 255, 0.1)); */
  /* border-radius: 1rem; */
  /* border: 1px solid rgba(98, 255, 229, 0.2); */
}

.category-icon svg {
  width: 2.1rem;
  height: 2.1rem;
}

.category-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {

  overflow: hidden;
}


.faq-link {
  display: block;
  padding: 0 3rem 0 0;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
}

/* .faq-link:hover {
  background: linear-gradient(135deg, rgba(98, 255, 229, 0.05), rgba(77, 141, 255, 0.05));
} */

.faq-link h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.faq-link p {
  color: #b8c5d6;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.faq-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-arrow svg {
  width: 1.1rem;
  height: 1.1rem;
}

.faq-link:hover .faq-arrow {
  transform: translateX(3px);
}

/* FAQ Detail Page Styles */
.faq-detail-content {
  padding: 6rem 0;
}

.faq-detail-section {
  margin-bottom: 4rem;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.6));
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 1.5rem;
  padding: 3rem;
}

.faq-detail-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(98, 255, 229, 0.3);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.tech-item {
  background: linear-gradient(135deg, rgba(98, 255, 229, 0.1), rgba(77, 141, 255, 0.1));
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 0.8rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-2px);
  border-color: rgba(98, 255, 229, 0.4);
  box-shadow: 0 5px 15px rgba(98, 255, 229, 0.2);
}

.tech-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

.examples-list, .info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.example-item, .info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.4));
  border: 1px solid rgba(98, 255, 229, 0.1);
  border-radius: 0.8rem;
  transition: all 0.3s ease;
}

.example-item:hover, .info-item:hover {
  border-color: rgba(98, 255, 229, 0.3);
  transform: translateX(5px);
}

.example-icon, .info-icon {
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.example-text, .info-text {
  color: #b8c5d6;
  line-height: 1.5;
}

.faq-actions {
  margin-top: 4rem;
  text-align: center;
}

.action-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
  .faq {
    padding: 4rem 0;
  }
  
  .faq-categories {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .faq-category {
    padding: 2rem;
  }
  
  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .category-icon {
    width: 3rem;
    height: 3rem;
  }

  .category-icon svg {
    width: 1.6rem;
    height: 1.6rem;
  }
  
  .faq-link {
    padding: 1.2rem;
  }
  
  .faq-arrow {
    top: 1.2rem;
    right: 1.2rem;
  }
  
  /* FAQ Detail Mobile */
  .faq-detail-content {
    padding: 4rem 0;
  }
  
  .faq-detail-section {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-top: 1px solid rgba(98, 255, 229, 0.2);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  padding: 1.5rem 0;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-consent-text h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.cookie-consent-text p {
  color: #b8c5d6;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  max-width: 600px;
}

.cookie-consent-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent));
  color: #0b1227;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(98, 255, 229, 0.3);
}

.cookie-btn-decline {
  background: transparent;
  color: #b8c5d6;
  border: 1px solid rgba(184, 197, 214, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(184, 197, 214, 0.1);
  border-color: rgba(184, 197, 214, 0.5);
}

.cookie-btn-close {
  background: transparent;
  color: #b8c5d6;
  border: 1px solid rgba(184, 197, 214, 0.3);
  position: relative;
}

.cookie-btn-close:hover {
  background: rgba(184, 197, 214, 0.1);
  border-color: rgba(184, 197, 214, 0.5);
}

.cookie-btn-close::before {
  content: '×';
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: bold;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .cookie-consent-actions {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    max-width: 150px;
  }
}

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-secondary);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 1.2;
  margin: 0 0 0.75em;
}

h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
  font-weight: 600;
  font-size: 3.8rem;
}

h2 {
  font-size: clamp(1.75rem, 2.2vw + 1rem, 2.75rem);
  font-weight: 600;
}

h3 {
  font-size: 1rem;
  font-weight: 500;
}

main {
  position: relative;
  top: -1.8rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  /* background: rgba(4, 5, 16, 0.75); */
  backdrop-filter: blur(14px);
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-mark {
  /* width: 2.5rem; */
  height: 2.5rem;
  object-fit: contain;
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  display: none;
}

.primary-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.primary-nav a {
  position: relative;
  padding-bottom: 0.25rem;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  transition: transform 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 15, 35, 0.6);
  box-shadow: 0 12px 28px rgba(8, 12, 28, 0.35);
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.language-option.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #041025;
  box-shadow: 0 8px 20px rgba(77, 141, 255, 0.35);
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 15, 32, 0.75);
  box-shadow: 0 12px 28px rgba(6, 10, 24, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.mobile-menu-bar {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobile-menu-toggle .mobile-menu-bar + .mobile-menu-bar {
  margin-top: 0.35rem;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-bar:first-child {
  transform: translateY(0.35rem) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-bar:last-child {
  transform: translateY(-0.35rem) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-nav.is-open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 18, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-nav.is-open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 82%);
  background: linear-gradient(165deg, rgba(10, 16, 36, 0.95), rgba(5, 9, 22, 0.9));
  border-left: 1px solid rgba(98, 255, 229, 0.12);
  box-shadow: -25px 0 60px rgba(2, 6, 18, 0.45);
  padding: 1.5rem;
  display: grid;
  gap: 2rem;
  transform: translateX(12%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.24, 0.8, 0.25, 1), opacity 0.3s ease;
}

.mobile-nav.is-open .mobile-nav-panel {
  transform: translateX(0);
  opacity: 1;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-brand {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-secondary);
}

.mobile-menu-close {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 15, 32, 0.65);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  transform: rotate(4deg);
}

.mobile-menu-close span {
  position: absolute;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
}

.mobile-menu-close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav-links {
  display: grid;
  gap: 1.25rem;
  font-size: 1.05rem;
}

.mobile-nav-links a {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-nav-footer {
  margin-top: auto;
  display: grid;
  gap: 1.2rem;
}

.mobile-nav-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mobile-nav-languages .language-option {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: none;
  padding: 0.45rem 0.75rem;
}

.mobile-nav-cta {
  width: 100%;
  justify-content: center;
}

.mobile-nav-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.mobile-nav-meta a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(98, 255, 229, 0.5);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 500;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cta.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #041025;
  border: none;
  box-shadow: 0 10px 35px rgba(77, 141, 255, 0.3);
  animation: cta-pulse 6s ease-in-out infinite;
}

.cta.secondary {
  background: transparent;
}

.cta.tertiary {
  background: rgba(77, 141, 255, 0.15);
  border: 1px solid rgba(77, 141, 255, 0.35);
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero {
  padding: clamp(5rem, 10vw, 7rem) 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(98, 255, 229, 0.25), transparent 55%);
  pointer-events: none;
  animation: hero-aurora 24s linear infinite;
}

.hero::after {
  background: radial-gradient(circle at 80% 10%, rgba(77, 141, 255, 0.2), transparent 50%);
  mix-blend-mode: screen;
  animation: hero-aurora-reverse 26s linear infinite;
}

.hero-inner {
  display: grid;
  gap: 4rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero-copy .lead {
  font-size: 1.05rem;
  max-width: 38rem;
  color: var(--text-secondary);
}

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

.hero-contact {
  display: grid;
  gap: 0.6rem;
  margin: 0;
}

.hero-contact dt {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-contact dd {
  margin: 0;
  color: var(--text-secondary);
}

.hero-visual {
  position: relative;
  min-height: 320px;
  padding: 2rem;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
}

.orb-1 {
  width: 180px;
  height: 180px;
  top: 10%;
  left: 12%;
  background: radial-gradient(circle at 30% 30%, rgba(77, 141, 255, 0.8), rgba(14, 35, 87, 0));
  animation: float-orb-one 18s ease-in-out infinite;
}

.orb-2 {
  width: 260px;
  height: 260px;
  bottom: 5%;
  right: 12%;
  background: radial-gradient(circle at 70% 70%, rgba(98, 255, 229, 0.7), rgba(10, 31, 60, 0));
  animation: float-orb-two 22s ease-in-out infinite;
}

.data-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(12, 20, 46, 0.9), rgba(9, 22, 45, 0.6));
  border: 1px solid rgba(98, 255, 229, 0.18);
  box-shadow: 0 30px 60px rgba(8, 15, 39, 0.55);
  width: 290px;
  height: 290px;
  z-index: 2;
  /* overflow: hidden; */
  backdrop-filter: blur(10px);
  animation: card-glow 8s ease-in-out infinite;
}

/* .data-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(98, 255, 229, 0.35), transparent 70%);
  opacity: 0.6;
  animation: pulse-glimmer 10s ease-in-out infinite;
} */

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

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

.data-card h2 {
  font-size: 2.5rem;
  padding-top: 30px;
}

.business {
  padding-bottom: 6rem;
}
.globe {
  position: absolute;
  inset: auto 20% 8% auto;
  width: 200px;
  aspect-ratio: 1;
  background: conic-gradient(from 180deg, rgba(98, 255, 229, 0.65), rgba(77, 141, 255, 0.75), rgba(6, 15, 40, 0.2));
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.8;
  animation: orbit-spin 26s linear infinite;
}

.statement {
  padding: 4.5rem 0;
}

.statement-inner {
  /* max-width: 820px; */
  text-align: center;
}
.statement-inner p {
  max-width: 600px; 
  margin: 0 auto;
}
.section-lead {
  margin: 0.5rem 0 0;
  /* max-width: 52ch; */
  color: var(--text-secondary);
  font-size: 1rem;
}

.statement p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77, 141, 255, 0.15), transparent 65%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border: 1px solid rgba(98, 255, 229, 0.4);
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
}

.service-card p {
  position: relative;
  z-index: 1;
  color: var(--text-secondary);
  margin: 0;
}

.service-card .service-arrow {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.service-card .service-arrow svg {
  width: 1.2rem;
  height: 1.2rem;
}

.service-card:hover .service-arrow,
.service-card:focus-within .service-arrow {
  opacity: 1;
  color: var(--accent-secondary);
  transform: translateX(6px);
}

.contact {
  padding: 4.5rem 0;
}

.contact-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: 3rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(17, 33, 72, 0.85), rgba(39, 71, 125, 0.45));
  border: 1px solid rgba(115, 152, 232, 0.25);
  box-shadow: 0 25px 60px rgba(5, 11, 30, 0.4);
}

.contact dl {
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.contact dt {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  /* font-size: 0.85rem; */
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.contact dd {
  margin: 0.25rem 0 0;
  color: var(--text-secondary);
  text-align: left;
}

.contact-list {
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.contact-item {
  display: grid;
  gap: 0.4rem;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* width: 1.8rem;
  height: 1.8rem; */
  /* border-radius: 0.6rem; */
  /* background: rgba(98, 255, 229, 0.15); */
  /* border: 1px solid rgba(98, 255, 229, 0.25); */
  margin-bottom: 0;
}

.contact-icon svg {
  width: 1rem;
  height: 1rem;
}

.recruit {
  padding: 4rem 0 5rem;
}

.recruitment-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  margin-bottom: 2.5rem;
}

.recruit-card {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 1.4rem;
  border-radius: 1rem;
  background: rgba(13, 21, 43, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-weight: 500;
  transition: border 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}

.recruit-card h3 {
  margin: 1.2rem 0 0 0;
}

.recruit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto;
  /* border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(98, 255, 229, 0.12), rgba(77, 141, 255, 0.12));
  border: 1px solid rgba(98, 255, 229, 0.18); */
}

.recruit-icon svg {
  /* width: 1.6rem; */
  height: 3rem;
}

.recruit-card:hover,
.recruit-card:focus-within {
  border-color: rgba(77, 141, 255, 0.4);
  transform: translateY(-4px);
}

.recruit-card .service-arrow {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.recruit-card .service-arrow svg {
  width: 1.05rem;
  height: 1.05rem;
}

.recruit-card:hover .service-arrow,
.recruit-card:focus-within .service-arrow {
  opacity: 1;
  transform: translateX(5px);
  color: var(--accent-secondary);
}

.align-center {
  text-align: center;
}

.site-footer {
  background: linear-gradient(135deg, #0b1227, #1a1a2e);
  border-top: 1px solid rgba(98, 255, 229, 0.2);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  color: #b8c5d6;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Brand Section */
.footer-brand-section {
  margin-bottom: 2rem;
}

.footer-branding {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.footer-logo-link:hover {
  transform: scale(1.05);
}

.footer-logo-mark {
  /* width: 4rem; */
  height: 4rem;
  object-fit: contain;
}

.footer-brand-info {
  flex: 1;
}

.footer-brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.footer-brand-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #b8c5d6;
  margin: 0;
  max-width: 600px;
}

/* Navigation */
.footer-navigation {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(98, 255, 229, 0.1);
  /* border-bottom: 1px solid rgba(98, 255, 229, 0.1); */
  padding: 2rem 0 0 0;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: 2.5rem;
}

.footer-links a {
  color: #b8c5d6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.footer-links a:hover {
  color: var(--accent);
  background: rgba(98, 255, 229, 0.1);
  transform: translateY(-2px);
}

/* Copyright */
.footer-copyright {
  text-align: center;
  padding: 0 0 1rem 0;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: #8a9ba8;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0 2rem;
  }
  
  .footer-branding {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-logo-mark {
    /* width: 3rem; */
    height: 3rem;
  }
  
  .footer-brand-name {
    font-size: 1.5rem;
  }
  
  .footer-brand-description {
    font-size: 0.95rem;
  }
  
  .footer-links {
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links a {
    padding: 0.75rem 1.5rem;
  }
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(11, 18, 39, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--accent), #62ffb3);
  border-radius: 4px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #62ffb3, var(--accent));
  box-shadow: 0 0 10px rgba(98, 255, 179, 0.3);
}

::-webkit-scrollbar-corner {
  background: rgba(11, 18, 39, 0.1);
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) rgba(11, 18, 39, 0.1);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar for specific elements */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) rgba(11, 18, 39, 0.1);
}

.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(11, 18, 39, 0.05);
  border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--accent), #62ffb3);
  border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #62ffb3, var(--accent));
}

/* CTA Button Icons */
.cta-icon {
  width: 14px;
  height: 11px;
  margin-left: 0.5rem;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.cta:hover .cta-icon {
  transform: translateX(2px);
}

/* Footer Link Icons */
.footer-link-icon {
  width: 12px;
  height: 9px;
  margin-left: 0.4rem;
  fill: currentColor;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-links a:hover .footer-link-icon {
  opacity: 1;
  transform: translateX(2px);
}

/* Project Detail Page - Enhanced Content Styles */

/* Metrics Section */
.detail-metrics {
  background: linear-gradient(135deg, rgba(11, 18, 39, 0.8), rgba(26, 26, 46, 0.9));
  border-radius: 1.5rem;
  padding: 3rem 0;
  margin: 2rem 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.metrics-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.metrics-category h3 {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metrics-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.75rem;
  padding: 1rem;
  border-left: 3px solid var(--accent);
}

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-weight: 500;
  color: var(--text-primary);
}

.metric-value {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.metric-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* Architecture Section */
.detail-architecture {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(11, 18, 39, 0.9));
  border-radius: 1.5rem;
  padding: 3rem 0;
  margin: 2rem 0;
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.architecture-component {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.architecture-component:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(98, 255, 229, 0.1);
}

.architecture-component h3 {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.architecture-component p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.component-technologies,
.component-features {
  margin-bottom: 1.5rem;
}

.component-technologies h4,
.component-features h4 {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: rgba(98, 255, 229, 0.1);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(98, 255, 229, 0.3);
}

.component-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.component-features li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.component-features li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* Timeline Section */
.detail-timeline {
  background: linear-gradient(135deg, rgba(11, 18, 39, 0.8), rgba(26, 26, 46, 0.9));
  border-radius: 1.5rem;
  padding: 3rem 0;
  margin: 2rem 0;
}

.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-phase {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin-left: 4rem;
  position: relative;
  backdrop-filter: blur(10px);
}

.timeline-phase::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 2rem;
  width: 1rem;
  height: 1rem;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
}

.phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.phase-header h3 {
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.phase-duration {
  background: rgba(98, 255, 229, 0.1);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(98, 255, 229, 0.3);
}

.phase-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.phase-deliverables h4 {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phase-deliverables ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phase-deliverables li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.phase-deliverables li::before {
  content: "✓";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Team Section */
.detail-team {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(11, 18, 39, 0.9));
  border-radius: 1.5rem;
  padding: 3rem 0;
  margin: 2rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-role {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(98, 255, 229, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.team-role:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(98, 255, 229, 0.1);
}

.role-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.role-header h3 {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.role-count {
  background: rgba(98, 255, 229, 0.1);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(98, 255, 229, 0.3);
}

.role-responsibilities h4 {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.role-responsibilities ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.role-responsibilities li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.role-responsibilities li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* Responsive Design for Enhanced Content */
@media (max-width: 768px) {
  .metrics-grid,
  .architecture-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-container::before {
    left: 1rem;
  }
  
  .timeline-phase {
    margin-left: 2rem;
  }
  
  .timeline-phase::before {
    left: -1.5rem;
  }
  
  .phase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .role-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .container {
    width: min(100%, calc(100% - 1.75rem));
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-copy .lead {
    margin: 0 auto;
    font-size: 0.95rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .hero-contact {
    justify-items: center;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .project-card {
    padding: 1.75rem;
  }

  .project-card-highlight {
    text-align: center;
  }

  .project-card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .project-card-meta {
    padding-top: 1.5rem;
  }

  .project-metrics {
    gap: 0.6rem;
  }

  .project-metrics li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .project-tech {
    justify-content: center;
  }

  .contact-inner {
    padding: 2.2rem 1.75rem;
  }

  .detail-section-inner {
    width: min(100%, calc(100% - 1.75rem));
  }
}

/* Project Card Links */
.project-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.project-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.project-card-link:hover .project-card {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(4, 10, 28, 0.6);
}

.project-card-link:hover .project-icon-core {
  transform: scale(1.1);
}

.project-card-link:hover .project-icon-ring {
  animation: pulse 2s infinite;
}


/* Project Card PNG Icons */
.project-card .project-icon-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.project-card-link:hover .project-icon-image {
  transform: scale(1.05);
}



/* Project Detail Page Icons */
.project-icon-image {
  width: 180px;
  height: 180px;
  object-fit: contain;
  /* border-radius: 1.5rem; */
  /* background: rgba(255, 255, 255); */
  /* padding: 1.5rem; */
  /* border: 2px solid rgba(98, 255, 229, 0.3); */
  transition: all 0.3s ease;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); */
}




.detail-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

/* Responsive adjustments for project icons */
@media (max-width: 768px) {
  .project-icon-image {
    width: 150px;
    height: 150px;
    padding: 1rem;
  }
  
  .detail-icon {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .project-icon-image {
    width: 120px;
    height: 120px;
    padding: 0.75rem;
  }
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(98, 255, 229, 0.1);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(98, 255, 229, 0.2);
}

.social-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
  transform: scale(1.1);
}

.social-text {
  font-size: 0.875rem;
  font-weight: 500;
}

.twitter-link {
  color: #1da1f2;
}

.twitter-link:hover {
  color: #1da1f2;
  background: rgba(29, 161, 242, 0.1);
  border-color: #1da1f2;
}

/* Responsive adjustments for social links */
@media (max-width: 768px) {
  .footer-social {
    margin-top: 1rem;
  }
  
  .social-link {
    padding: 0.625rem 1rem;
    font-size: 0.8rem;
  }
  
  .social-icon {
    width: 18px;
    height: 18px;
  }
}

/* Default Icon Styles */
.default-icon {
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem;
  /* background: rgba(255, 255, 255, 0.05); */
  /* padding: 1.5rem; */
  /* border: 2px solid rgba(98, 255, 229, 0.3); */
  /* transition: all 0.3s ease; */
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); */
}



.default-icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.default-icon:hover svg {
  transform: scale(1.05);
}

/* Responsive adjustments for default icons */
@media (max-width: 768px) {
  .default-icon {
    width: 150px;
    height: 150px;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .default-icon {
    width: 120px;
    height: 120px;
    padding: 0.75rem;
  }
}

@media (max-width: 900px) {
  .primary-nav {
    display: none;
  }

  .hero {
    padding-top: 4rem;
  }

  .projects-intro {
    text-align: center;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }



  .project-card-meta {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 0;
    padding-top: 1.75rem;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-actions .cta,
  .header-actions .social-link,
  .language-switch {
    display: none;
  }

  .project-info-grid {
    grid-template-columns: 1fr;
  }

  .project-info-aside {
    grid-template-columns: 1fr;
  }

  .detail-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .detail-hero-copy {
    display: grid;
    justify-items: center;
  }

  .detail-icon {
    margin: 0 auto;
  }

  .detail-cta-card {
    padding: 2.25rem;
  }
}

.projects {
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(98, 255, 229, 0.08), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(77, 141, 255, 0.1), transparent 60%);
  pointer-events: none;
  opacity: 0.9;
  animation: project-aurora 28s linear infinite;
}

.projects-intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.projects-title h2 {
  margin-bottom: 0.5rem;
}

.project-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.project-card {
  position: relative;
  /* display: grid; */
  /* grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); */
  gap: 2rem;
  padding: clamp(2rem, 2.5vw + 1.5rem, 3rem);
  border-radius: 1.5rem;
  background: linear-gradient(165deg, rgba(15, 24, 52, 0.92), rgba(11, 19, 44, 0.6));
  border: 1px solid rgba(98, 255, 229, 0.14);
  box-shadow: 0 25px 60px rgba(6, 10, 24, 0.45);
  overflow: hidden;
  backdrop-filter: blur(14px);
  --cursor-x: 50%;
  --cursor-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-translate: 0px;
  transform-style: preserve-3d;
  transform: translate3d(0, calc(var(--reveal-ty, 0px) + var(--tilt-translate)), 0)
    rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(var(--reveal-scale, 1));
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.project-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.project-icon {
  display: flex;
  align-items: center;
  justify-content: center;


  font-size: 1.8rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77, 141, 255, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(98, 255, 229, 0.32), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.project-card:hover::before,
.project-card:focus-within::before {
  opacity: 1;
}

.project-card:hover::after,
.project-card:focus-within::after {
  opacity: 1;
}

.project-card-highlight {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.2rem;
  transition: transform 0.45s ease;
}

.project-icon {
  position: relative;

  display: block;
  /* place-items: center; */
  margin-bottom: 0.35rem;
}

.project-icon-core {
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.9rem;
  background: var(--icon-bg, linear-gradient(135deg, rgba(77, 141, 255, 0.8), rgba(98, 255, 229, 0.65)));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 10px 22px rgba(32, 85, 140, 0.45);
  overflow: hidden;
  animation: icon-float 8s ease-in-out infinite;
}

.project-icon-core::before,
.project-icon-core::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: inherit;
  background: var(--icon-overlay1, radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 75%));
  background-repeat: var(--icon-overlay1-repeat, no-repeat);
  background-size: var(--icon-overlay1-size, auto);
  background-position: center;
  opacity: 0.8;
  mix-blend-mode: screen;
}

.project-icon-core::after {
  inset: 32%;
  background: var(--icon-overlay2, radial-gradient(circle at 70% 70%, rgba(9, 14, 35, 0.25), transparent 65%));
  background-repeat: var(--icon-overlay2-repeat, no-repeat);
  background-size: var(--icon-overlay2-size, auto);
  background-position: center;
  opacity: 0.7;
  mix-blend-mode: multiply;
}

.project-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(98, 255, 229, 0.2);
  mix-blend-mode: screen;
  animation: ring-pulse 10s ease-in-out infinite;
}

.project-icon-ring.ring-1 {
  transform: scale(1.2);
  animation-delay: -2s;
}

.project-icon-ring.ring-2 {
  transform: scale(1.4);
  border-color: rgba(77, 141, 255, 0.14);
  animation-duration: 12s;
}

.icon-globe-network {
  --icon-bg: conic-gradient(from 210deg, rgba(77, 141, 255, 0.9), rgba(98, 255, 229, 0.6), rgba(11, 24, 52, 0.85));
  --icon-overlay1: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.8), transparent 75%);
  --icon-overlay2: linear-gradient(120deg, rgba(6, 16, 35, 0.35), rgba(255, 255, 255, 0.25));
}

.icon-ai-spark {
  --icon-bg: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.88), rgba(98, 255, 229, 0.55), rgba(30, 52, 120, 0.9));
  --icon-overlay1: conic-gradient(from 0deg, rgba(255, 255, 255, 0.6), transparent 140deg, rgba(98, 255, 229, 0.75), transparent 320deg);
  --icon-overlay2: radial-gradient(circle at 50% 50%, rgba(10, 18, 46, 0.35), transparent 65%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22), 0 18px 32px rgba(44, 110, 156, 0.35);
}

.icon-analytics-grid {
  --icon-bg: linear-gradient(145deg, rgba(77, 141, 255, 0.85), rgba(31, 46, 88, 0.95));
  --icon-overlay1: linear-gradient(90deg, rgba(98, 255, 229, 0.35) 1px, transparent 1px),
    linear-gradient(0deg, rgba(98, 255, 229, 0.28) 1px, transparent 1px);
  --icon-overlay1-repeat: repeat;
  --icon-overlay1-size: 16px 16px;
  --icon-overlay2: radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.6), transparent 60%);
}
.project-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-secondary);
}

.project-card-highlight p {
  margin: 0;
  color: var(--text-secondary);
}

.project-card-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  align-content: start;
  transition: transform 0.45s ease;
}

.project-metrics {
  display: grid;
  gap: .2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-metrics li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.metric-label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.metric-value {
  font-size: 0.95rem;
  font-weight: 600;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(77, 141, 255, 0.18);
  border: 1px solid rgba(77, 141, 255, 0.35);
  color: var(--text-primary);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card:hover,
.project-card:focus-within {
  border-color: rgba(98, 255, 229, 0.4);
  box-shadow: 0 35px 80px rgba(6, 10, 24, 0.55);
  --tilt-translate: -8px;
}

.project-card:hover .project-card-highlight,
.project-card:focus-within .project-card-highlight {
  transform: translateY(-4px);
}

.project-card:hover .project-card-meta,
.project-card:focus-within .project-card-meta {
  transform: translateY(-2px);
}

.detail-main {
  position: relative;
  z-index: 0;
}

.detail-hero {
  padding: clamp(4.5rem, 7vw, 6.5rem) 0 3.5rem;
  position: relative;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(98, 255, 229, 0.12), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(77, 141, 255, 0.18), transparent 45%);
  pointer-events: none;
  opacity: 0.85;
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.detail-breadcrumb a {
  color: var(--accent-secondary);
}

.detail-hero-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
}

.detail-hero-copy {
  display: grid;
  gap: 0;
  align-content: start;
}

.detail-hero-copy .cta {
  justify-self: start;
}

.detail-hero-visual {
  place-items: center;
}

.detail-icon .project-icon-core {
  width: 4.2rem;
  height: 4.2rem;
}

.detail-hero-copy h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
}

.detail-tagline {
  font-size: 1.05rem;
  color: var(--accent-secondary);
  margin-bottom: 1rem;
}

.detail-summary {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 60ch;
  margin-bottom: 1.8rem;
}

.detail-section {
  padding: 3.5rem 0;
}

.detail-section-inner {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.detail-section-header {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.detail-overview p {
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.detail-stats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.detail-stat-card {
  padding: 1.6rem;
  background: linear-gradient(155deg, rgba(15, 24, 52, 0.85), rgba(11, 19, 44, 0.7));
  border: 1px solid rgba(98, 255, 229, 0.18);
  border-radius: 1.25rem;
  display: grid;
  gap: 0.35rem;
  text-align: left;
  box-shadow: 0 20px 45px rgba(5, 12, 30, 0.45);
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent-secondary);
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.detail-pillars-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.detail-pillar-card {
  padding: 1.8rem;
  border-radius: 1.25rem;
  background: rgba(13, 21, 43, 0.72);
  border: 1px solid rgba(77, 141, 255, 0.2);
  box-shadow: 0 18px 38px rgba(6, 12, 32, 0.45);
}

.detail-pillar-card h3 {
  margin-bottom: 0.75rem;
}

.detail-pillar-card p {
  margin: 0;
  color: var(--text-secondary);
}

.detail-lists .detail-list-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.detail-list-card {
  padding: 1.8rem;
  border-radius: 1.25rem;
  background: rgba(10, 18, 38, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(4, 10, 28, 0.4);
}

.detail-list-card h3 {
  margin-bottom: 1rem;
}

.detail-list-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-secondary);
  display: grid;
  gap: 0.65rem;
}

.detail-list-card li::marker {
  color: var(--accent-secondary);
}

.detail-cta {
  padding: 4rem 0;
}

.detail-cta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(17, 33, 72, 0.92), rgba(39, 71, 125, 0.55));
  border: 1px solid rgba(115, 152, 232, 0.35);
  box-shadow: 0 30px 70px rgba(5, 11, 30, 0.45);
}

.detail-cta-card p {
  color: var(--text-secondary);
}

.detail-related-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.related-card {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 2rem;
  border-radius: 1.4rem;
  background: linear-gradient(155deg, rgba(13, 21, 43, 0.8), rgba(9, 15, 33, 0.72));
  border: 1px solid rgba(98, 255, 229, 0.14);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover,
.related-card:focus {
  border-color: rgba(98, 255, 229, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(6, 10, 24, 0.45);
}

.related-card h3 {
  margin-bottom: 0.75rem;
}

.related-card p {
  margin: 0;
  color: var(--text-secondary);
}

.related-card .service-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.35);
  opacity: 0;
  transition: transform 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.related-card .service-arrow svg {
  width: 1.2rem;
  height: 1.2rem;
}

.related-card:hover .service-arrow,
.related-card:focus .service-arrow {
  opacity: 1;
  transform: translateX(6px);
  color: var(--accent-secondary);
}

.related-icon {
  margin-bottom: 1rem;
  display: inline-flex;
  position: relative;
}

.related-icon .project-icon-core {
  width: 2.8rem;
  height: 2.8rem;
}

.related-icon-image {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border: 1px solid rgba(98, 255, 229, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.related-card:hover .related-icon-image {
  transform: scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(98, 255, 229, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.project-info-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: start;
}

.project-info-main {
  display: grid;
  gap: 1.2rem;
}

.project-info-main p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.project-snapshot {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1.2rem;
  background: rgba(9, 17, 36, 0.72);
  border: 1px solid rgba(77, 141, 255, 0.18);
}

.snapshot-item {
  display: grid;
  gap: 0.35rem;
}

.snapshot-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-secondary);
}

.project-info-aside {
  display: grid;
  gap: 1.5rem;
}

.quick-facts,
.project-tags {
  padding: 1.5rem;
  border-radius: 1.2rem;
  background: rgba(6, 12, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 36px rgba(4, 10, 24, 0.35);
}

.quick-facts h3,
.project-tags h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-facts ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.quick-facts li::marker {
  color: var(--accent-secondary);
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.stat-value .stat-unit {
  font-size: 0.6em;
  margin-left: 0.15em;
}

.stat-description {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.bilingual-heading {
  display: grid;
  gap: 0.15rem;
}

.bilingual-text {
  display: grid;
  gap: 0.35rem;
}

.lang-ja,
.lang-en {
  display: block;
}

.lang-en {
  color: var(--text-secondary);
  font-size: 0.92em;
  letter-spacing: 0.01em;
}

.detail-timeline {
  display: grid;
  gap: 1.5rem;
}

.timeline-label {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-secondary);
}

.timeline-item {
  padding: 1.6rem;
  border-radius: 1.25rem;
  background: rgba(10, 18, 38, 0.72);
  border: 1px solid rgba(77, 141, 255, 0.18);
  box-shadow: 0 18px 40px rgba(4, 10, 28, 0.4);
  display: grid;
  gap: 0.65rem;
}

.kpi-breakdown {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.metric-card {
  padding: 1.6rem;
  border-radius: 1.2rem;
  background: rgba(8, 15, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(6, 12, 32, 0.35);
  display: grid;
  gap: 0.75rem;
}

.metric-card h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.module-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.module-card {
  padding: 1.8rem;
  border-radius: 1.2rem;
  background: rgba(9, 17, 36, 0.78);
  border: 1px solid rgba(98, 255, 229, 0.16);
  box-shadow: 0 20px 40px rgba(7, 14, 32, 0.4);
  display: grid;
  gap: 1rem;
}

.module-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.module-card ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.module-card li::marker {
  color: var(--accent);
}

.persona-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.persona-card {
  padding: 1.8rem;
  border-radius: 1.25rem;
  background: rgba(7, 12, 28, 0.78);
  border: 1px solid rgba(77, 141, 255, 0.22);
  box-shadow: 0 22px 44px rgba(5, 10, 26, 0.45);
  display: grid;
  gap: 0.85rem;
}

.persona-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.persona-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.persona-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.persona-card li::marker {
  color: var(--accent-secondary);
}

.admin-main {
  padding-bottom: 6rem;
}

.admin-stats {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.admin-stat-card {
  padding: 1.5rem;
  border-radius: 1.2rem;
  background: rgba(5, 12, 28, 0.8);
  border: 1px solid rgba(77, 141, 255, 0.18);
  box-shadow: 0 18px 36px rgba(4, 10, 24, 0.35);
  display: grid;
  gap: 0.4rem;
}

.admin-stat-value {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent-secondary);
}

.admin-stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.admin-message-list {
  display: grid;
  gap: 1.5rem;
}

.admin-message-card {
  padding: 1.8rem;
  border-radius: 1.4rem;
  background: rgba(8, 15, 32, 0.85);
  border: 1px solid rgba(98, 255, 229, 0.16);
  box-shadow: 0 24px 45px rgba(6, 12, 32, 0.45);
  display: grid;
  gap: 1.2rem;
}

.admin-message-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.admin-message-meta {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: start;
}

.admin-message-date {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.admin-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(98, 255, 229, 0.16);
  border: 1px solid rgba(98, 255, 229, 0.35);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-secondary);
}

.admin-badge-muted {
  background: rgba(77, 141, 255, 0.12);
  border-color: rgba(77, 141, 255, 0.28);
  color: rgba(255, 255, 255, 0.68);
}

.admin-badge-delete {
  background: rgba(255, 99, 99, 0.15);
  border-color: rgba(255, 99, 99, 0.35);
  color: #ff6b6b;
  cursor: pointer;
  transition: all 0.3s ease;
}

.admin-badge-delete:hover {
  background: rgba(255, 99, 99, 0.25);
  border-color: rgba(255, 99, 99, 0.5);
  transform: scale(1.05);
}

.admin-actions {
  margin-top: 2rem;
  text-align: center;
}

.admin-monthly-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.admin-month-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(5, 12, 28, 0.8);
  border: 1px solid rgba(77, 141, 255, 0.18);
  text-align: center;
  transition: all 0.3s ease;
}

.admin-month-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(4, 10, 24, 0.35);
}

.month-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.month-count {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-secondary);
}

.admin-message-body p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.admin-message-footer {
  display: grid;
  gap: 0.65rem;
}

.admin-message-person {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.admin-message-person strong {
  font-size: 1rem;
}

.admin-contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.admin-contact-meta a {
  color: var(--accent-secondary);
}

.admin-ua {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  word-break: break-word;
}

.admin-empty {
  padding: 3rem;
  border-radius: 1.4rem;
  background: rgba(8, 15, 32, 0.72);
  border: 1px dashed rgba(98, 255, 229, 0.25);
  text-align: center;
  display: grid;
  gap: 1rem;
}

.admin-empty h3 {
  margin: 0;
  font-size: 1.4rem;
}

.admin-empty p {
  margin: 0;
  color: var(--text-secondary);
}

.admin-nav {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(5, 12, 28, 0.6);
  border-radius: 1rem;
  border: 1px solid rgba(77, 141, 255, 0.18);
}

.admin-nav-link {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: rgba(77, 141, 255, 0.1);
  border: 1px solid rgba(77, 141, 255, 0.2);
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.admin-nav-link:hover {
  background: rgba(77, 141, 255, 0.2);
  border-color: rgba(77, 141, 255, 0.4);
  color: var(--accent-secondary);
  transform: translateY(-1px);
}

.admin-nav-link.active {
  background: rgba(98, 255, 229, 0.15);
  border-color: rgba(98, 255, 229, 0.3);
  color: var(--accent-secondary);
}

.admin-logout {
  background: rgba(255, 99, 99, 0.1) !important;
  border-color: rgba(255, 99, 99, 0.2) !important;
  color: #ff6b6b !important;
}

.admin-logout:hover {
  background: rgba(255, 99, 99, 0.2) !important;
  border-color: rgba(255, 99, 99, 0.4) !important;
  color: #ff5252 !important;
}

/* Admin Login Styles */
.admin-login-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(5, 12, 28, 0.8);
  border-radius: 1.5rem;
  border: 1px solid rgba(77, 141, 255, 0.18);
  box-shadow: 0 24px 45px rgba(6, 12, 32, 0.45);
}

.login-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-label {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-input {
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(77, 141, 255, 0.2);
  background: rgba(8, 15, 32, 0.6);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(98, 255, 229, 0.1);
  background: rgba(8, 15, 32, 0.8);
}

.form-actions {
  margin-top: 1rem;
}

.login-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.login-info {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(77, 141, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(77, 141, 255, 0.15);
}

.login-info h3 {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  color: var(--accent-secondary);
}

.credential-info {
  margin-bottom: 1rem;
}

.credential-info p {
  margin: 0.5rem 0;
  font-family: 'Courier New', monospace;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(77, 141, 255, 0.2);
}

.security-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0.85rem 0;
  }

  .hero {
    padding-bottom: 4rem;
  }

  .hero-inner {
    gap: 2.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .statement,
  .contact,
  .recruit {
    padding: 3.5rem 0;
  }

  .contact-inner {
    padding: 2rem;
  }

  .detail-hero {
    padding: 4rem 0 2.5rem;
  }

  .detail-breadcrumb {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .detail-section {
    padding: 2.5rem 0;
  }

  .project-snapshot,
  .quick-facts,
  .project-tags,
  .metric-card,
  .module-card,
  .persona-card {
    padding: 1.35rem;
  }

  .tag-grid {
    justify-content: center;
  }

  .admin-message-card {
    padding: 1.35rem;
  }

  .admin-message-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .detail-cta-card {
    flex-direction: column;
    align-items: stretch;
  }

  .detail-cta-card .cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3.5rem 0 2.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 6vw + 1.5rem, 2.8rem);
  }

  .hero-copy .lead {
    font-size: 0.9rem;
  }

  .hero-ctas .cta {
    width: 100%;
  }

  .project-card {
    padding: 1.5rem;
  }

  .contact-inner {
    padding: 1.8rem 1.4rem;
  }

  .admin-stat-card {
    padding: 1.25rem;
  }
}

@keyframes float-orb-one {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-14px, 20px, 0) scale(1.08);
  }
}

@keyframes float-orb-two {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  40% {
    transform: translate3d(18px, -16px, 0) scale(1.05);
  }
  70% {
    transform: translate3d(-12px, 12px, 0) scale(1.12);
  }
}

@keyframes card-glow {
  0%,
  100% {
    box-shadow: 0 30px 60px rgba(8, 15, 39, 0.55);
  }
  50% {
    box-shadow: 0 32px 75px rgba(12, 30, 68, 0.65);
  }
}

@keyframes pulse-glimmer {
  0%,
  100% {
    transform: rotate(0deg);
    opacity: 0.45;
  }
  50% {
    transform: rotate(12deg);
    opacity: 0.75;
  }
}

@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-aurora {
  0% {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.1) translate3d(-18px, 12px, 0);
  }
  100% {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
}

@keyframes hero-aurora-reverse {
  0% {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.12) translate3d(14px, -16px, 0);
  }
  100% {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
}

@keyframes project-aurora {
  0% {
    transform: translate3d(-20px, 0, 0);
  }
  50% {
    transform: translate3d(20px, -10px, 0);
  }
  100% {
    transform: translate3d(-20px, 0, 0);
  }
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 10px 35px rgba(77, 141, 255, 0.3);
  }
  50% {
    box-shadow: 0 14px 42px rgba(98, 255, 229, 0.35);
  }
}

/* About, Privacy, Terms Pages */
.about-content,
.privacy-content,
.terms-content {
  padding: 4rem 0;
}

.about-section,
.privacy-section,
.terms-section {
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(15, 24, 52, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-section h2,
.privacy-section h2,
.terms-section h2 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.about-section h3,
.privacy-section h3,
.terms-section h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.company-info {
  margin-top: 2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.info-item {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(11, 19, 44, 0.6);
  border: 1px solid rgba(98, 255, 229, 0.1);
}

.info-item h3 {
  color: var(--accent-secondary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.info-item p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.strength-item {
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(77, 141, 255, 0.1), rgba(98, 255, 229, 0.05));
  border: 1px solid rgba(98, 255, 229, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(98, 255, 229, 0.2);
}

.strength-item h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.strength-item p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.privacy-section ul,
.terms-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.privacy-section li,
.terms-section li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .info-grid,
  .strengths-grid {
    grid-template-columns: 1fr;
  }
  
  .about-section,
  .privacy-section,
  .terms-section {
    padding: 1.5rem;
  }
}

@keyframes icon-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes ring-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1.2);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.28);
  }
}
