/* ==========================================================================
   Base
   ========================================================================== */

:root {
  /* Color System - Analogous Color Scheme */
  --primary-color: #3a56d4;
  --primary-light: #657be1;
  --primary-dark: #2a3fa0;
  
  --secondary-color: #4dc4ff;
  --secondary-light: #75d3ff;
  --secondary-dark: #2e9bd3;
  
  --tertiary-color: #6c42c5;
  --tertiary-light: #8a68dd;
  --tertiary-dark: #4e2f8f;
  
  --accent-color: #ff5e7d;
  --accent-light: #ff8ca2;
  --accent-dark: #d43a59;
  
  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9fe;
  --light-gray: #e1e5f2;
  --mid-gray: #b0b7c9;
  --dark-gray: #5a6271;
  --darker-gray: #353b47;
  --off-black: #1e222a;
  --black: #121418;
  
  /* Neomorphism Shadow Settings */
  --nm-shadow-small: 4px 4px 8px rgba(14, 21, 47, 0.2), -4px -4px 8px rgba(255, 255, 255, 0.7);
  --nm-shadow-medium: 8px 8px 16px rgba(14, 21, 47, 0.2), -8px -8px 16px rgba(255, 255, 255, 0.7);
  --nm-shadow-large: 12px 12px 24px rgba(14, 21, 47, 0.2), -12px -12px 24px rgba(255, 255, 255, 0.7);
  --nm-shadow-inset: inset 4px 4px 8px rgba(14, 21, 47, 0.2), inset -4px -4px 8px rgba(255, 255, 255, 0.7);
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Merriweather', serif;
  
  /* Layout */
  --container-max-width: 1200px;
  --container-padding: 1.5rem;
  --section-spacing: 6rem;
  
  /* Border Radius */
  --radius-small: 8px;
  --radius-medium: 12px;
  --radius-large: 20px;
  --radius-xl: 30px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  font-size: 62.5%; /* 10px */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--off-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--darker-gray);
}

h1 {
  font-size: 4.8rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 3.6rem;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 2rem;
}

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

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

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

ul, ol {
  padding-left: 2rem;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

section {
  padding: 5rem 0;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

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

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

/* ==========================================================================
   Components
   ========================================================================== */

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--primary-dark);
}

.section-title::after {
  content: '';
  display: block;
  width: 8rem;
  height: 0.4rem;
  background: var(--accent-color);
  margin: 1.5rem auto 0;
  border-radius: var(--radius-small);
}

.section-subtitle {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 4rem;
  color: var(--dark-gray);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn, 
button, 
input[type='submit'] {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.6rem;
  padding: 1.2rem 2.5rem;
  border-radius: var(--radius-medium);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(58, 86, 212, 0.3);
}

.primary-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(58, 86, 212, 0.4);
}

.primary-btn:active {
  transform: translateY(-1px);
}

.secondary-btn {
  background-color: var(--secondary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(77, 196, 255, 0.3);
}

.secondary-btn:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(77, 196, 255, 0.4);
}

.secondary-btn:active {
  transform: translateY(-1px);
}

.submit-btn {
  background-color: var(--accent-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 94, 125, 0.3);
  width: 100%;
}

.submit-btn:hover {
  background-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 94, 125, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Cards */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--white);
  border-radius: var(--radius-medium);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  box-shadow: var(--nm-shadow-medium);
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-large);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
  margin: 0 auto;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-content h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.card-content p {
  margin-bottom: 2rem;
  color: var(--dark-gray);
}

.card-content .btn {
  margin-top: auto;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-medium);
  padding: 1.5rem 0;
}

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

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--primary-color);
  text-decoration: none;
}

.logo a {
  color: var(--primary-color);
  text-decoration: none;
}

.logo h1 {
  font-size: 2.4rem;
  margin: 0;
}

.navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation li {
  margin-left: 3rem;
}

.navigation a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--darker-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.navigation a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

.navigation a:hover {
  color: var(--primary-color);
}

.navigation a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all var(--transition-medium);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 17rem 0 12rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(42, 63, 160, 0.85) 0%, rgba(108, 66, 197, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 5.2rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--white);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 5rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-medium);
  transition: transform var(--transition-medium);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 1.4rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
  background-color: var(--off-white);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

/* ==========================================================================
   History Section
   ========================================================================== */

.history-section {
  background-color: var(--white);
  position: relative;
}

.history-content {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-bottom: 5rem;
}

.history-image {
  flex: 0 0 45%;
}

.history-image img {
  border-radius: var(--radius-medium);
  box-shadow: var(--nm-shadow-medium);
  width: 100%;
  object-fit: cover;
}

.history-text {
  flex: 1;
}

.history-text h3 {
  color: var(--primary-dark);
  margin-bottom: 2rem;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 8rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--light-gray);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 18%;
  text-align: center;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 5px rgba(58, 86, 212, 0.2);
}

.timeline-content {
  padding-top: 40px;
}

.timeline-content h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.timeline-content p {
  font-size: 1.4rem;
  color: var(--dark-gray);
}

/* ==========================================================================
   Case Studies Section
   ========================================================================== */

.case-studies-section {
  background-color: var(--off-white);
  position: relative;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  width: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 1.4rem;
  color: var(--dark-gray);
  margin-top: 0.5rem;
}

/* ==========================================================================
   Resources Section
   ========================================================================== */

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

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.resource-card {
  background-color: var(--white);
  border-radius: var(--radius-medium);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  box-shadow: var(--nm-shadow-small);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-medium);
}

.resource-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.resource-card .card-image {
  height: 200px;
}

.resource-card .card-content {
  padding: 2rem;
  flex-grow: 1;
}

.resource-card h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.resource-card p {
  font-size: 1.4rem;
  color: var(--dark-gray);
}

/* ==========================================================================
   Behind the Scenes Section
   ========================================================================== */

.behind-scenes-section {
  background-color: var(--off-white);
}

.scenes-content {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-bottom: 5rem;
}

.scenes-text {
  flex: 1;
}

.scenes-image {
  flex: 0 0 45%;
}

.scenes-image img {
  border-radius: var(--radius-medium);
  box-shadow: var(--nm-shadow-medium);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(58, 86, 212, 0.3);
}

.step h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.step p {
  font-size: 1.4rem;
  color: var(--dark-gray);
}

/* ==========================================================================
   Press Section
   ========================================================================== */

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

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.press-card {
  background-color: var(--white);
  border-radius: var(--radius-medium);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  box-shadow: var(--nm-shadow-small);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.press-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-medium);
}

.press-card .card-image {
  height: 200px;
  width: 100%;
}

.press-card .card-content {
  padding: 2rem;
  flex-grow: 1;
}

.press-card h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.press-card p {
  font-size: 1.5rem;
  color: var(--dark-gray);
  font-style: italic;
}

.press-card .date {
  font-size: 1.4rem;
  color: var(--mid-gray);
  margin-top: 1.5rem;
}

/* ==========================================================================
   Webinars Section
   ========================================================================== */

.webinars-section {
  background-color: var(--off-white);
}

.webinars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.webinar-card {
  background-color: var(--white);
  border-radius: var(--radius-medium);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  box-shadow: var(--nm-shadow-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.webinar-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-large);
}

.webinar-card .card-image {
  height: 225px;
  width: 100%;
}

.webinar-card .card-content {
  padding: 2.5rem;
  flex-grow: 1;
  position: relative;
}

.webinar-date {
  position: absolute;
  top: -30px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: var(--radius-small);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 5px 15px rgba(255, 94, 125, 0.3);
}

.webinar-date .day {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.webinar-date .month {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.webinar-card h3 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  padding-right: 70px;
}

.webinar-card p {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.webinar-card .btn {
  align-self: center;
}

/* ==========================================================================
   Sustainability Section
   ========================================================================== */

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

.sustainability-content {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.sustainability-image {
  flex: 0 0 45%;
}

.sustainability-image img {
  border-radius: var(--radius-medium);
  box-shadow: var(--nm-shadow-medium);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.sustainability-text {
  flex: 1;
}

.sustainability-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

.sustainability-stats .stat-card {
  background-color: var(--primary-light);
  padding: 2rem;
  border-radius: var(--radius-medium);
  flex: 1;
  margin: 0 1rem;
  box-shadow: var(--nm-shadow-small);
}

.sustainability-stats .stat-number {
  color: var(--white);
  font-size: 3.2rem;
}

.sustainability-stats .stat-text {
  color: var(--white);
  font-size: 1.3rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
  background-color: var(--off-white);
}

.contact-content {
  display: flex;
  gap: 5rem;
  margin-top: 5rem;
}

.contact-form-container {
  flex: 0 0 55%;
}

.contact-form {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--nm-shadow-medium);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--darker-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-small);
  font-family: var(--font-body);
  font-size: 1.6rem;
  color: var(--dark-gray);
  background-color: var(--off-white);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(58, 86, 212, 0.2);
}

.contact-info {
  flex: 1;
}

.info-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--nm-shadow-medium);
  margin-bottom: 3rem;
}

.info-card h3 {
  color: var(--primary-dark);
  margin-bottom: 2rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.info-card .icon {
  margin-right: 1.5rem;
  font-size: 2rem;
}

.map-container {
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--nm-shadow-medium);
  height: 300px;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background-color: var(--off-black);
  color: var(--light-gray);
  padding: 6rem 0 2rem;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-logo {
  flex: 0 0 300px;
}

.footer-logo h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.footer-logo p {
  color: var(--mid-gray);
}

.footer-links {
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.links-column {
  min-width: 160px;
}

.links-column h3 {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.links-column ul {
  list-style: none;
  padding: 0;
}

.links-column li {
  margin-bottom: 1rem;
}

.links-column a {
  color: var(--mid-gray);
  transition: color var(--transition-fast);
  font-size: 1.5rem;
}

.links-column a:hover {
  color: var(--white);
}

.social-links li {
  display: flex;
}

.social-links a {
  position: relative;
  padding-left: 1.5rem;
}

.social-links a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.social-links a:hover:before {
  transform: translateY(-50%) scale(1.5);
  background-color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--mid-gray);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   Success Page
   ========================================================================== */

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--off-white);
  text-align: center;
}

.success-content {
  max-width: 700px;
  padding: 5rem;
  background-color: var(--white);
  border-radius: var(--radius-large);
  box-shadow: var(--nm-shadow-large);
}

.success-icon {
  font-size: 8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.success-content h2 {
  color: var(--primary-dark);
  margin-bottom: 2rem;
}

.success-content p {
  margin-bottom: 3rem;
}

/* ==========================================================================
   Terms & Privacy Pages
   ========================================================================== */

.terms-page,
.privacy-page {
  padding-top: 100px;
  min-height: 100vh;
  background-color: var(--off-white);
}

.terms-content,
.privacy-content {
  background-color: var(--white);
  padding: 5rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--nm-shadow-medium);
  margin: 5rem 0;
}

.terms-content h2,
.privacy-content h2 {
  color: var(--primary-dark);
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.terms-content h3,
.privacy-content h3 {
  color: var(--primary-color);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.terms-content p,
.privacy-content p {
  margin-bottom: 1.5rem;
}

.terms-content ul,
.privacy-content ul {
  margin-bottom: 2rem;
}

.terms-content li,
.privacy-content li {
  margin-bottom: 1rem;
}

/* ==========================================================================
   About Page
   ========================================================================== */

.about-page {
  padding-top: 100px;
  background-color: var(--off-white);
}

.team-section {
  padding: 5rem 0;
}

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

.team-member {
  background-color: var(--white);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--nm-shadow-medium);
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-large);
}

.member-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  text-align: center;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
}

.member-info {
  padding: 2rem;
  text-align: center;
}

.member-info h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.member-position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.member-bio {
  font-size: 1.5rem;
  color: var(--dark-gray);
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.member-social a {
  color: var(--mid-gray);
  font-size: 1.8rem;
  transition: color var(--transition-fast);
}

.member-social a:hover {
  color: var(--primary-color);
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

/* Tablet and smaller desktops */
@media (max-width: 1024px) {
  html {
    font-size: 56.25%; /* 9px */
  }

  .history-content,
  .scenes-content,
  .sustainability-content {
    flex-direction: column;
    gap: 3rem;
  }

  .history-image,
  .scenes-image,
  .sustainability-image {
    flex: 0 0 100%;
    order: -1;
  }

  .contact-content {
    flex-direction: column;
  }

  .contact-form-container {
    flex: 0 0 100%;
  }

  .timeline {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .timeline-item {
    width: 45%;
    margin-bottom: 3rem;
  }

  .timeline::before {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    font-size: 50%; /* 8px */
  }

  .section-title {
    font-size: 3.2rem;
  }

  .section-subtitle {
    font-size: 1.8rem;
  }

  .navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 1000;
  }

  .navigation.active {
    display: block;
  }

  .navigation ul {
    flex-direction: column;
  }

  .navigation li {
    margin-left: 0;
    margin-bottom: 1.5rem;
  }

  .burger-menu {
    display: flex;
  }

  .hero-content h1 {
    font-size: 4.2rem;
  }

  .hero-content p {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .timeline-item {
    width: 100%;
  }

  .press-grid,
  .resources-grid,
  .services-grid,
  .case-studies-grid,
  .webinars-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    gap: 3rem;
  }

  .step {
    min-width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 4rem;
  }

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

  .links-column {
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-section {
    padding: 15rem 0 8rem;
  }

  .hero-content h1 {
    font-size: 3.6rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .info-card {
    padding: 2rem;
  }

  .terms-content,
  .privacy-content {
    padding: 3rem;
  }
}

/* ==========================================================================
   Animations
   ========================================================================== */

/* Particle Animation */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 5%);
  background-size: 150% 150%;
  z-index: 0;
  animation: backgroundMove 20s ease infinite alternate;
}

@keyframes backgroundMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Floating Elements Animation */
.floating {
  animation: float 6s ease-in-out infinite;
}

.floating-delay-1 {
  animation-delay: 1s;
}

.floating-delay-2 {
  animation-delay: 2s;
}

.floating-delay-3 {
  animation-delay: 3s;
}

/* Particles for specific sections */
.services-section::before,
.sustainability-section::before,
.webinars-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(58, 86, 212, 0.03) 0%, rgba(58, 86, 212, 0) 8%),
    radial-gradient(circle at 50% 60%, rgba(58, 86, 212, 0.03) 0%, rgba(58, 86, 212, 0) 8%),
    radial-gradient(circle at 80% 40%, rgba(58, 86, 212, 0.03) 0%, rgba(58, 86, 212, 0) 8%);
  z-index: 0;
  pointer-events: none;
}

/* ScrollReveal Animations */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease;
}

.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.reveal-down {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 1s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Hover Effects */
.card, 
.resource-card, 
.press-card, 
.webinar-card, 
.team-member {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover, 
.resource-card:hover, 
.press-card:hover, 
.webinar-card:hover, 
.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-large);
}

/* JavaScript-enabled animations */
.js-animate {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

.js-animate.from-left {
  transform: translateX(-50px);
}

.js-animate.from-right {
  transform: translateX(50px);
}

.js-animate.from-bottom {
  transform: translateY(50px);
}

.js-animate.from-top {
  transform: translateY(-50px);
}

.js-animate.scale-in {
  transform: scale(0.8);
}

/* Staggered animation delays */
.js-animate.delay-1 {
  transition-delay: 0.1s;
}

.js-animate.delay-2 {
  transition-delay: 0.2s;
}

.js-animate.delay-3 {
  transition-delay: 0.3s;
}

.js-animate.delay-4 {
  transition-delay: 0.4s;
}

.js-animate.delay-5 {
  transition-delay: 0.5s;
}