:root {
  --bg: #ffffff;
  --bg-elevated: #f8fafc;
  --primary: #3ddc84; /* Android green */
  --primary-soft: rgba(61, 220, 132, 0.08);
  --primary-strong: #19c86a;
  --text-main: #050816;
  --text-muted: #5f6473;
  --border-subtle: #e2e8f0;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.1);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --transition-fast: 180ms ease;
  --transition-med: 260ms ease;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  scroll-margin-top: 96px; /* so anchors don't hide behind sticky header */
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  background: radial-gradient(circle at top, #ecfeff 0, #ffffff 38%, #f8fafc 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout */
.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.86)
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 0, #f9fafb 0, #111827 48%, #020617 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35);
}

.brand-logo i {
  font-size: 1.3rem;
  color: var(--primary);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links {
  display: none;
}

.nav-links a {
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  color: var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast),
    transform var(--transition-fast);
}

.nav-links a:hover {
  background: rgba(148, 163, 184, 0.16);
  color: var(--text-main);
  transform: translateY(-1px);
}

.nav-cta {
  display: none;
}

.pill {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(248, 250, 252, 0.9);
}

.pill i {
  font-size: 0.9rem;
  color: var(--primary);
}

.mobile-menu-btn {
  display: inline-flex;
  background: transparent;
  border: none;
  font-size: 1.35rem;
  padding: 0.15rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 1.25rem 0.75rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-menu a {
  padding: 0.45rem 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mobile-menu a:hover {
  color: var(--text-main);
}

.mobile-menu-open .mobile-menu {
  display: flex;
}

.mobile-menu-open .mobile-menu-btn i::before {
  content: "\ee01"; /* ri-close-line */
}

/* Hero */
main {
  flex: 1;
}

.hero {
  padding: 2.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  gap: 2.75rem;
}

.hero-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-eyebrow span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(61, 220, 132, 0.18);
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
}

.hero-title span.highlight {
  background: linear-gradient(120deg, #3ddc84, #16a34a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 30rem;
  margin-bottom: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn {
  border-radius: 999px;
  padding: 0.65rem 1.3rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast);
  font-weight: 500;
}

/* START: Primary button styles FIX */
.btn-primary {
  /* Changed from radial gradient to solid background color */
  background: var(--primary-strong); /* #19c86a */
  color: #f9fafb;
  /* Updated shadow to match solid green background */
  box-shadow: 0 10px 20px rgba(25, 200, 106, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px) translateZ(0);
  /* Use a slightly darker shade for hover effect */
  background: #15803d; 
  box-shadow: 0 14px 28px rgba(25, 200, 106, 0.5);
}
/* END: Primary button styles FIX */

.btn-ghost {
  background: rgba(15, 23, 42, 0.02);
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(148, 163, 184, 0.8);
  transform: translateY(-1px);
}

.hero-tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px dashed rgba(148, 163, 184, 0.7);
  color: var(--text-muted);
}

.hero-tech-pill span {
  font-size: 0.75rem;
}

.hero-tech-pill i {
  font-size: 0.95rem;
  color: var(--primary);
}

.hero-right {
  position: relative;
}

.hero-card-shell {
  border-radius: var(--radius-xl);
  padding: 1.2rem;
  background: radial-gradient(circle at 10% -10%, #bbf7d0 0, #020617 32%, #020617 100%);
  box-shadow: var(--shadow-soft);
  color: #e5e7eb;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-card-shell::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(61, 220, 132, 0.18), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-phone-frame {
  position: relative;
  border-radius: 28px;
  padding: 0.65rem;
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.5), rgba(15, 23, 42, 0.2));
  max-width: 260px;
  margin: 0 auto;
}

.hero-phone-inner {
  border-radius: 22px;
  overflow: hidden;
  background: radial-gradient(circle at top, #0f172a 0, #020617 45%, #020617 100%);
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 0.9rem 0.95rem 1.1rem;
  position: relative;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #e5e7eb;
  margin-bottom: 0.5rem;
}

.phone-status span.pill-small {
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.phone-main-text {
  margin-bottom: 0.75rem;
}

.phone-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.phone-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
}

.phone-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.metric-chip {
  border-radius: 12px;
  padding: 0.45rem 0.45rem 0.4rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.metric-label {
  font-size: 0.6rem;
  color: #9ca3af;
  margin-bottom: 0.15rem;
}

.metric-value {
  font-size: 0.82rem;
  font-weight: 600;
}

.tech-stack-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.7rem;
  color: #9ca3af;
}

.tech-stack-row span.badge {
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  background: rgba(22, 163, 74, 0.16);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.68rem;
}

.tech-stack-row span.badge i {
  font-size: 0.8rem;
}

.hero-float-tag {
  position: absolute;
  right: -10px;
  bottom: 14px;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.7rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.75);
}

.hero-float-tag i {
  color: var(--primary);
  font-size: 0.95rem;
}

.hero-meta-banner {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-meta-banner .divider {
  width: 1px;
  height: 16px;
  background: rgba(148, 163, 184, 0.7);
}

/* Generic section styles */
section {
  padding: 2.6rem 0;
}

.section-header {
  margin-bottom: 1.7rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.section-title {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.section-description {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 30rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 1.75rem;
}

.about-card {
  background: rgba(248, 250, 252, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.3rem;
  border: 1px solid var(--border-subtle);
}

.about-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
}

.about-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.about-meta-chip {
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.76rem;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.about-meta-chip i {
  font-size: 0.85rem;
  color: var(--primary);
}

/* Services */
.services-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.05rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem 0.85rem;
  align-items: flex-start;
}

.service-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.service-icon i {
  font-size: 1.15rem;
  color: var(--primary-strong);
}

.service-content h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
}

.service-content p {
  margin: 0 0 0.5rem;
  font-size: 0.87rem;
  color: var(--text-muted);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.service-tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--text-muted);
}

/* Skills */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.skill-column {
  background: rgba(248, 250, 252, 0.9);
  border-radius: var(--radius-lg);
  padding: 1rem 1rem;
  border: 1px solid var(--border-subtle);
}

.skill-column h3 {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
}

.skill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.skill-list li {
  font-size: 0.78rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(148, 163, 184, 0.65);
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  gap: 1.1rem;
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #020617;
  border: 1px solid #0f172a;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr);
}

.project-card:hover .project-media img {
  transform: scale(1.05);
}

.project-media {
  position: relative;
  overflow: hidden;
  max-height: 220px;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 320ms ease;
}

.project-label {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(15, 23, 42, 0.88);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.project-body {
  padding: 0.95rem 1rem 1.05rem;
  color: #e5e7eb;
}

.project-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.25rem;
}

.project-title-row h3 {
  margin: 0;
  font-size: 0.98rem;
}

.project-meta-pill {
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #cbd5f5;
}

.project-description {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  color: #9ca3af;
}

.project-tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.45rem;
}

.project-tech {
  font-size: 0.72rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.65);
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #9ca3af;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.8rem;
}

.project-link i {
  font-size: 0.75rem;
}

/* Why Choose */
.why-grid {
  display: grid;
  gap: 0.9rem;
}

.why-card {
  border-radius: var(--radius-lg);
  padding: 1rem 1rem;
  border: 1px solid var(--border-subtle);
  background: rgba(248, 250, 252, 0.95);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.why-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
}

.why-icon i {
  font-size: 1.05rem;
  color: var(--primary-strong);
}

.why-card h3 {
  margin: 0 0 0.2rem;
  font-size: 0.96rem;
}

.why-card p {
  margin: 0;
  font-size: 0.87rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1rem;
}

.testimonial-card {
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.1rem;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.testimonial-quote {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.testimonial-quote::before {
  content: '“';
  margin-right: 2px;
}

.testimonial-quote::after {
  content: '”';
  margin-left: 2px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3ddc84, #16a34a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ecfdf5;
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.testimonial-rating i {
  font-size: 0.8rem;
  color: #fbbf24;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.6rem;
}

.contact-card {
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.15rem;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 0.85rem;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--text-main);
  background: var(--bg-elevated);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(61, 220, 132, 0.8);
  box-shadow: 0 0 0 3px rgba(61, 220, 132, 0.15);
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-aside {
  padding: 0.4rem 0.1rem;
}

.contact-aside p {
  margin-top: 0;
  margin-bottom: 1.3rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-channel-list {
  display: grid;
  gap: 0.9rem;
}

.contact-channel {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  font-size: 1.1rem;
  color: var(--primary-strong);
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-value {
  font-size: 0.86rem;
}

.contact-value a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

/* Footer */
footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1.1rem 0 1.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms var(--transition-med),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-card-shell {
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

/* Responsive */
@media (min-width: 640px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
  }
  .hero {
    padding: 3.4rem 0 4.2rem;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .project-card {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    align-items: flex-start;
  }
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
  .mobile-menu-btn {
    display: none;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.55rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 1.7rem;
  }
  .about-grid {
    grid-template-columns: minmax(0, 1.1fr);
  }
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}