* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e293b;
  line-height: 1.6;
  background: #f8fafc;
}

.hero {
  min-height: 85vh;
  padding: 28px 8%;
  color: white;

  background:
    linear-gradient(
      rgba(15, 23, 42, 0.80),
      rgba(15, 23, 42, 0.85)
    ),
    url("hero-bg.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}

nav h1 {
  font-size: 26px;
  letter-spacing: -0.5px;
}

nav a {
  color: #e2e8f0;
  text-decoration: none;
  margin-left: 26px;
  font-weight: 600;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #22c55e;
}

.hero-content {
  max-width: 780px;
  margin-top: 90px;
}

.hero-content h2 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-content p {
  font-size: 21px;
  max-width: 660px;
  color: #cbd5e1;
  margin-bottom: 34px;
}

.button,
button {
  display: inline-block;
  background: #22c55e;
  color: #052e16;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(34, 197, 94, 0.4);
}

.section {
  padding: 90px 8%;
  max-width: 1200px;
  margin: auto;
}

.section h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 18px;
  color: #0f172a;
  letter-spacing: -1px;
}

.section > p {
  font-size: 18px;
  color: #475569;
  max-width: 850px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 35px;
}

.card {
  background: white;
  padding: 34px;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.13);
}

.card h3 {
  font-size: 23px;
  color: #0f172a;
  margin-bottom: 12px;
}

.card p {
  color: #475569;
}

.about {
  background: white;
  max-width: none;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.about p {
  max-width: 900px;
  font-size: 18px;
  color: #475569;
}

.contact {
  background: #f8fafc;
}

.contact form {
  margin-top: 30px;
  background: white;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
textarea {
  padding: 16px 18px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

footer {
  text-align: center;
  padding: 30px 8%;
  background: #0f172a;
  color: #cbd5e1;
}

/* Mobile */
@media (max-width: 850px) {
  nav {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }

  nav a {
    margin-left: 0;
    margin-right: 18px;
  }

  .hero-content {
    margin-top: 60px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 6%;
  }
}
/* Pricing Section */

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 35px;
}

.pricing-card {
  background: white;
  padding: 34px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.pricing-card.featured {
  border: 2px solid #22c55e;
  transform: scale(1.04);
}

.pricing-card h3 {
  font-size: 24px;
  color: #0f172a;
  margin-bottom: 10px;
}

.pricing-card h4 {
  font-size: 34px;
  color: #22c55e;
  margin-bottom: 16px;
}

.pricing-card p {
  color: #475569;
  margin-bottom: 18px;
}

.pricing-card ul {
  list-style: none;
}

.pricing-card li {
  margin-bottom: 10px;
  color: #334155;
}

.pricing-card li::before {
  content: "✓ ";
  color: #22c55e;
  font-weight: bold;
}

/* About Section With Photo */

.about-container {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.about-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 18px;
  font-size: 18px;
  color: #475569;
}

/* Mobile Fixes */

@media (max-width: 850px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .about-container {
    grid-template-columns: 1fr;
  }
}
/* Inner Page Styling */

body > nav {
  background: #0f172a;
  padding: 24px 8%;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.page-hero {
  padding: 80px 8%;
  background:
    linear-gradient(rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.88)),
    url("business-bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.page-hero h2 {
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 720px;
  margin: auto;
  color: #cbd5e1;
  font-size: 19px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 35px;
  align-items: start;
}

.contact-card {
  background: white;
  padding: 34px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
}

.contact-card h3 {
  color: #0f172a;
  margin-bottom: 12px;
}

.contact-card p,
.contact-card a {
  color: #475569;
  font-size: 17px;
}

.contact-card a {
  font-weight: 700;
}

@media (max-width: 850px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.cta-section,
.pricing-note {
  text-align: center;
}

.cta-section p,
.pricing-note p {
  margin: 0 auto 25px;
  max-width: 760px;
}
.about-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-image {
    text-align: center;
}

.service-link {
    text-decoration: none;
    color: inherit;
}

.service-link:hover .card {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.15);
}

.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-link .card {
  height: 100%;
}

.service-link:hover .card {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.15);
}