/* ------------------------------
   GLOBAL
--------------------------------*/
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  color: #1b1b1b;
  background: #ffffff;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section {
  padding: 90px 10%;
}

.section-alt {
  padding: 90px 10%;
  background: #f5f7fa;
}

.section-title {
  font-size: 38px;
  margin-bottom: 12px;
  text-align: center;
  color: #111;
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 16px;
}

p {
  font-size: 16px;
}

/* ------------------------------
   HEADER
--------------------------------*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 10%;
  background: #ffffffdd;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #eee;
}

.logo {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.7px;
  display: flex;
  flex-direction: column;
}

.logo-subtitle {
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #888;
  margin-top: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

nav li {
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 15px;
}

nav a:hover {
  color: #1a73e8;
}

/* MOBILE MENU */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 900px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    right: 10%;
    top: 70px;
    padding: 18px 26px;
    border-radius: 12px;
    box-shadow: 0 5px 24px rgba(0,0,0,0.12);
  }

  nav ul.open {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* ------------------------------
   HERO SECTION
--------------------------------*/
.hero {
  background: radial-gradient(circle at top left, #1a73e8 0, #0f172a 40%, #020617 100%);
  color: #f9fafb;
  padding: 80px 10% 90px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr);
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: 46px;
  margin-bottom: 14px;
}

.hero-content p {
  font-size: 18px;
  max-width: 520px;
  color: #e5e7eb;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.cta-btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.22s ease;
}

.primary-cta {
  background: #f97316;
  color: #111827;
  border-color: #f97316;
}

.primary-cta:hover {
  background: #ea580c;
  border-color: #ea580c;
}

.secondary-cta {
  background: transparent;
  color: #e5e7eb;
  border-color: #4b5563;
}

.secondary-cta:hover {
  border-color: #9ca3af;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  border-radius: 999px;
  border: 1px solid #475569;
  padding: 6px 12px;
  color: #cbd5f5;
}

/* Hero aside stats */
.hero-aside {
  display: grid;
  gap: 12px;
}

.stat-card {
  background: rgba(15, 23, 42, 0.78);
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid #1f2937;
}

.stat-number {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: #9ca3af;
}

/* Responsive hero */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ------------------------------
   SERVICES
--------------------------------*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15,23,42,0.06);
  border: 1px solid #e5e7eb;
  transition: 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,23,42,0.12);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.service-card p {
  color: #4b5563;
}

/* ------------------------------
   PORTFOLIO
--------------------------------*/
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 32px;
}

.portfolio-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #111827;
  box-shadow: 0 14px 36px rgba(15,23,42,0.08);
  transition: 0.25s ease;
  border: 1px solid #e5e7eb;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15,23,42,0.18);
}

.portfolio-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.portfolio-card h3 {
  font-size: 20px;
  margin: 16px 18px 4px;
}

.portfolio-card p {
  margin: 0 18px 14px;
  color: #4b5563;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 18px 16px;
}

.tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
}

/* ------------------------------
   PROCESS
--------------------------------*/
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.process-step {
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 18px;
  padding: 24px 22px 26px;
  box-shadow: 0 14px 32px rgba(15,23,42,0.35);
}

.step-number {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.process-step p {
  font-size: 14px;
  color: #d1d5db;
}

/* ------------------------------
   CONTACT
--------------------------------*/
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: flex-start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

input,
textarea {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-aside {
  display: grid;
  gap: 18px;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 26px rgba(15,23,42,0.06);
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.contact-card ul {
  margin: 0;
  padding-left: 18px;
  color: #4b5563;
  font-size: 14px;
}

/* Responsive contact layout */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ------------------------------
   PRICING SECTION
--------------------------------*/
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px 26px 34px;
  box-shadow: 0 12px 32px rgba(15,23,42,0.06);
  text-align: left;
  position: relative;
  transition: 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(15,23,42,0.12);
}

.pricing-card.featured {
  background: #0f172a;
  color: #f1f5f9;
  border: 1px solid #1e293b;
  box-shadow: 0 16px 40px rgba(15,23,42,0.35);
}

.badge-featured {
  position: absolute;
  top: -12px;
  right: 16px;
  background: #f97316;
  color: #111827;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .pricing-desc {
  color: #f8fafc;
}

.price {
  font-size: 34px;
  font-weight: 800;
  margin: 10px 0 8px;
}

.pricing-desc {
  font-size: 14px;
  color: #475569;
  margin-bottom: 20px;
}

.pricing-card.featured .pricing-desc {
  color: #cbd5e1;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pricing-features li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #374151;
}

.pricing-card.featured .pricing-features li {
  color: #e2e8f0;
}

.price-btn {
  display: inline-block;
  background: #1a73e8;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #1a73e8;
  transition: 0.22s ease;
}

.price-btn:hover {
  background: #1459b6;
  border-color: #1459b6;
}

/* Featured button override */
.pricing-card.featured .price-btn {
  background: #f97316;
  color: #0f172a;
  border-color: #f97316;
}

.pricing-card.featured .price-btn:hover {
  background: #ea580c;
  border-color: #ea580c;
}

/* ------------------------------
   FOOTER
--------------------------------*/
footer {
  text-align: center;
  padding: 32px;
  background: #020617;
  color: #9ca3af;
  font-size: 14px;
}
