:root {
  --bg: #ffffff;
  --surface: #f4f5f7;
  --text: #1a1a1a;
  --brand: #2f5ec4;
  --brand-dark: #22489a;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 100;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  color: var(--brand);
  text-decoration: none;
}

.logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
}

.nav a:hover {
  color: var(--brand);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* HERO */
.hero {
  background: linear-gradient(120deg, #2f5ec4, #5f84d6);
  color: #fff;
  padding: 6rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 1rem 0;
}

.lead {
  margin-bottom: 2rem;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* SECTIONS */
.section {
  padding: 5rem 0;
}

.muted {
  background: var(--surface);
}

.cards,
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card,
.pricing-grid > div {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

/* IMAGE SECTION */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-wrapper img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* CONTACT (Original Style Restored) */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
}

.contact-form {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 16px;
  display: grid;
  gap: 0.9rem;
}

label {
  font-weight: 600;
  display: grid;
  gap: 0.35rem;
}

input,
textarea {
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  padding: 0.7rem 0.75rem;
  font: inherit;
  width: 100%;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
}

/* BUTTON */
.btn {
  background: var(--brand);
  color: #fff;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

/* FOOTER */
.footer {
  padding: 1.5rem 0;
  border-top: 1px solid #eee;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
}

/* RESPONSIVE */
@media (max-width: 960px) {

  .hero-grid,
  .contact,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    position: absolute;
    right: 20px;
    top: 70px;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid #eaeaea;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #333;
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #777;
}