:root {
  --red: #e53935;
  --red-soft: #ffebee;
  --blue: #29b6f6;
  --blue-soft: #e1f5fe;
  --bg-light: #f7f7fb;
  --bg-contrast: #111827;
  --text-main: #111827;
  --text-muted: #6b7280;
  --white: #ffffff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.12);
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text-main);
  background: var(--bg-light);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / hero */

.site-header {
  background: linear-gradient(135deg, var(--red), var(--blue));
  color: var(--white);
  padding: 3.5rem 0 3rem;
}

.hero {
  text-align: center;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.logo-image {
  width: 800px;   /* looks good for your logo */
  height: auto;
}

.site-title {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.9rem;
  letter-spacing: 0.18em;
}

.tagline {
  margin: 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.hero-sub {
  margin: 0.75rem 0 1.5rem;
  font-size: 0.98rem;
  opacity: 0.95;
}

/* Buttons */

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--red);
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  background: #fef2f2;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* Sections */

.section {
  padding: 3rem 0;
}

.section-light {
  background: var(--bg-light);
}

.section-accent {
  background: var(--blue-soft);
}

.section-contrast {
  background: var(--bg-contrast);
  color: var(--white);
}

.section h2 {
  margin-top: 0;
  font-size: 1.6rem;
}

.section-intro {
  margin: 0.5rem 0 1.75rem;
  color: var(--text-muted);
}

.section-contrast .section-intro {
  color: rgba(249, 250, 251, 0.8);
}

/* Typography helpers */

.muted {
  color: var(--text-muted);
}

.small {
  font-size: 0.9rem;
}

.tiny {
  font-size: 0.78rem;
}

/* Layout grids */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 1.5rem;
}

/* Cards / lists */

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.card-highlight {
  border: 2px solid var(--red);
}

.price {
  margin: 0.25rem 0 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
}

.list li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.25rem;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--red);
}

/* Contact form */

.contact-form {
  background: rgba(15, 23, 42, 0.85);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-md);
  border: 1px solid #374151;
  background: #020617;
  color: #e5e7eb;
  font-family: inherit;
  font-size: 0.9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

/* Footer */

.site-footer {
  padding: 1.5rem 0 2rem;
  background: #020617;
  color: #9ca3af;
}

.footer-inner {
  text-align: center;
}

/* Responsive */

@media (min-width: 640px) {
  .site-title {
    font-size: 2.1rem;
  }

  .tagline {
    font-size: 1.15rem;
  }
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.1fr 1.1fr;
  }

  .hero {
    padding-bottom: 0.5rem;
  }
}
