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

:root {
  --bg: #f7f9fc;
  --dark: #0f172a;
  --muted: #64748b;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --white: #ffffff;
  --border: #e2e8f0;
  --soft: #eff6ff;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.7;
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 55%, #eff6ff 100%);
}

.navbar {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  color: #334155;
  transition: 0.25s ease;
}

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

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 10px 18px;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--primary-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  margin: 5px auto;
}

.hero {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 80px 0 110px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-text {
  max-width: 650px;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn.primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.25);
}

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

.btn.secondary {
  background: white;
  color: var(--dark);
  border: 1px solid var(--border);
}

.btn.secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 600px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-stats strong {
  display: block;
  font-size: 18px;
}

.hero-stats small {
  color: var(--muted);
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}

.profile-frame {
  background: linear-gradient(145deg, #dbeafe, #ffffff);
  border-radius: 28px;
  padding: 18px;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.profile-frame img {
  width: 100%;
  max-width: 330px;
}

.availability {
  margin-top: 18px;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pulse {
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.14);
}

.section {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 90px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.about-text {
  color: var(--muted);
  font-size: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.service-grid,
.work-grid,
.process-grid {
  display: grid;
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.work-card,
.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.service-card:hover,
.work-card:hover,
.process-card:hover {
  transform: translateY(-6px);
}

.icon {
  width: 54px;
  height: 54px;
  background: var(--soft);
  color: var(--primary);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 18px;
}

.service-card h3,
.work-info h3,
.process-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.service-card p,
.work-info p,
.process-card p {
  color: var(--muted);
}

.work-section {
  background: transparent;
}

.work-grid {
  grid-template-columns: repeat(3, 1fr);
}

.work-card {
  padding: 0;
  overflow: hidden;
}

.work-preview {
  height: 220px;
  background: var(--soft);
  position: relative;
}

.work-preview::before,
.work-preview::after {
  content: "";
  position: absolute;
  border-radius: 16px;
  background: white;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.wordpress-preview::before {
  width: 70%;
  height: 42px;
  top: 32px;
  left: 28px;
}

.wordpress-preview::after {
  width: 82%;
  height: 100px;
  bottom: 30px;
  left: 28px;
}

.landing-preview {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.landing-preview::before {
  width: 52%;
  height: 120px;
  left: 24px;
  top: 46px;
}

.landing-preview::after {
  width: 30%;
  height: 120px;
  right: 24px;
  top: 46px;
}

.excel-preview {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.12) 1px, transparent 1px),
    #eff6ff;
  background-size: 32px 32px;
}

.excel-preview::before {
  width: 74%;
  height: 38px;
  left: 28px;
  top: 36px;
}

.excel-preview::after {
  width: 82%;
  height: 90px;
  left: 28px;
  bottom: 32px;
}

.work-info {
  padding: 26px;
}

.skills-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 38px;
  align-items: start;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skills-list span {
  background: var(--white);
  border: 1px solid var(--border);
  color: #334155;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-card span {
  color: var(--primary);
  font-weight: 900;
  font-size: 28px;
}

.contact-card {
  background: var(--dark);
  color: white;
  border-radius: 34px;
  padding: 44px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-size: clamp(32px, 5vw, 46px);
  margin-bottom: 14px;
}

.contact-card p {
  color: #cbd5e1;
}

.contact-info {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.contact-info a {
  color: white;
  font-weight: 700;
  word-break: break-word;
}

.contact-info a:hover {
  color: #93c5fd;
}

.contact-form {
  background: white;
  color: var(--dark);
  padding: 28px;
  border-radius: 26px;
  display: grid;
  gap: 18px;
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  resize: vertical;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-note {
  color: var(--muted) !important;
  font-size: 13px;
  text-align: center;
}

.footer {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 28px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.footer a {
  font-weight: 800;
  color: var(--primary);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 4%;
    right: 4%;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
    z-index: 10;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 10px;
  }

  .hero,
  .about-section,
  .skills-section,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .service-grid,
  .work-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .hero-stats,
  .service-grid,
  .work-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }

  .contact-card {
    padding: 26px;
    border-radius: 26px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}
