/* Import Professional Font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

/* CSS Custom Properties - Logo Palette */
:root {
  --moonstone: #69a7b3;
  --black: #000000;
  --white: #fafdfd;
  --azure-web: #d6e3e3;

  /* Semantic color variables */
  --primary-color: var(--moonstone);
  --secondary-color: var(--azure-web);
  --accent-color: var(--moonstone);
  --text-primary: var(--black);
  --text-secondary: #666666;
  --text-muted: #64748b;
  --background-primary: var(--white);
  --background-secondary: var(--azure-web);
  --border-color: var(--azure-web);
  --border-light: #e2e8f0;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-primary);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
}
h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
}
h3 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
}
h4 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.025em;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--moonstone) 0%, var(--black) 100%);
  color: white;
  box-shadow: 0 6px 25px rgba(105, 167, 179, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(105, 167, 179, 0.4);
  background: linear-gradient(135deg, #5a95a1 0%, #1a1a1a 100%);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(105, 167, 179, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(105, 167, 179, 0.3);
}

.btn-large {
  padding: 20px 40px;
  font-size: 1.1rem;
  border-radius: 14px;
}

.btn-loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-loading .btn-text {
  opacity: 0;
}

.btn-loading .btn-loading {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.btn .btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading Animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fa-spinner.fa-spin {
  animation: spin 1s linear infinite;
}

.text-center {
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 253, 253, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(214, 227, 227, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(250, 253, 253, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom-color: rgba(214, 227, 227, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 20px;
}

.nav-logo {
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo img {
  height: 55px;
  max-width: 200px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.nav-logo:hover img {
  filter: brightness(1.1) contrast(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  background: rgba(105, 167, 179, 0.08);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 16px;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--moonstone), var(--azure-web));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 32px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--moonstone) 25%, var(--azure-web) 75%, var(--white) 100%);
  position: relative;
  overflow: hidden;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(105, 167, 179, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(214, 227, 227, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Problem Solution Section */
.problem-solution {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.problem-solution::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(105, 167, 179, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(214, 227, 227, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.problem-solution .section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.problem-solution .section-header h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.problem-solution .section-header p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.7;
}

.problem-solution-grid {
  display: flex;
  gap: 50px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.challenge-section,
.solution-section {
  flex: 1;
  background: white;
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.challenge-section::before,
.solution-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--moonstone), var(--azure-web));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.challenge-section:hover::before,
.solution-section:hover::before {
  opacity: 1;
}

.challenge-section:hover,
.solution-section:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
  border-color: var(--primary-color);
}

.challenge-section h3,
.solution-section h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
  color: var(--text-primary);
  position: relative;
}

.challenge-section .section-subtitle,
.solution-section .section-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.challenge-section ul,
.solution-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.challenge-section li,
.solution-section li {
  padding: 20px 24px 20px 48px;
  position: relative;
  line-height: 1.7;
  font-weight: 500;
  background: #f8fafc;
  border-radius: 12px;
  color: var(--text-primary);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.challenge-section li:hover,
.solution-section li:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

.challenge-section li:hover {
  border-left-color: #dc2626;
}

.solution-section li:hover {
  border-left-color: #059669;
}

.challenge-section li::before {
  content: "✗";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #dc2626;
  font-weight: bold;
  font-size: 16px;
  background: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.solution-section li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #059669;
  font-weight: bold;
  font-size: 16px;
  background: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

/* Process Section */
.process {
  padding: 120px 0;
  background: white;
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 49%, rgba(105, 167, 179, 0.03) 50%, transparent 51%);
  pointer-events: none;
}

.process h2 {
  text-align: center;
  margin-bottom: 80px;
  font-size: 2.75rem;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 50px 30px;
  border-radius: 20px;
  background: white;
  border: 2px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(105, 167, 179, 0.1), rgba(214, 227, 227, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-step:hover::before {
  opacity: 1;
}

.process-step:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--moonstone), var(--azure-web));
  color: white;
  font-size: 1.75rem;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
  box-shadow: 0 8px 25px rgba(105, 167, 179, 0.3);
}

.process-step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
}

.process-step h3 {
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.process-step p {
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.process-tagline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 40px;
}

/* Trusted By Section */
.trusted-by {
  padding: 80px 0;
  background: var(--background-secondary);
}

.trusted-by h2 {
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-primary);
}

.logos-section {
  text-align: center;
  margin-bottom: 60px;
}

.featured-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.media-logos span {
  padding: 20px 40px;
  background: white;
  border-radius: 8px;
  color: var(--text-secondary);
  font-weight: 500;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.media-logos span:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(105, 167, 179, 0.15);
}

.case-study {
  max-width: 800px;
  margin: 0 auto;
}

.case-study-highlight {
  background: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.case-study-highlight h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1.4;
}

.client-quote {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.client-quote blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.client-quote cite {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Who We Are Section */
.who-we-are {
  padding: 100px 0;
  background: white;
}

.who-we-are h2 {
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-primary);
}

.intro-text {
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 60px;
  color: var(--text-secondary);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.credibility-item {
  background: #f8fafc;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.credibility-item h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.credibility-item p {
  color: var(--text-secondary);
}

/* Use Cases Section */
.use-cases {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--azure-web), var(--white));
  position: relative;
}

.use-cases::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(105, 167, 179, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(214, 227, 227, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.use-cases h2 {
  text-align: center;
  margin-bottom: 80px;
  color: var(--text-primary);
  font-size: 2.75rem;
  position: relative;
  z-index: 1;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.use-case-item {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.use-case-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(105, 167, 179, 0.05), rgba(214, 227, 227, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.use-case-item:hover::before {
  opacity: 1;
}

.use-case-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.use-case-icon {
  font-size: 3.5rem;
  margin-bottom: 30px;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.use-case-item:hover .use-case-icon {
  transform: scale(1.1) rotate(-5deg);
}

.use-case-item h4 {
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}

.use-case-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.use-cases-tagline {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Final CTA Section */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--moonstone) 50%, var(--azure-web) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta h2 {
  color: white;
  margin-bottom: 80px;
  font-size: 3rem;
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-form-section h3 {
  color: white;
  margin-bottom: 50px;
  font-size: 2rem;
  font-weight: 600;
}

/* Form Styles */
#contactForm {
  background: rgba(255, 255, 255, 0.1);
  padding: 60px;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

#contactForm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.form-group {
  margin-bottom: 30px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: white;
  font-size: 1rem;
  letter-spacing: 0.025em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(105, 167, 179, 0.3);
  transform: translateY(-2px);
}

.form-group select option {
  background: var(--black);
  color: white;
}

.field-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}

.form-feedback {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}

.form-feedback.success {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-feedback.error {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 4rem 0 2rem;
  border-top: 1px solid #334155;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 50px;
  max-width: 150px;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1);
}

.footer-logo h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
  padding: 4px 0;
  position: relative;
}

.footer-section ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #60a5fa;
  transition: width 0.3s ease;
}

.footer-section ul li a:hover {
  color: #60a5fa;
  transform: translateX(4px);
}

.footer-section ul li a:hover::after {
  width: 100%;
}

.footer-section i {
  margin-right: 0.5rem;
  color: #60a5fa;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(105, 167, 179, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(105, 167, 179, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(105, 167, 179, 0);
  }
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: rgba(250, 253, 253, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2.5rem 0;
    backdrop-filter: blur(20px);
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    padding: 12px 20px;
    margin: 4px 20px;
    border-radius: 12px;
  }

  .hero {
    padding: 140px 0 100px;
  }

  .hero h1 {
    font-size: 2.75rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .problem-solution {
    padding: 100px 0;
  }

  .problem-solution .section-header h2 {
    font-size: 2.25rem;
  }

  .problem-solution .section-header p {
    font-size: 1.15rem;
  }

  .problem-solution-grid {
    flex-direction: column;
    gap: 40px;
  }

  .challenge-section,
  .solution-section {
    padding: 50px 40px;
  }

  .process {
    padding: 100px 0;
  }

  .process h2 {
    font-size: 2.25rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .use-cases {
    padding: 100px 0;
  }

  .use-cases h2 {
    font-size: 2.25rem;
  }

  .use-cases-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .final-cta {
    padding: 100px 0;
  }

  .final-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 60px;
  }

  .cta-form-section h3 {
    font-size: 1.75rem;
  }

  #contactForm {
    padding: 40px 30px;
  }

  .credibility-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 18px 36px;
    font-size: 1rem;
  }

  .problem-solution .section-header h2,
  .process h2,
  .use-cases h2 {
    font-size: 2rem;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .cta-form-section h3 {
    font-size: 1.5rem;
  }

  #contactForm {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .process-step,
  .use-case-item,
  .credibility-item {
    padding: 40px 25px;
  }

  .challenge-section,
  .solution-section {
    padding: 40px 25px;
  }

  .nav-container {
    padding: 1rem 20px;
  }

  .nav-logo img {
    height: 45px;
  }

  .cookie-banner-content {
    padding: 0 10px;
  }

  .cookie-modal-content {
    margin: 10px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating {
    animation: none;
  }
}

/* Focus States */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: 3px solid rgba(105, 167, 179, 0.5);
  outline-offset: 2px;
}

.btn:focus {
  outline-color: rgba(255, 255, 255, 0.5);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(214, 227, 227, 0.3);
  z-index: 10000;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--moonstone), var(--azure-web));
  width: 0%;
  transition: width 0.1s ease;
  border-radius: 0 2px 2px 0;
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  z-index: 10000;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-banner-text h4 {
  margin-bottom: 8px;
  color: var(--primary-color);
  font-size: 1.1em;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.9em;
  line-height: 1.4;
  max-width: 600px;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background: var(--primary-color);
  color: white;
}

.cookie-accept:hover {
  background: #5a95a1;
  transform: translateY(-1px);
}

.cookie-decline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-settings {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.cookie-settings:hover {
  background: var(--primary-color);
  color: white;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal-content {
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  margin: 0;
  color: var(--text-primary);
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.cookie-modal-close:hover {
  background: var(--background-secondary);
}

.cookie-modal-body {
  padding: 24px;
}

.cookie-modal-body > p {
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--background-secondary);
  border-radius: 8px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-category h4 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1em;
}

.cookie-category p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9em;
  line-height: 1.4;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--primary-color);
}

input:focus + .cookie-slider {
  box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

input:disabled + .cookie-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border-light);
  text-align: right;
}

/* Privacy Notice in Footer */
.privacy-notice {
  font-size: 0.8em !important;
  color: var(--text-secondary) !important;
  margin-top: 12px !important;
  line-height: 1.4;
}

.privacy-notice a {
  color: var(--primary-color);
  text-decoration: none;
}

.privacy-notice a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .cookie-banner-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cookie-btn {
    padding: 8px 12px;
    font-size: 0.8em;
  }
  
  .cookie-modal-content {
    margin: 0 10px;
  }
  
  .cookie-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 16px;
  }
  
  .cookie-banner-actions {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 0;
  }
}

/* Legal Document Modal */
.legal-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.legal-modal-content {
  background: white;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.legal-modal-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.legal-modal-header h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.4em;
}

.legal-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.legal-modal-close:hover {
  background: var(--background-secondary);
}

.legal-modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.legal-modal-text {
  color: var(--text-primary);
  line-height: 1.6;
}

.legal-modal-text h4 {
  color: var(--primary-color);
  margin: 24px 0 12px 0;
  font-size: 1.1em;
}

.legal-modal-text h4:first-child {
  margin-top: 0;
}

.legal-modal-text p {
  margin-bottom: 16px;
}

.legal-modal-text ul {
  margin: 12px 0 16px 20px;
}

.legal-modal-text li {
  margin-bottom: 8px;
}

.legal-modal-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-modal-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border-light);
  text-align: right;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .legal-modal-content {
    margin: 10px;
    max-height: 95vh;
  }
  
  .legal-modal-header,
  .legal-modal-body,
  .legal-modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Newsletter Signup Styles */
.newsletter-signup {
  margin-top: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Secondary CTA Styles */
.secondary-cta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.secondary-cta p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

/* Responsive Newsletter */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form .btn {
    align-self: stretch;
  }
}

/* Events Section Styles */
.events {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--azure-web) 100%);
  position: relative;
}

.events::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(105, 167, 179, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(214, 227, 227, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.events .container {
  position: relative;
  z-index: 1;
}

.events .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.events .section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: 700;
}

.events .section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Events Preview Styles */
.events-preview {
  margin-bottom: 60px;
}

.event-preview-item {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.event-preview-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(105, 167, 179, 0.05), rgba(214, 227, 227, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.event-preview-item:hover::before {
  opacity: 1;
}

.event-preview-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.event-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.event-preview-date {
  position: relative;
  z-index: 1;
}

.date-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--moonstone), var(--azure-web));
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.025em;
}

.event-preview-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.event-preview-location i {
  color: var(--primary-color);
  font-size: 1rem;
}

.event-preview-item h3 {
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  line-height: 1.3;
}

.event-preview-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.event-preview-cta {
  position: relative;
  z-index: 1;
}

/* Events Footer */
.events-footer {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
}

.events-footer p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
}

/* Events Page Specific Styles */
.events-page {
  padding: 80px 0;
  background: white;
}

.events-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.event-item {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.event-item.featured {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, rgba(105, 167, 179, 0.02), rgba(214, 227, 227, 0.02));
}

.event-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(105, 167, 179, 0.05), rgba(214, 227, 227, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.event-item:hover::before {
  opacity: 1;
}

.event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.event-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.event-date {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-type {
  display: inline-block;
  background: rgba(105, 167, 179, 0.1);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.event-location i {
  color: var(--primary-color);
}

.event-content {
  position: relative;
  z-index: 1;
}

.event-content h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.event-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-style: italic;
  line-height: 1.4;
}

.event-description p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.event-description strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Event Highlights */
.event-highlights {
  margin: 40px 0;
}

.event-highlights h4 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  font-weight: 600;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.highlight-item {
  background: rgba(105, 167, 179, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(105, 167, 179, 0.1);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(105, 167, 179, 0.08);
  border-color: rgba(105, 167, 179, 0.2);
  transform: translateY(-3px);
}

.highlight-item h5 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.highlight-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Event Quote */
.event-quote {
  background: linear-gradient(135deg, rgba(105, 167, 179, 0.08), rgba(214, 227, 227, 0.08));
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  margin: 40px 0;
}

.event-quote blockquote {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
  margin: 0 0 15px 0;
  position: relative;
}

.event-quote blockquote::before {
  content: "\201C";
  font-size: 3rem;
  color: var(--primary-color);
  position: absolute;
  left: -20px;
  top: -10px;
  line-height: 1;
}

.event-quote cite {
  display: block;
  text-align: right;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: normal;
  font-weight: 500;
}

/* Event Topics */
.event-topics {
  margin: 40px 0;
}

.event-topics h4 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.event-topics ul {
  list-style: none;
  padding: 0;
}

.event-topics li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(214, 227, 227, 0.3);
}

.event-topics li:last-child {
  border-bottom: none;
}

.event-topics li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 12px;
}

/* About Event */
.about-event {
  background: rgba(214, 227, 227, 0.3);
  padding: 30px;
  border-radius: 15px;
  margin: 40px 0;
}

.about-event h4 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.about-event p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Upcoming Events */
.upcoming-events {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(105, 167, 179, 0.05), rgba(214, 227, 227, 0.05));
  border-radius: 20px;
  border: 1px solid rgba(105, 167, 179, 0.1);
}

.upcoming-events h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.upcoming-note {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-style: italic;
}

.event-cta {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.event-cta h4 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.event-cta p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.event-cta ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.event-cta li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

.event-cta li::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 8px;
}

/* Events Page Responsive */
@media (max-width: 768px) {
  .events {
    padding: 80px 0;
  }
  
  .events .section-header h2 {
    font-size: 2.25rem;
  }
  
  .event-preview-item,
  .event-item {
    padding: 30px 25px;
  }
  
  .event-preview-header,
  .event-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .event-content h3 {
    font-size: 1.5rem;
  }
  
  .event-subtitle {
    font-size: 1.1rem;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .event-quote {
    padding: 20px;
  }
  
  .event-quote blockquote::before {
    left: -10px;
    top: -5px;
  }
  
  .upcoming-events {
    padding: 30px 25px;
  }
  
  .event-cta {
    padding: 25px 20px;
  }
}

/* What Is Asset Tokenization Page Styles */

/* Definition Section */
.definition {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
}

.definition .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.definition .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.definition-content .intro-text {
  font-size: 1.3rem;
  color: var(--text-primary);
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.definition-content > p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 50px;
}

.definition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.definition-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--background-primary);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.definition-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.definition-icon {
  font-size: 3rem;
  margin-bottom: 25px;
}

.definition-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.definition-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Why It Matters Section */
.why-matters {
  padding: 120px 0;
  background: var(--background-primary);
}

.why-matters .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-matters .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.matters-content .intro-text {
  font-size: 1.3rem;
  color: var(--text-primary);
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 50px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--primary-color), #5a9aa6);
  border-radius: 15px;
  color: white;
  box-shadow: 0 10px 30px rgba(105, 167, 179, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(105, 167, 179, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.stat-item p {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.95;
}

.matters-content .conclusion-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Enterprise Cases Section */
.enterprise-cases {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
}

.enterprise-cases .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.enterprise-cases .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.case-item {
  background: var(--background-primary);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.case-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.case-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.case-year {
  background: var(--primary-color);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

.case-amount {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.case-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
}

.case-details {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.case-details li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.5;
}

.case-details li::before {
  content: "→";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 8px;
}

.featured-case {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--primary-color), #5a9aa6);
  color: white;
  border: none;
}

.featured-case .case-header h3,
.featured-case p,
.featured-case .case-details li {
  color: white;
}

.featured-case .case-details li::before {
  color: rgba(255, 255, 255, 0.8);
}

/* EarthBerries Focus Section */
.earthberries-focus {
  padding: 120px 0;
  background: var(--background-primary);
}

.earthberries-focus .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.earthberries-focus .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.focus-content .intro-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.focus-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.focus-item {
  text-align: center;
  padding: 35px 25px;
  background: linear-gradient(135deg, var(--background-secondary), #c8d6d6);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.focus-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.focus-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.focus-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.focus-exclusions {
  margin-top: 60px;
}

.exclusion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.exclusion-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--background-primary);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.exclusion-item:hover {
  background: var(--primary-color);
  color: white;
}

.exclusion-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.exclusion-item:hover h4 {
  color: white;
}

.exclusion-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.05rem;
}

.exclusion-item:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Styles for Tokenization Page */
@media (max-width: 768px) {
  .definition,
  .why-matters,
  .enterprise-cases,
  .earthberries-focus {
    padding: 80px 0;
  }

  .definition .section-header h2,
  .why-matters .section-header h2,
  .enterprise-cases .section-header h2,
  .earthberries-focus .section-header h2 {
    font-size: 2.25rem;
  }

  .definition-content .intro-text,
  .matters-content .intro-text {
    font-size: 1.15rem;
  }

  .definition-grid,
  .stats-grid,
  .focus-areas {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cases-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .featured-case {
    grid-column: span 1;
  }

  .case-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .exclusion-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .case-item,
  .definition-item,
  .focus-item,
  .exclusion-item {
    padding: 25px 20px;
  }
}
