:root {
  --bg-white: #ffffff;
  --bg-light: #f4f6f9;
  --bg-accent: #edf1f8;
  
  --brand-blue: #385da5;
  --brand-teal: #00b4d8;
  --brand-purple: #5e35b1;
  
  --text-dark: #111827;
  --text-gray: #4b5563;
  --text-light: #9ca3af;
  
  --border-color: #e5e7eb;
  
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.gcan-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: padding 0.3s ease;
}
.gcan-nav.scrolled { padding: 1rem 4rem; }

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 36px; width: auto; display: block; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--brand-blue); letter-spacing: -0.5px; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { font-weight: 500; color: var(--text-gray); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--brand-blue); }

.nav-cta {
  background: var(--brand-blue);
  color: white !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #324a85; }

/* ── MOBILE MENU TOGGLE ── */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 101;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--brand-blue);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active Hamburger Animation */
.mobile-menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── HERO ── */
.hero-section {
  padding: 8rem 4rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero-kicker {
  font-size: 0.85rem !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--brand-blue) !important;
  margin-bottom: 1rem !important;
}
.hero-content p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-visual {
  position: relative;
  height: 500px;
  border-radius: 12px;
  overflow: visible;
}

.btn-primary {
  display: inline-block;
  background: var(--brand-blue);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.2s;
}
.btn-primary:hover { background: #324a85; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--brand-blue);
  padding: 1rem 2rem;
  border: 1px solid var(--brand-blue);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
  background: var(--brand-blue);
  color: white;
}


/* ── ABOUT / METRICS ── */
.about-section { padding: 3.5rem 4rem; max-width: 1400px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.about-text h2 { font-family: var(--font-display); font-size: 2.5rem; color: var(--text-dark); margin-bottom: 1.5rem; letter-spacing: -0.5px; }
.about-text p { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 1.5rem; }

.metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.metric-box { background: var(--bg-light); padding: 2rem; border-radius: 8px; border: 1px solid var(--border-color); }
.metric-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--brand-blue); margin-bottom: 0.5rem; line-height: 1; }
.metric-label { font-weight: 600; color: var(--text-dark); font-size: 0.95rem; }

/* ── SERVICES (Overlapping Layout) ── */
.services-section { padding: 3.5rem 4rem; background: var(--bg-dark); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 2.5rem; }
.section-header h2 { font-family: var(--font-display); font-size: 2.5rem; color: var(--text-dark); margin-bottom: 1rem; letter-spacing: -0.5px; }
.section-header p { font-size: 1.1rem; color: var(--text-gray); }

.service-list { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }
.service-item {
  display: grid;
  grid-template-columns: 350px 1fr;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}
.service-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.04); }
.service-title-area { background: var(--bg-light); padding: 3rem; border-right: 1px solid var(--border-color); }
.service-title-area h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--brand-blue); margin-bottom: 0.5rem; }
.service-content-area { padding: 3rem; }
.service-content-area p { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 1.5rem; }
.tech-stack { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tech-tag { font-size: 0.8rem; font-weight: 600; padding: 0.4rem 1rem; background: var(--bg-accent); color: var(--brand-blue); border-radius: 100px; }

/* ── EXPERTISE & LANGUAGES (Minimalist Typography) ── */
.expertise-section {
  padding: 3.5rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--bg-white);
}
.expertise-list {
  margin-top: 2rem;
  border-top: 2px solid var(--text-dark);
}
.expertise-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
  align-items: start;
  transition: background-color 0.3s ease;
  cursor: default;
}
.expertise-row:hover {
  /* We use background change but NO padding shift to prevent text wrapping */
  background-color: var(--bg-light);
}
.expertise-category {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: transform 0.3s ease, color 0.3s ease;
  padding-left: 1rem; /* Base padding so the transform has room */
}
.expertise-row:hover .expertise-category {
  transform: translateX(10px);
  color: var(--brand-blue);
}
.expertise-items {
  font-family: var(--font-display);
  /* Use clamp to ensure the font size smoothly scales down on smaller screens */
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.4;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
  padding-right: 1rem;
}
.expertise-row:hover .expertise-items {
  color: var(--text-dark);
}

@media (max-width: 1024px) {
  .expertise-row { 
    grid-template-columns: 1fr; 
    gap: 1rem; 
    padding: 2.5rem 0; 
  }
  .expertise-category { padding-left: 0; }
  .expertise-items { padding-right: 0; }
  .expertise-row:hover .expertise-category { transform: none; }
}

/* ── WORK (Masonry/Asymmetrical) ── */
.work-section { padding: 3.5rem 4rem; max-width: 1400px; margin: 0 auto; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.work-card { display: flex; flex-direction: column; min-width: 0; text-decoration: none; color: inherit; group; }
.work-card:nth-child(even) { transform: translateY(2rem); }
.work-image {
  background: #DDE0E5;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  transition: border-color 0.3s;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  position: relative; overflow: hidden;
}
.work-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-card:hover .work-image { border-color: var(--brand-blue); }
.work-card:hover .work-image img { transform: scale(1.03); }
.work-content h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.5rem; color: var(--text-dark); transition: color 0.3s; }
.work-content h3 a { color: inherit; text-decoration: none; }
.work-card:hover .work-content h3 { color: var(--brand-blue); }
.work-content p { color: var(--text-gray); font-size: 1.1rem; margin-bottom: 1.5rem; }
.work-fallback-icon { font-size: 4rem; color: var(--brand-blue); opacity: 0.55; }

/* ── SOLUTIONS ── */
.solutions-section {
  padding: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--bg-white);
}
.solutions-section .section-header,
.faq-section .section-header {
  text-align: left;
  max-width: 880px;
  margin-left: 0;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid var(--text-dark);
  border-left: 1px solid var(--border-color);
}
.solution-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.25rem;
  min-height: 190px;
  padding: 2rem;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background:
    linear-gradient(135deg, rgba(56, 93, 165, 0.04), rgba(0, 180, 216, 0) 48%),
    var(--bg-white);
  transition: background 0.25s ease, transform 0.25s ease;
}
.solution-item:hover {
  background:
    linear-gradient(135deg, rgba(56, 93, 165, 0.08), rgba(0, 180, 216, 0.05)),
    var(--bg-white);
  transform: translateY(-2px);
}
.solution-index {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-teal);
  letter-spacing: 1px;
  padding-top: 0.25rem;
}
.solution-item h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.solution-item p {
  color: var(--text-gray);
  font-size: 1rem;
}

/* ── TESTIMONIAL ── */
.testimonial-section { background: var(--brand-blue); color: white; padding: 4rem 4rem; text-align: center; }
.testimonial-content { max-width: 900px; margin: 0 auto; }
.testimonial-quote { font-family: var(--font-display); font-size: 2.5rem; font-weight: 500; line-height: 1.3; margin-bottom: 1.5rem; }
.testimonial-author { font-size: 1.1rem; font-weight: 600; color: var(--brand-teal); }

/* ── PROCESS ── */
.process-section {
  padding: 8rem max(4rem, calc((100vw - 1272px) / 2));
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.process-section .section-header {
  max-width: 880px;
  margin-bottom: 4rem;
  text-align: left;
}
.process-section .section-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.process-section .section-header p {
  font-size: 1.1rem;
  color: var(--text-gray);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-top: 2px solid var(--text-dark);
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border-color);
  background: transparent;
  transition: background-color 0.3s ease;
}
.process-step:last-child {
  border-right: none;
}
.process-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-blue);
  background: var(--bg-accent);
  border: 1px solid var(--border-color);
  padding: 0.25rem 0.6rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.process-step p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}
.process-step:hover {
  background-color: rgba(56, 93, 165, 0.03);
}
.process-step:hover h3 {
  color: var(--brand-blue);
}
.process-step:hover .process-num {
  background-color: var(--brand-blue);
  color: var(--bg-white);
  border-color: var(--brand-blue);
}

@media (max-width: 1024px) {
  .process-section {
    padding: 6rem max(2.5rem, calc((100vw - 1272px) / 2));
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step {
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
  }
  .process-step:nth-child(2n) {
    border-right: none;
  }
  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-step,
  .process-step:nth-child(3) {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 2.5rem 1.5rem;
  }
  .process-step:last-child {
    border-bottom: none;
  }
}

/* ── FAQ ── */
.faq-section {
  padding: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid var(--text-dark);
}
.faq-item {
  border: none;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-white);
  padding: 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 1.5rem 0;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  user-select: none;
  -webkit-user-select: none;
}
.faq-item summary:focus,
.faq-item summary:focus-visible {
  outline: none;
  box-shadow: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "-";
}
.faq-item p {
  color: var(--text-gray);
  max-width: 860px;
  padding: 0 0 1.5rem;
  font-size: 1.05rem;
}

/* ── TOOLS GRID ── */
.tools-section {
  padding: 4rem 4rem 10rem;
  max-width: 1400px;
  margin: 0 auto;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.tool-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
  border-color: var(--brand-blue);
}

.tool-icon {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.tool-card:hover .tool-content h3 {
  color: var(--brand-blue);
}

.tool-content p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .tools-grid { grid-template-columns: 1fr; }
}

/* ── MASSIVE CTA ── */
.massive-cta-section {
  background: var(--brand-blue);
  color: white;
  padding: 4.5rem 4rem;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-teal);
  margin-bottom: 1.5rem;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions .btn-primary {
  background: white;
  color: var(--brand-blue);
}

.cta-actions .btn-primary:hover {
  background: var(--brand-teal);
  color: white;
}

/* ── FOOTER ── */
.gcan-footer { padding: 3.5rem 4rem 2rem; border-top: 1px solid var(--border-color); background: var(--bg-white); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1400px; margin: 0 auto 2.5rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--brand-blue); margin-bottom: 1rem; }
.footer-logo-img { height: 32px; width: auto; display: block; }
.footer-tagline { color: var(--text-gray); max-width: 300px; }
.footer-heading { font-weight: 600; color: var(--text-dark); margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { color: var(--text-gray); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--brand-blue); }
.footer-bottom { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; border-top: 1px solid var(--border-color); padding-top: 2rem; color: var(--text-light); font-size: 0.9rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 1fr; text-align: center; padding-top: 8rem; }
  .hero-content p { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-visual { height: 420px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-item { grid-template-columns: 1fr; gap: 0; }
  .service-title-area { border-right: none; border-bottom: 1px solid var(--border-color); padding: 2rem; }
  .service-content-area { padding: 2rem; }
  .work-grid { grid-template-columns: 1fr; gap: 2rem; }
  .work-card:nth-child(even) { transform: none; }
  .work-image { height: auto; aspect-ratio: 16 / 10; }
  .solutions-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .gcan-nav { padding: 1rem 2.5rem; }
  .gcan-nav.scrolled { padding: 0.8rem 2.5rem; }
  .mobile-menu-toggle { display: flex; }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.05);
    padding: 6rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    align-items: flex-start;
    gap: 2rem;
    border-left: 1px solid var(--border-color);
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    font-size: 1.2rem;
    display: block;
    width: 100%;
    padding: 0.5rem 0;
  }
  .nav-cta {
    text-align: center;
    margin-top: 1rem;
  }
  .about-section, .services-section, .work-section, .testimonial-section, .process-section, .contact-section, .expertise-section { padding: 2.5rem 2rem; }
  .hero-section { padding: 7.5rem 2rem 3.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { text-align: center; width: 100%; }
  .hero-visual { height: 380px; }
  .section-header {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .section-header h2 {
    font-size: 2rem;
    line-height: 1.12;
    letter-spacing: 0;
  }
  .section-header p {
    font-size: 1rem;
    line-height: 1.65;
  }
  .metrics-grid { grid-template-columns: 1fr; }
  .service-list { gap: 1.5rem; }
  .service-title-area { padding: 1.5rem; }
  .service-title-area h3 { font-size: 1.5rem; }
  .service-content-area { padding: 1.5rem; }
  .service-content-area p { font-size: 1rem; margin-top: 0; margin-bottom: 1.25rem; }
  .work-grid {
    gap: 3rem;
  }
  .work-image {
    margin-bottom: 1.25rem;
    border-radius: 10px;
  }
  .work-image img {
    border-radius: 10px;
    object-fit: contain;
  }
  .work-content h3 {
    font-size: 1.55rem;
    line-height: 1.15;
  }
  .work-content p {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1rem;
  }
  .work-content .tech-stack {
    gap: 0.45rem;
  }
  .work-content .tech-tag {
    font-size: 0.72rem;
    padding: 0.32rem 0.65rem;
  }
  .solutions-section, .faq-section { padding: 2.5rem 2rem; }
  .solutions-grid { grid-template-columns: 1fr; border-left: none; }
  .solution-item { grid-template-columns: 3rem 1fr; gap: 1rem; min-height: auto; padding: 1.5rem 0; border-right: none; background: var(--bg-white); }
  .solution-item:hover { transform: none; background: var(--bg-white); }
  .solution-item h3 {
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .solution-item p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .solution-index {
    font-size: 0.82rem;
  }
  .process-section { padding: 2.5rem 2rem; }
  .faq-list {
    border-top-width: 2px;
  }
  .faq-item summary {
    position: relative;
    padding: 1.25rem 2rem 1.25rem 0;
    font-size: 1.15rem;
    line-height: 1.35;
  }
  .faq-item summary::after {
    position: absolute;
    right: 0;
    top: 1.35rem;
    float: none;
  }
  .faq-item p {
    font-size: 0.96rem;
    line-height: 1.65;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; align-items: center; text-align: center; }
  
  /* Tools Page Responsiveness */
  .tools-section { padding: 2.5rem 1.5rem 6rem; }
  .tool-card { padding: 2rem 1.5rem; gap: 1.25rem; flex-direction: column; align-items: flex-start; }
  .tool-icon { padding: 1rem; width: fit-content; }
  .tool-content h3 { font-size: 1.4rem; }
  .tool-content p { font-size: 0.95rem; }
}

@media (max-width: 420px) {
  .about-section,
  .services-section,
  .work-section,
  .testimonial-section,
  .process-section,
  .contact-section,
  .expertise-section,
  .solutions-section,
  .faq-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .work-grid {
    gap: 2.5rem;
  }
  .work-image {
    aspect-ratio: 4 / 3;
  }
  .solution-item {
    grid-template-columns: 2.35rem 1fr;
    gap: 0.85rem;
  }
  .process-step {
    padding: 1.5rem;
  }
  .faq-item summary {
    font-size: 1.05rem;
  }
  .faq-item p {
    font-size: 0.94rem;
  }
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: var(--bg-accent);
  border-radius: 6px;
  box-shadow: 0 0 0 2px var(--brand-blue);
  clip: auto !important;
  clip-path: none;
  color: var(--brand-blue);
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  height: auto;
  left: 1.5rem;
  line-height: normal;
  padding: 1rem 2rem;
  text-decoration: none;
  top: 1.5rem;
  width: auto;
  z-index: 100000;
}
