@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");

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

:root {
  --primary: #3d82f6;
  --primary-foreground: #ffffff;
  --secondary: #1e293b;
  --secondary-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #1e293b;
  --muted-foreground: #64748b;
  --accent: #b933d9;
  --border: #e2e8f0;
  --card-bg: #ffffff;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.min-h-screen {
  min-height: 100vh;
}

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

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
}

header .header-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}

header .logo:hover {
  opacity: 0.8;
}

header .logo img {
  height: 3rem;
  width: auto;
}

header nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

header nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
}

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

header .menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

header .cta-button {
  margin-left: auto;
}

/* Mobile Menu */
header .mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  header nav {
    display: none;
  }

  header .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header .cta-button {
    display: none !important;
  }

  header .mobile-nav.open {
    display: block;
    border-top: 1px solid var(--border);
    background-color: var(--background);
  }

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

  header .mobile-nav a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
  }

  header .mobile-nav a:hover {
    color: var(--primary);
  }

  header .mobile-nav .button {
    width: 100%;
    margin-top: 1rem;
  }
}

/* Buttons */
.button {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.button-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.button-primary:hover {
  background-color: #2563eb;
}

.button-outline {
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--foreground);
}

.button-outline:hover {
  background-color: #f8f9fa;
}

.button-white {
  background-color: white;
  color: var(--primary);
}

.button-white:hover {
  background-color: #eff6ff;
}

/* Sections */
section {
  padding: 4rem 1rem;
}

@media (max-width: 768px) {
  section {
    padding: 2rem 1rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 48rem;
}

.hero-content h1 {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--foreground);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

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

@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.grid-items-center {
  align-items: center;
}

/* Cards */
.card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.card p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.card-with-icon {
  text-align: center;
  padding: 2rem;
}

.card-with-icon .icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1rem;
  color: var(--primary);
}

/* Text Styles */
h1, h2 {
  color: var(--foreground);
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Footer */
footer {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 3rem 1rem;
  margin-top: auto;
}

footer .footer-content {
  max-width: 1280px;
  margin: 0 auto;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

footer .footer-section h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

footer .footer-section ul {
  list-style: none;
}

footer .footer-section ul li {
  margin-bottom: 0.5rem;
}

footer .footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

footer .footer-section a:hover {
  color: white;
}

footer .footer-logo img {
  height: 4rem;
  width: auto;
  margin-bottom: 1rem;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Background Patterns */
.bg-light {
  background-color: #f1f5f9;
}

.bg-white {
  background-color: white;
}

.bg-primary {
  background-color: var(--primary);
  color: white;
}

.bg-primary-light {
  background-color: rgba(61, 130, 246, 0.1);
}

/* Utilities */
.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

.text-muted {
  color: var(--muted-foreground);
}

.text-primary {
  color: var(--primary);
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.rounded-lg { border-radius: 0.5rem; }

.w-full { width: 100%; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.h-24 { height: 6rem; }
.w-24 { width: 6rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

.inline-flex {
  display: inline-flex;
}

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

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

.justify-between {
  justify-content: space-between;
}

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.leading-relaxed {
  line-height: 1.75;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }

.border-t {
  border-top: 1px solid var(--border);
}

.pt-8 {
  padding-top: 2rem;
}

/* Icons */
.icon-sm {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-md {
  width: 2.5rem;
  height: 2.5rem;
}

.icon-lg {
  width: 6rem;
  height: 6rem;
}

/* Features List */
.features-list {
  display: grid;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
}

.feature-item .icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.feature-item h3 {
  margin: 0;
  margin-bottom: 0.5rem;
}

.feature-item p {
  margin: 0;
}

/* Checkmark */
.checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Stars */
.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: var(--accent);
  font-size: 1.125rem;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

thead {
  border-bottom: 1px solid var(--border);
}

th {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--foreground);
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

tr:hover {
  background-color: #f8f9fa;
}

/* Highlight Box */
.highlight-box {
  background-color: var(--primary);
  color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
}

.highlight-box strong {
  font-weight: 700;
}

/* List Styling */
ul.service-list {
  list-style: none;
  padding: 0;
}

ul.service-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

ul.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}
