/* CSS Reset & Variables */
:root {
  /* Brand Colors (Approximated from Logo) */
  --primary: #D16666;
  /* Terracotta Red */
  --primary-hover: #b85555;
  --primary-light: #fcebeb;
  --secondary: #66D1A2;
  /* Mint Green */
  --secondary-hover: #52c490;

  /* Neurals */
  --bg-body: #FDFBFB;
  /* Warm White */
  --bg-glass: rgba(255, 255, 255, 0.7);
  --bg-dark: #1E293B;
  --text-main: #1F2937;
  --text-muted: #6B7280;
  --text-light: #F9FAFB;

  /* UI Elements */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
  --shadow-glow: 0 0 20px rgba(209, 102, 102, 0.3);

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utilities */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #E89E9E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(209, 102, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(209, 102, 102, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary-light);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary-light);
  transition: height 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover::after {
  height: 100%;
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.125rem;
}

.btn-xs {
  padding: 6px 12px;
  font-size: 0.875rem;
}

.btn-accept {
  background: var(--secondary);
  color: #fff;
  width: 100%;
  margin-top: 10px;
  border-radius: 4px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 0;
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

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

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

.nav-links a:not(.btn) {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 50% 0%, #FFF5F5 0%, transparent 70%);
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

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

.hero-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-main);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-wrapper {
  position: relative;
  perspective: 1000px;
  animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
  border: 4px solid white;
}

.hero-image:hover {
  transform: rotateY(0) rotateX(0);
}

.hero-image-backdrop {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: var(--primary);
  opacity: 0.1;
  border-radius: var(--radius-md);
  z-index: -1;
  transform: rotateY(-5deg) rotateX(2deg) translateZ(-20px);
}

/* Trusted By */
.trusted-by {
  padding: 40px 0;
  background: #FAFAFA;
  text-align: center;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.trusted-by p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
}

.logos-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  opacity: 0.6;
  font-weight: 700;
  font-size: 1.2rem;

}

/* ISO Badge Section */
/* ISO Badge Section */
.iso-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #FFF5F5 0%, #FAFAFA 100%);
  text-align: center;
  border-top: 1px solid #FFE4E6;
  border-bottom: 1px solid #FFE4E6;
  box-shadow: 0 4px 20px rgba(209, 102, 102, 0.05);
}

.iso-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  border: 1px solid #FEE2E2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

.iso-badge-container:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px -5px rgba(209, 102, 102, 0.2);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  }
  50% {
    box-shadow: 0 15px 35px -5px rgba(209, 102, 102, 0.15);
  }
}

.iso-icon {
  font-size: 2rem;
  color: var(--primary);
  /* Made consistent with brand */
  display: flex;
  align-items: center;
}

.iso-text {
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--text-main) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Features */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.feature-item {
  background: white;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid #F3F4F6;
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 0;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #ECFDF5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: rotate(5deg) scale(1.1);
  background: var(--secondary);
  color: white;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* AI Section */
.ai-section {
  background: var(--bg-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(209, 102, 102, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 0;
}

.ai-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge-ai {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--secondary);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(102, 209, 162, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(102, 209, 162, 0.6);
  }
}

.text-light {
  color: white;
}

.text-light-muted {
  color: #9CA3AF;
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.ai-benefits {
  list-style: none;
  margin-bottom: 40px;
}

.ai-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #E5E7EB;
  opacity: 0;
  animation: fadeInLeft 0.6s ease-out forwards;
}

.ai-benefits li:nth-child(1) { animation-delay: 0.2s; }
.ai-benefits li:nth-child(2) { animation-delay: 0.4s; }
.ai-benefits li:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.check-icon {
  color: var(--secondary);
  font-weight: bold;
}

/* AI Mockup */
.ai-chat-mockup {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.chat-message {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ai-message .avatar {
  background: var(--primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.ai-message .message-text {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 0 12px 12px 12px;
  font-size: 0.9rem;
  color: #F3F4F6;
}

.user-message {
  flex-direction: row-reverse;
}

.user-message .message-text {
  background: var(--secondary);
  color: #064E3B;
  padding: 12px 16px;
  border-radius: 12px 0 12px 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.suggestion-card {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid var(--secondary);
  border-radius: 8px;
  padding: 16px;
  margin-left: 44px;
  margin-top: -8px;
}

.suggestion-card h4 {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.suggestion-card p {
  font-size: 0.8rem;
  color: #9CA3AF;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: typing 1.4s infinite ease-in-out both;
  margin-right: 2px;
}

.typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

/* Compliance */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.standard-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.standard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(209, 102, 102, 0.1), transparent);
  transition: left 0.5s ease;
}

.standard-card:hover::before {
  left: 100%;
}

.standard-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.standard-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.standard-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.roadmap-preview {
  background: #F8FAFC;
  padding: 60px 40px;
  border-radius: var(--radius-md);
  text-align: center;
}

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

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

@media (min-width: 769px) and (max-width: 1024px) {
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.roadmap-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid #E2E8F0;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInScale 0.6s ease-out forwards;
}

.roadmap-card:nth-child(1) { animation-delay: 0.1s; }
.roadmap-card:nth-child(2) { animation-delay: 0.2s; }
.roadmap-card:nth-child(3) { animation-delay: 0.3s; }
.roadmap-card:nth-child(4) { animation-delay: 0.4s; }
.roadmap-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.roadmap-card.available {
  border-left: 4px solid var(--secondary);
}

.roadmap-card.development {
  border-left: 4px solid #F59E0B;
}

.roadmap-status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-available {
  background: #DCFCE7;
  color: #166534;
}

.status-dev {
  background: #FEF3C7;
  color: #D97706;
}

.roadmap-card h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.roadmap-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.roadmap-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #E2E8F0;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #E2E8F0;
  border: 2px solid white;
  box-shadow: 0 0 0 4px #F8FAFC;
}

.completed .step-dot {
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(102, 209, 162, 0.2);
}

.step-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.completed .step-label {
  color: var(--text-main);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  padding: 80px 0 0;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  color: #94a3b8;
  margin-top: 16px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

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

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

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

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 1.2rem;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
}

.footer-logo {
  height: 28px;
  /* filter: brightness(0) invert(1); Removed to show original logo colors */
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Demo Form Styles */
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-group {
  width: 100%;
}

.demo-form input.form-input {
  width: 100%;
  padding: 16px;
  border: 1px solid #D1D5DB;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
}

.demo-form input.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(209, 102, 102, 0.1);
}

.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f1f5f9;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
}

.form-check input[type="checkbox"] {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.privacy-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.privacy-list {
  margin-top: 8px;
  padding-left: 16px;
  list-style-type: disc;
  margin-bottom: 8px;
}

.privacy-list li {
  margin-bottom: 4px;
}

.btn-block {
  width: 100%;
}

/* Legal Pages */
.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  background: #FAFAFA;
}

.legal-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--primary);
}

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
}

.legal-date {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
}

.legal-content {
  background: white;
  padding: 60px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E5E7EB;
}

.legal-section p {
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.legal-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-section li {
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 1rem;
}

.legal-section strong {
  color: var(--text-main);
  font-weight: 600;
}

.legal-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 2px solid var(--primary);
  text-align: center;
}

.legal-footer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.legal-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.legal-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.notice-item {
  background: #F8FAFC;
  padding: 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.notice-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.notice-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.notice-item h3 i {
  color: var(--primary);
}

.notice-item p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.legal-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .legal-content {
    padding: 30px 20px;
  }
  
  .legal-header h1 {
    font-size: 1.75rem;
  }
  
  .legal-section h2 {
    font-size: 1.35rem;
  }
}


/* Responsive */
@media (max-width: 900px) {

  .hero-container,
  .feature-grid,
  .ai-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding-top: 120px;
    text-align: center;
  }

  .hero-image-wrapper {
    margin-top: 20px;
  }

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

  .hero-stats {
    justify-content: center;
  }

  .nav-links {
    display: none;
    /* Mobile menu to be implemented */
  }

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

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

/* Mobile Menu Button - Initial State */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-main);
  margin: 5px 0;
  border-radius: 3px;
}