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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background: white;
  min-height: 100vh;
}

/* Utilities */
.hidden {
  display: none !important;
}

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

/* Navigation */
.nav {
  background: #0f172a;
  color: white;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-logo:hover {
  color: #60a5fa;
}

.nav-links-desktop {
  display: none;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .nav-links-desktop {
    display: flex;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  background: none;
  border: none;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.nav-link:hover {
  background: #1e293b;
  color: white;
}

.nav-link.active {
  background: #2563eb;
  color: white;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: background 0.3s;
}

.mobile-menu-btn:hover {
  background: #1e293b;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.nav-links-mobile {
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-link-mobile {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  background: none;
  border: none;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.nav-link-mobile:hover {
  background: #1e293b;
  color: white;
}

.nav-link-mobile.active {
  background: #2563eb;
  color: white;
}

/* Pages */
.page {
  display: none;
  min-height: calc(100vh - 64px);
  animation: fadeIn 0.4s ease-in-out;
}

.page.active {
  display: block;
}

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

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

.slide-up {
  animation: slideUp 0.5s ease-in-out forwards;
  opacity: 0;
}

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

/* Backgrounds */
.bg-gradient-1 {
  background: linear-gradient(to bottom right, #f8fafc, #dbeafe, #f3e8ff);
  min-height: 100%;
}

.bg-gradient-2 {
  background: linear-gradient(to bottom right, #f8fafc, #ffedd5, #fef3c7);
  min-height: 100%;
}

.bg-gradient-3 {
  background: linear-gradient(to bottom right, #f8fafc, #f3e8ff, #dbeafe);
  min-height: 100%;
}

.bg-gradient-4 {
  background: linear-gradient(to bottom right, #f0fdf4, #dbeafe, #f3e8ff);
  min-height: 100%;
}

.bg-gradient-5 {
  background: linear-gradient(to bottom right, #fef3c7, #ffedd5, #fee2e2);
  min-height: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 8rem 1.5rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  margin: 0 -1rem;
}

@media (min-width: 1024px) {
  .hero-bg {
    margin: 0 -2rem;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(30, 58, 138, 0.9), rgba(88, 28, 135, 0.95));
  z-index: 10;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 20;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-text {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #bfdbfe;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: #bfdbfe;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Buttons */
.btn-primary {
  background: #2563eb;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background: white;
  color: #2563eb;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: 2px solid #2563eb;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: #f8fafc;
}

.btn-orange {
  background: #ea580c;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-orange:hover {
  background: #c2410c;
}

.btn-white {
  background: white;
  color: #2563eb;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.125rem;
}

.btn-white:hover {
  background: #dbeafe;
}

/* Sections */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

@media (min-width: 640px) {
  .section-container {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-container {
    padding: 4rem 2rem;
  }
}

.page-section {
  max-width: 1024px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

@media (min-width: 640px) {
  .page-section {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .page-section {
    padding: 8rem 2rem;
  }
}

.page-section-wide {
  max-width: 1152px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

@media (min-width: 640px) {
  .page-section-wide {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .page-section-wide {
    padding: 8rem 2rem;
  }
}

.section-title {
  font-size: 1.875rem;
  margin-bottom: 3rem;
  color: #0f172a;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-title-white {
  font-size: 1.875rem;
  margin-bottom: 2rem;
  color: white;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title-white {
    font-size: 2.25rem;
  }
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards */
.card {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.card p {
  color: #475569;
}

/* Icon Boxes */
.icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-box-center {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.icon-box-large {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.bg-blue {
  background: #dbeafe;
  color: #2563eb;
}

.bg-purple {
  background: #f3e8ff;
  color: #9333ea;
}

.bg-green {
  background: #dcfce7;
  color: #16a34a;
}

.bg-amber {
  background: #fef3c7;
  color: #d97706;
}

.bg-blue-solid {
  background: #2563eb;
}

.bg-purple-solid {
  background: #9333ea;
}

.bg-orange-solid {
  background: #ea580c;
}

.bg-green-solid {
  background: #16a34a;
}

/* Metric Cards */
.metric-card {
  border-radius: 0.75rem;
  padding: 2rem;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-align: center;
}

.metric-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.metric-value {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.metric-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: white;
}

.metric-card p {
  color: rgba(255, 255, 255, 0.9);
}

.bg-purple-gradient {
  background: linear-gradient(to bottom right, #a855f7, #9333ea);
}

.bg-orange-gradient {
  background: linear-gradient(to bottom right, #f97316, #ea580c);
}

.bg-green-gradient {
  background: linear-gradient(to bottom right, #22c55e, #16a34a);
}

.bg-blue-gradient {
  background: linear-gradient(to bottom right, #3b82f6, #2563eb);
}

/* Why Choose Section */
.why-choose-section {
  background: linear-gradient(to right, #0f172a, #1e3a8a);
  border-radius: 1rem;
  padding: 2rem;
  color: white;
}

@media (min-width: 768px) {
  .why-choose-section {
    padding: 3rem;
  }
}

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

.check-item svg {
  color: #86efac;
  flex-shrink: 0;
}

.check-item span {
  font-size: 1.125rem;
}

.check-item-white {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.check-item-white svg {
  flex-shrink: 0;
}

/* Header with Background */
.header-with-bg {
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
  border-radius: 1rem;
  overflow: hidden;
  padding: 3rem;
}

@media (min-width: 768px) {
  .header-with-bg {
    padding: 4rem;
  }
}

.header-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-bg-overlay-orange {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(124, 45, 18, 0.9), rgba(15, 23, 42, 0.85), rgba(146, 64, 14, 0.9));
  z-index: 10;
}

.header-bg-overlay-purple {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.9), rgba(30, 58, 138, 0.85), rgba(15, 23, 42, 0.9));
  z-index: 10;
}

.header-bg-overlay-green {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(20, 83, 45, 0.9), rgba(30, 58, 138, 0.85), rgba(88, 28, 135, 0.9));
  z-index: 10;
}

.header-bg-overlay-amber {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(146, 64, 14, 0.9), rgba(154, 52, 18, 0.85), rgba(15, 23, 42, 0.9));
  z-index: 10;
}

.header-content {
  position: relative;
  z-index: 20;
}

.page-title-white {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  color: white;
}

@media (min-width: 768px) {
  .page-title-white {
    font-size: 3.75rem;
  }
}

.page-subtitle-white {
  font-size: 1.25rem;
  color: rgba(251, 191, 36, 0.9);
  line-height: 1.75;
  max-width: 48rem;
  margin: 0 auto 1.5rem;
}

/* Content Card */
.content-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .content-card {
    padding: 3rem;
  }
}

.card-title-center {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #0f172a;
  text-align: center;
}

/* List Items */
.list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: #f8fafc;
  transition: all 0.3s;
}

.list-item:hover {
  background: #ffedd5;
}

.list-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.list-item span {
  font-size: 1.125rem;
  color: #334155;
}

/* Case Study Card */
.case-study-card {
  background: linear-gradient(to bottom right, #f97316, #f59e0b);
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  color: white;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .case-study-card {
    padding: 3rem;
  }
}

.case-study-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.case-study-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.case-study-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.case-study-label {
  color: rgba(254, 215, 170, 1);
  margin-bottom: 0.5rem;
}

.case-study-content p:not(.case-study-label) {
  font-size: 1.125rem;
  color: white;
}

/* Closing Text */
.closing-text {
  font-size: 1.125rem;
  color: #475569;
  max-width: 32rem;
  margin: 0 auto 2rem;
}

/* Service Cards */
.services-grid {
  margin-bottom: 4rem;
}

.service-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.service-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.25rem);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.service-card > p {
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #334155;
}

.service-list li::before {
  content: "→";
  color: #94a3b8;
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to right, #0f172a, #581c87, #1e3a8a);
  color: white;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 3rem;
  }
}

.cta-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: #cbd5e1;
}

/* Commitments */
.commitments-grid {
  margin-bottom: 4rem;
}

.commitment-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.commitment-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.25rem);
}

.commitment-card svg {
  margin-bottom: 1rem;
}

.commitment-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: white;
}

.commitment-card p {
  color: rgba(255, 255, 255, 0.9);
}

/* Investor Section */
.investor-section {
  background: linear-gradient(to bottom right, #2563eb, #7c3aed);
  color: white;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .investor-section {
    padding: 3rem;
  }
}

.investor-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

@media (min-width: 768px) {
  .investor-section h2 {
    font-size: 1.875rem;
  }
}

.investor-section p {
  font-size: 1.125rem;
  color: #bfdbfe;
  max-width: 32rem;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

/* Milestones */
.milestones-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.milestone-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .milestone-card {
    flex-direction: row;
    align-items: flex-start;
  }
}

.milestone-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.milestone-content {
  flex: 1;
}

.milestone-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.milestone-content p {
  color: #475569;
  line-height: 1.75;
}

/* Timeline */
.timeline-section {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .timeline-section {
    padding: 3rem;
  }
}

.timeline-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.875rem;
  color: #0f172a;
  margin-bottom: 2rem;
}

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

.timeline-item {
  position: relative;
  padding-left: 2rem;
  border-left: 4px solid;
}

.timeline-item.completed {
  border-color: #22c55e;
}

.timeline-item.current {
  border-color: #f97316;
}

.timeline-item.upcoming {
  border-color: #cbd5e1;
}

.timeline-marker {
  position: absolute;
  left: -0.75rem;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
}

.timeline-item.completed .timeline-marker {
  background: #22c55e;
}

.timeline-item.current .timeline-marker {
  background: #f97316;
}

.timeline-item.upcoming .timeline-marker {
  background: #cbd5e1;
}

.timeline-quarter {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.timeline-quarter.completed {
  background: #dcfce7;
  color: #15803d;
}

.timeline-quarter.current {
  background: #ffedd5;
  color: #c2410c;
}

.timeline-quarter.upcoming {
  background: #f1f5f9;
  color: #475569;
}

.timeline-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #f97316;
  color: white;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-left: 0.5rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.timeline-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.timeline-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.timeline-item li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #475569;
}

.timeline-item li svg {
  color: #94a3b8;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Metrics Grid */
.metrics-grid {
  margin-bottom: 4rem;
}

/* Progress Statement */
.progress-statement {
  background: linear-gradient(to right, #0f172a, #c2410c, #d97706);
  color: white;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .progress-statement {
    padding: 3rem;
  }
}

.progress-statement h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

@media (min-width: 768px) {
  .progress-statement h2 {
    font-size: 1.875rem;
  }
}

.progress-statement p {
  font-size: 1.125rem;
  color: #fed7aa;
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.75;
}

/* Contact Form */
.contact-form-container {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

@media (min-width: 768px) {
  .contact-form-container {
    padding: 2.5rem;
  }
}

.contact-form-container h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

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

.form-intro h2 {
  font-size: 1.875rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.form-intro p {
  font-size: 1.125rem;
  color: #475569;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: #334155;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: none;
}

.btn-submit {
  width: 100%;
  background: #2563eb;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.125rem;
}

.btn-submit:hover {
  background: #1d4ed8;
}

.form-success {
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.form-success p {
  color: #15803d;
  font-size: 1.125rem;
}

.form-error {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.form-error p {
  color: #991b1b;
  font-size: 1.125rem;
}

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

.contact-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-item svg {
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.875rem;
  color: #64748b;
}

.contact-value {
  color: #0f172a;
}

/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 2rem 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    padding: 0 2rem;
  }
}

.footer p {
  color: #94a3b8;
}