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

:root {
  --primary-orange: #f56423;
  --dark-navy: #0a1a2f;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;

  /* Light theme variables */
  --bg-primary: var(--white);
  --bg-secondary: var(--light-gray);
  --text-primary: var(--dark-navy);
  --text-secondary: var(--medium-gray);
  --card-bg: var(--white);
  --border-color: #e9ecef;
    --input-placeholder: rgba(108, 117, 125, 0.8);
}
/* data-theme is for the js function */
[data-theme="dark"] {
  --bg-primary: #171717;
  --bg-secondary: #1c1c1c;
  --text-primary: #ffffff; /* main text */
  --text-secondary: #b8c5d6;
  --card-bg: #28282b;
  --border-color: #333333;
   --input-placeholder: rgba(184, 197, 214, 0.6);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: all 0.3s ease;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Theme Toggle */
.theme-toggle {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 30px;
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.theme-toggle i {
  font-size: 12px;
  transition: all 0.3s ease;
  z-index: 2;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--primary-orange);
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translateX(0);
}

[data-theme="dark"] .theme-toggle::before {
  transform: translateX(26px);
}

#sunIcon {
  color: var(--primary-orange);
}

#moonIcon {
  color: var(--text-secondary);
}

[data-theme="dark"] #sunIcon {
  color: var(--text-secondary);
}

[data-theme="dark"] #moonIcon {
  color: var(--primary-orange);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  background: var(--primary-orange);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite linear;
}

.floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 80%;
  animation-delay: -5s;
}

.floating-element:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 80%;
  left: 20%;
  animation-delay: -10s;
}

.floating-element:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 70%;
  animation-delay: -15s;
}

.floating-element:nth-child(5) {
  width: 50px;
  height: 50px;
  top: 40%;
  left: 90%;
  animation-delay: -7s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

.logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.logo img.logo-img {
  max-width: 230px; /* adjust size */
  height: auto; /* keeps aspect ratio */
  display: block;
}

/* Swap logo to black version in dark mode to avoid white border */
[data-theme="dark"] .logo img.logo-img {
  content: url("../img/Logo\ logo-icon.svg");
}

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

.coming-soon-badge {
  background: linear-gradient(45deg, var(--primary-orange), #ff7b47);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  color: var(--primary-orange);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 2px;
  animation: slideIn 1s ease 0.5s both;
}

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Waitlist Form Styling - Matches Kivo Design */
.cta-section {
  max-width: 500px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.form-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.email-form {
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  text-align: left;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: all 0.3s ease;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Theme Toggle */
.theme-toggle {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 30px;
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.theme-toggle i {
  font-size: 12px;
  transition: all 0.3s ease;
  z-index: 2;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--primary-orange);
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translateX(0);
}

[data-theme="dark"] .theme-toggle::before {
  transform: translateX(26px);
}

#sunIcon {
  color: var(--primary-orange);
}

#moonIcon {
  color: var(--text-secondary);
}

[data-theme="dark"] #sunIcon {
  color: var(--text-secondary);
}

[data-theme="dark"] #moonIcon {
  color: var(--primary-orange);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  background: var(--primary-orange);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite linear;
}

.floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 80%;
  animation-delay: -5s;
}

.floating-element:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 80%;
  left: 20%;
  animation-delay: -10s;
}

.floating-element:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 70%;
  animation-delay: -15s;
}

.floating-element:nth-child(5) {
  width: 50px;
  height: 50px;
  top: 40%;
  left: 90%;
  animation-delay: -7s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

.logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

/* UPDATED: Logo image styles */
.logo img.logo-img {
  max-width: 230px;
  height: auto;
  display: block;
}

/* Optional: Dark theme logo swap */
[data-theme="dark"] .logo img.logo-img {
  content: url("../img/Logo white.jpg");
}

.coming-soon-badge {
  background: linear-gradient(45deg, var(--primary-orange), #ff7b47);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  color: var(--primary-orange);
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 2px;
  animation: slideIn 1s ease 0.5s both;
}

@keyframes slideIn {
  from { width: 0; }
  to { width: 100%; }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* UPDATED: Form Styling with fixes */
/* REPLACE your entire form section CSS with this clean version */

/* Form Container */
.cta-section {
  max-width: 500px;
  margin: 40px auto 0;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Form Styling */
.email-form {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

/* Simplified Input Group */
.input-group {
  display: flex;
  align-items: stretch;
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 50px;
  padding: 4px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.input-group:focus-within {
  border-color: var(--primary-orange);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245, 100, 35, 0.2);
}

/* CLEAN Input - Remove all duplicate styling */
.input-group input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 16px 24px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-primary);
  outline: none;
  min-width: 0; /* Prevent input from overflowing */
}

/* PROFESSIONAL Placeholder Styling */
.input-group input[type="email"]::placeholder {
  color: var(--input-placeholder);
  opacity: 1;
  font-weight: 400;
}

.input-group input[type="email"]::-webkit-input-placeholder {
  color: var(--input-placeholder);
}

.input-group input[type="email"]::-moz-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}

.input-group input[type="email"]:-ms-input-placeholder {
  color: var(--input-placeholder);
}

/* FIXED Autofill Styling */
.input-group input[type="email"]:-webkit-autofill,
.input-group input[type="email"]:-webkit-autofill:hover,
.input-group input[type="email"]:-webkit-autofill:focus,
.input-group input[type="email"]:-webkit-autofill:active {
  -webkit-text-fill-color: var(--text-primary) !important;
  -webkit-box-shadow: 0 0 0px 1000px var(--card-bg) inset !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

/* Submit Button */
.input-group button[type="submit"] {
  background: linear-gradient(135deg, var(--primary-orange), #ff7b47);
  color: white;
  border: none;
  padding: 16px 28px;
  border-radius: 46px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-width: fit-content;
}

.input-group button[type="submit"]:hover {
  background: linear-gradient(135deg, #e55a1f, #f56423);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 100, 35, 0.4);
}

.input-group button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  background: var(--medium-gray);
}

/* Label - Standard Position */
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-align: center;
}

/* Checkbox and Privacy */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  text-align: left;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--primary-orange);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
  opacity: 0.9;
}

.form-note a {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 500;
}

.form-note a:hover {
  text-decoration: underline;
}

/* Hidden spam protection */
.input--hidden {
  display: none !important;
}

/* Responsive Form */
@media (max-width: 768px) {
  .input-group {
    flex-direction: column;
    border-radius: 20px;
    padding: 8px;
  }

  .input-group input[type="email"] {
    padding: 16px 20px;
    border-radius: 16px;
    margin-bottom: 8px;
  }

  .input-group button[type="submit"] {
    border-radius: 16px;
    justify-content: center;
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    max-width: 100%;
    padding: 0 10px;
  }

  .input-group {
    padding: 6px;
  }

  .input-group input[type="email"] {
    padding: 14px 18px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .checkbox-group {
    gap: 10px;
  }

  .checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }
}

/* Hidden input for spam protection */
.input--hidden {
  display: none !important;
}

/* Stats Section */
.stats {
  padding: 60px 0;
  background: var(--bg-secondary);
}

.stats-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 0 auto;
  padding: 2rem 3rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  max-width: 900px;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1;
  transition: all 0.3s ease;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--text-primary);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.feature-card {
  width: 100%;
  max-width: 360px;
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(245, 100, 35, 0.1), transparent);
  transition: all 0.6s ease;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary-orange), #ff7b47);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 1.8rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

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

/* Procurement Section */
.procurement {
  padding: 100px 0;
  background: var(--bg-primary);
}

.procurement-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.procurement-item {
  flex: 0 1 360px;
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.procurement-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.item-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.item-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.item-content p {
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-orange), #ff7b47);
  color: white;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.newsletter-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-group {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-group input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 15px 20px;
  font-size: 1rem;
  color: white;
  outline: none;
}

.newsletter-form .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-group button {
  background: white;
  color: var(--primary-orange);
  border: none;
  padding: 15px 30px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-form .form-group button:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  padding: 40px 0;
  background: #1c1c1c;
  color: var(--white);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo i {
  color: var(--primary-orange);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.input-group button {
  background: linear-gradient(45deg, var(--primary-orange), #ff7b47);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 100, 35, 0.4);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  text-align: left;
}

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

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
  cursor: pointer;
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.4;
}

.form-note a {
  color: var(--primary-orange);
  text-decoration: none;
}

.form-note a:hover {
  text-decoration: underline;
}

/* Hidden input for spam protection */
.input--hidden {
  display: none !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .input-group {
    flex-direction: column;
    border-radius: 15px;
  }

  .input-group button {
    margin-top: 10px;
    border-radius: 10px;
    justify-content: center;
  }

  .form-header h2 {
    font-size: 1.5rem;
  }
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--text-primary);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}
.feature-card {
  width: 100%;
  max-width: 360px;
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(245, 100, 35, 0.1),
    transparent
  );
  transition: all 0.6s ease;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary-orange), #ff7b47);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 1.8rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

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

/* stats-preview */
/* Stats Section */
.stats {
  padding: 60px 0;
  background: var(--bg-secondary);
}

.stats-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 0 auto;
  padding: 2rem 3rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  max-width: 900px;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-orange); /* brand orange */
  line-height: 1;
  transition: all 0.3s ease;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* Procurement Section */
.procurement {
  padding: 100px 0;
  background: var(--bg-primary);
}

.procurement-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.procurement-item {
  flex: 0 1 360px;
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.procurement-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.item-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.item-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.item-content p {
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-orange), #ff7b47);
  color: white;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.newsletter-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 15px 20px;
  font-size: 1rem;
  color: white;
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group button {
  background: white;
  color: var(--primary-orange);
  border: none;
  padding: 15px 30px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group button:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  padding: 40px 0;
  background: #1c1c1c;
  color: var(--white);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo i {
  color: var(--primary-orange);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--card-bg);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  animation: slideUp 0.3s ease;
}

.modal-header i {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 15px;
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.modal-content p {
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.modal-close {
  background: var(--primary-orange);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

  .input-group {
    flex-direction: column;
    border-radius: 15px;
  }

  .input-group button {
    margin-top: 10px;
    border-radius: 10px;
    justify-content: center;
  }

  .form-group {
    flex-direction: column;
    border-radius: 15px;
  }

  .form-group button {
    margin-top: 10px;
    border-radius: 10px;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    justify-content: center;
    justify-items: center;
  }

  .procurement-item {
    flex-direction: column;
    text-align: center;
  }

  .procurement-item:hover {
    transform: translateY(-5px);
  }

  .theme-toggle {
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .logo {
    font-size: 2rem;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
  .stats-preview {
    max-width: 98vw;
    padding: 2rem 1rem;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 800px;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-preview {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem 0.5rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 5px;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: 1.1rem;
  }
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  .stats-preview {
    padding: 0.5rem 0.2rem;
    gap: 1rem;
  }
  .stat-number {
    font-size: 1.3rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
  .footer-content {
    gap: 8px;
  }
  .modal-content {
    padding: 10px;
    border-radius: 10px;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0 2px;
  }
  .hero-title,
  .section-title {
    font-size: 1rem;
  }
  .feature-card,
  .procurement-item {
    padding: 10px 2px;
    border-radius: 8px;
  }
  .stats-preview {
    padding: 0.2rem 0.1rem;
    border-radius: 8px;
  }
}
