/* ============================================================
   MAIN.CSS — Siddhant Kokate / Wynexorium Technologies LLP
   ============================================================ */

/* 1. Reset & Base
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-weight: 600; line-height: 1.1; }

::selection { background: var(--cobalt); color: white; }

:focus-visible {
  outline: 2px solid var(--cobalt-2);
  outline-offset: 3px;
  border-radius: 2px;
}

/* 2. Skip Link
   ------------------------------------------------------------ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  background: var(--cobalt);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}
.skip-link:focus { top: 1rem; }

/* 3. Layout Utilities
   ------------------------------------------------------------ */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-base { padding-block: var(--space-24); }
.section-sm   { padding-block: var(--space-20); }
.section-hero {
  padding-top: calc(var(--space-20) + 4rem);  /* nav clearance */
  padding-bottom: var(--space-24);
}

.hairline { border-color: var(--line); }
.border-b-hair { border-bottom: 1px solid var(--line); }
.border-t-hair { border-top: 1px solid var(--line); }

/* 4. Typography Tokens
   ------------------------------------------------------------ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}

.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ink);
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
}

.text-lead { font-size: 1.125rem; color: var(--muted); line-height: 1.65; }
.text-sm   { font-size: 0.875rem; }
.text-xs   { font-size: 0.75rem; }
.text-muted  { color: var(--muted); }
.text-paper  { color: var(--ink); }
.text-cobalt { color: var(--cobalt); }
.text-cobalt-2 { color: var(--cobalt-2); }
.text-copper { color: var(--copper); }
.text-mint   { color: var(--mint); }
.font-mono   { font-family: var(--font-mono); }

/* 5. Buttons
   ------------------------------------------------------------ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cobalt);
  color: white;
  border-radius: var(--radius-full);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  transition: transform var(--transition-fast);
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  transition: border-color var(--transition-fast);
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--cobalt-2); }

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--cobalt-2);
  border-radius: var(--radius-sm);
  transition: text-decoration var(--transition-fast);
}
.btn-ghost:hover { text-decoration: underline; }

/* 6. Navbar
   ------------------------------------------------------------ */
/* ======================================================
   NAVBAR
====================================================== */

.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
}

.navbar-inner {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.navbar-content {
  max-width: 1440px;          /* was var(--container-max) */
  margin-inline: auto;
  padding-inline: 2rem;       /* was var(--container-pad) */

  height: 5rem;               /* was 4rem */

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.nav-links a{

position:relative;

font-weight:500;

color:var(--muted);

transition:color .25s ease;

}

.nav-links a::after{

content:"";

position:absolute;

left:50%;

bottom:-9px;

width:0;

height:2px;

background:var(--cobalt-2);

transition:.25s ease;

transform:translateX(-50%);

border-radius:999px;

}

.nav-links a:hover{

color:var(--ink);

}

.nav-links a:hover::after,

.nav-links a[aria-current="page"]::after{

width:100%;

}

.nav-links a[aria-current="page"]{

color:var(--ink);

font-weight:600;

}
/* ==========================================
   Logo
========================================== */

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  display: block;
  width: auto;
  height: 52px;
  transition: transform .25s ease;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.02);
}

/* ==========================================
   Navigation
========================================== */

.nav-links {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 1;

  gap: 2.75rem;       /* was 2rem */

  margin: 0;
  padding: 0;

  list-style: none;
}

.nav-links a {

  font-size: .97rem;

  font-weight: 500;

  letter-spacing: -.01em;

  color: var(--muted);

  transition: color .25s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {

  color: var(--ink);

}

/* ==========================================
   CTA
========================================== */

.nav-cta {

  display: none;

  padding: .95rem 1.65rem;

  border-radius: 999px;

  font-size: .94rem;

  font-weight: 600;

  flex-shrink: 0;

}

/* ==========================================
   Hamburger
========================================== */

.nav-hamburger {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 2.5rem;

  height: 2.5rem;

  border: 1px solid var(--line);

  border-radius: var(--radius-full);

  color: var(--ink);

  transition: .25s;

}

.nav-hamburger:hover {

  border-color: var(--cobalt-2);

}

.nav-hamburger svg {

  pointer-events: none;

}

/* ==========================================
   Mobile Menu
========================================== */

.nav-mobile {

  display: none;

  border-bottom: 1px solid var(--line);

  background: var(--paper);

  padding: 1.5rem 2rem;

}

.nav-mobile.is-open {

  display: block;

}

.nav-mobile ul {

  display: flex;

  flex-direction: column;

  gap: 1rem;

}

.nav-mobile a {

  display: block;

  padding-block: .4rem;

  font-size: 1rem;

  color: var(--ink);

}

.nav-mobile-cta {

  margin-top: 1.5rem;

}

.nav-mobile-whatsapp {

  display: block;

  margin-top: 1rem;

  font-size: .9rem;

  color: var(--muted);

}

/* ==========================================
   Desktop
   (raised from 768px: the full 7-item nav + logo + CTA button need
   roughly 1200px of horizontal room, so 768px caused overflow/wrapping
   on tablets and narrow laptop windows)
========================================== */

@media (min-width:1100px){

.nav-links{

display:flex;

}

.nav-cta{

display:inline-flex;

align-items:center;

gap:.55rem;

}

.nav-hamburger{

display:none;

}

}

/* ==========================================
   Large Screens
========================================== */

@media (min-width:1400px){

.navbar-content{

max-width:1500px;

padding-inline:2.5rem;

}

}

/* ==========================================
   Tablet
========================================== */

@media (max-width:991px){

.navbar-content{

height:4.6rem;

padding-inline:1.5rem;

}

.nav-logo-img{

height:46px;

}

}

/* ==========================================
   Mobile
========================================== */

@media (max-width:640px){

.navbar-content{

height:4.2rem;

padding-inline:1rem;

}

.nav-logo-img{

height:40px;

}

.nav-cta{

display:none;

}

}
/* 7. Footer
   ------------------------------------------------------------ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding-block: 4rem;
}

.footer-col h3{

margin:0;

margin-bottom:1.5rem;

}
.footer-brand-tagline {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 20rem;
  margin-top: 1rem;
  line-height: 1.55;
}
.footer-brand-meta {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}
.footer-brand-email {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--ink);
  transition: color var(--transition-fast);
}
.footer-brand-email:hover { color: var(--cobalt-2); }

.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}
.footer-col ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr repeat(4, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* 8. Hero Section
   ------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; }

.hero-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}

.hero-eyebrow { margin-bottom: 1.5rem; }

.hero-headline { margin-top: 1.5rem; }

.hero-sub {
  margin-top: 1.5rem;
  max-width: 32rem;
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.65;
}

.hero-ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-capabilities {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
}
.hero-capabilities li { font-size: 0.875rem; color: var(--muted); }

/* Hero panel */
.hero-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}

.panel-chrome {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1rem;
}
.panel-dot { width: 0.625rem; height: 0.625rem; border-radius: 50%; background: var(--line); }
.panel-url {
  flex: 1;
  background: var(--paper);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-left: 0.75rem;
}

.panel-body { padding: 1.75rem; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1.5rem; }

.gauge-wrap { position: relative; width: 8rem; height: 8rem; flex-shrink: 0; }
.gauge-svg  { width: 8rem; height: 8rem; transform: rotate(-90deg); }
.gauge-bg   { fill: none; stroke: var(--line); stroke-width: 8; }
.gauge-arc  {
  fill: none;
  stroke: var(--cobalt);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.3;
  stroke-dashoffset: 339.3;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.4,0,0.2,1) 0.6s;
}
.gauge-arc.animated { stroke-dashoffset: 0; }

.gauge-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gauge-score {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.gauge-name {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 0.25rem;
}

.audit-list { display: flex; flex-direction: column; gap: 0.75rem; }
.audit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper-2);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
}
.audit-name { font-size: 0.75rem; color: var(--muted); }
.audit-score {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cobalt-2);
}

.panel-footer {
  border-top: 1px solid var(--line);
  padding: 1rem 1.75rem;
  font-size: 0.75rem;
  color: var(--muted);
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .hero-capabilities { grid-template-columns: 1fr 1fr; }
}

/* 9. Stats / Logos Strip
   ------------------------------------------------------------ */
.stats-strip { background: var(--paper-2); }

.industry-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.5rem;
}
.industry-list span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--muted);
  transition: color var(--transition-fast);
}
.industry-list span:hover { color: var(--ink); }

.stats-note { margin-top: 1rem; font-size: 0.75rem; color: var(--muted); }

.stats-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.stat-label { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted); }

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* 10. Services Grid
   ------------------------------------------------------------ */
.services-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.services-header-right { font-size: 0.875rem; }

.services-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.service-card {
  background: var(--paper);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: background var(--transition-base);
}
.service-card:hover { background: var(--paper-2); }

.service-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--cobalt-2);
  flex-shrink: 0;
}

.service-name {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.service-desc { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); }

.service-bullets {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-bullets li { font-size: 0.875rem; color: var(--muted); }

@media (min-width: 768px) {
  .services-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 11. Portfolio Preview
   ------------------------------------------------------------ */
.portfolio-grid { display: grid; gap: 1.5rem; }

.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-base);
}
.project-card:hover { border-color: var(--cobalt-2); }

.project-category { margin-bottom: 1rem; }
.project-client {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 1rem;
}
.project-summary { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted); flex: 1; }

.project-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-speed { font-family: var(--font-mono); font-size: 0.75rem; color: var(--mint); }
.project-link  { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; color: var(--ink); }
.project-link svg { transition: transform var(--transition-fast); }
.project-card:hover .project-link svg { transform: translate(2px,-2px); }

@media (min-width: 768px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 12. Process Steps
   ------------------------------------------------------------ */
.process-steps {
  margin-top: 3.5rem;
  display: grid;
  gap: 2rem;
}

.process-step {
  border-top: 2px solid var(--cobalt);
  padding-top: 1.5rem;
}
.step-num { font-family: var(--font-mono); font-size: 0.875rem; color: var(--copper); }
.step-title {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.step-text { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}

/* 13. Tech Stack Strip
   ------------------------------------------------------------ */
.tech-strip { background: var(--paper-2); }

.tech-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tech-tag {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink);
  background: var(--paper);
}

@media (min-width: 768px) {
  .tech-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

/* 14. Testimonials
   ------------------------------------------------------------ */
.testimonials-grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }

.testimonial-card {
  border: 1px dashed var(--line);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.testimonial-quote {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--muted);
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }

.testimonial-author { margin-top: 1.5rem; }
.testimonial-name { font-size: 0.875rem; font-weight: 500; color: var(--ink); }
.testimonial-role { font-size: 0.875rem; color: var(--muted); margin-top: 0.125rem; }

.testimonials-note { margin-top: 2rem; font-size: 0.75rem; color: var(--muted); text-align: center; }

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 15. FAQ Accordion
   ------------------------------------------------------------ */
.faq-list { margin-top: 3rem; border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
}
.faq-question::-webkit-details-marker { display: none; }

details[open] .faq-question { padding-bottom: 0; }

.faq-toggle {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--copper);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  line-height: 1;
}
details[open] .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  padding-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 54rem;
}

/* 16. CTA Banner
   ------------------------------------------------------------ */
.cta-banner {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-3xl);
  padding: 4rem 2rem;
  text-align: center;
}
.cta-banner .eyebrow { display: block; text-align: center; margin-bottom: 1rem; }
.cta-banner .heading-lg { max-width: 36rem; margin-inline: auto; }
.cta-banner p { max-width: 28rem; margin-inline: auto; margin-top: 1rem; font-size: 0.875rem; color: var(--muted); }
.cta-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }

@media (min-width: 768px) {
  .cta-banner { padding: 4rem; }
}

/* 17. Page Hero (inner pages)
   ------------------------------------------------------------ */
.page-hero { border-bottom: 1px solid var(--line); }

.page-hero-inner{

    width:100%;
    max-width:100%;

    padding-top:calc(var(--space-20) + 4rem);
    padding-bottom:var(--space-20);

}

.page-hero-title { margin-top: 1rem; }
.page-hero-lead  { margin-top: 1.5rem; }

/* 18. Breadcrumbs
   ------------------------------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--muted); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-sep { color: var(--line); margin-inline: 0.25rem; }

/* 19. Two-column content grid
   ------------------------------------------------------------ */
.two-col { display: grid; gap: 3rem; }
@media (min-width: 768px) { .two-col { grid-template-columns: repeat(2, 1fr); } }

.three-col { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .three-col { grid-template-columns: repeat(3, 1fr); } }

.four-col { display: grid; gap: 2rem; }
@media (min-width: 768px) { .four-col { grid-template-columns: repeat(4, 1fr); } }

/* 20. Values / Feature Cards
   ------------------------------------------------------------ */
.feature-card { }
.feature-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.feature-card-text { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* 21. Checklist
   ------------------------------------------------------------ */
.checklist { display: flex; flex-direction: column; gap: 1rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.checklist-icon { width: 1rem; height: 1rem; flex-shrink: 0; color: var(--cobalt-2); margin-top: 0.125rem; }

/* 22. Pricing Tiers
   ------------------------------------------------------------ */
.pricing-grid { display: grid; gap: 1.5rem; }

.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.pricing-card.highlighted { border-color: var(--cobalt-2); background: var(--paper-2); }

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}
.pricing-for { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted); }
.pricing-price {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--ink);
}
.pricing-features {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.pricing-cta { margin-top: 2rem; }

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 23. Contact
   ------------------------------------------------------------ */
.contact-channels { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--ink);
  transition: border-color var(--transition-fast);
}
.contact-channel:hover { border-color: var(--cobalt-2); }
.contact-channel svg { color: var(--cobalt-2); flex-shrink: 0; }

.contact-form { background: var(--paper-2); border-radius: var(--radius-2xl); padding: 2rem; }
.contact-form h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 1.5rem; }

.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.8125rem; font-weight: 500; color: var(--ink); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(54,84,255,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; gap: 1rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }
.form-note { margin-top: 0.75rem; font-size: 0.75rem; color: var(--muted); text-align: center; }

/* 24. 404
   ------------------------------------------------------------ */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.not-found-code {
  font-family: var(--font-mono);
  font-size: 6rem;
  font-weight: 600;
  color: var(--line);
  line-height: 1;
}

/* 25. Blog / Resources
   ------------------------------------------------------------ */
.blog-grid { display: grid; gap: 1.5rem; margin-top: 3.5rem; }
.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  transition: border-color var(--transition-base);
}
.blog-card:hover { border-color: var(--cobalt-2); }
.blog-category { display: block; margin-bottom: 0.75rem; }
.blog-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.blog-excerpt { margin-top: 0.625rem; font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.blog-meta { margin-top: 1.25rem; font-size: 0.75rem; color: var(--muted); display: flex; gap: 1rem; }
.blog-link { margin-top: 1.25rem; }

@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* 26. Technologies Grid
   ------------------------------------------------------------ */
.tech-group-grid { display: grid; gap: 2.5rem; }
.tech-group-name { margin-bottom: 1rem; }
.tech-group-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

@media (min-width: 768px) { .tech-group-grid { grid-template-columns: repeat(2, 1fr); } }

/* 27. Misc Helpers
   ------------------------------------------------------------ */
.max-2xl { max-width: 42rem; }
.max-3xl { max-width: 54rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.bg-ink-2 { background: var(--paper-2); }
.text-center { text-align: center; }
.inline-flex { display: inline-flex; align-items: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* Arrow icon */
.arrow-icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.check-icon { width: 1rem; height: 1rem; flex-shrink: 0; color: var(--cobalt-2); }


/* =====================================
   ABOUT HERO
===================================== */

.about-hero-flex{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    width:100%;

}

.about-content{

    max-width:640px;

}

.about-image{

    width:100%;

    display:flex;

    justify-content:center;

}

.about-image img{

    width:100%;

    max-width:650px;

    aspect-ratio: 650 / 760;

    height:auto;

    object-fit:cover;

    border-radius:28px;

    display:block;

}

/* Scoped to the About hero only — do NOT use the bare .page-hero-title /
   .page-hero-lead selectors here, since those classes are shared by every
   inner-page hero (Blog, FAQ, Pricing, Process, Services, Technologies,
   Work, blog posts) and would otherwise override their heading size too. */
.about-hero-flex .page-hero-title{

    max-width:650px;

    font-size:clamp(2.6rem,5vw,4.5rem);

    line-height:1.02;

}

.about-hero-flex .page-hero-lead{

    max-width:600px;

}
/* 9. Testimonials (new) */
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  background: var(--paper);
}
.testimonial-quote { font-size: 1.0625rem; line-height: 1.6; color: var(--ink); }
.testimonial-attribution { margin-top: 1rem; font-size: 0.875rem; color: var(--muted); font-weight: 500; }
.trusted-by { font-family: var(--font-mono); font-size: 0.8125rem; color: var(--muted); letter-spacing: 0.02em; }
.trusted-by strong { color: var(--copper); font-weight: 500; }


/* Social */

.footer-social{

display:flex;

gap:1rem;

margin-top:1.5rem;

flex-wrap:wrap;

}

.footer-social a{

font-size:.9rem;

color:var(--muted);

transition:.25s;

}

.footer-social a:hover{

color:var(--cobalt-2);

}

/* Floating WhatsApp */

.wa-fab{

position:fixed;

bottom:24px;

right:24px;

width:64px;

height:64px;

border-radius:999px;

background:#25D366;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

box-shadow:0 20px 45px rgba(0,0,0,.18);

z-index:999;

transition:.3s ease;

}

.wa-fab:hover{

transform:translateY(-4px);

}

.wa-fab svg{

width:30px;

height:30px;

}

.wa-tip{

position:absolute;

right:78px;

white-space:nowrap;

background:#111;

color:#fff;

padding:.7rem 1rem;

border-radius:999px;

font-size:.85rem;

opacity:0;

pointer-events:none;

transition:.25s;

}

.wa-fab:hover .wa-tip{

opacity:1;

}

@media (max-width:768px){

.wa-fab{

width:56px;

height:56px;

bottom:18px;

right:18px;

}

.wa-tip{

display:none;

}

}

.footer-divider{
    width:110px;
    height:1px;
    background:var(--line);
    margin:1.75rem 0;
}


.footer-contact{
    display:flex;
    flex-direction:column;
    gap:.65rem;
    margin-top:1rem;
}

.footer-contact-item{
    display:flex;
    align-items:center;
    gap:.65rem;
    color:var(--ink);
    font-size:.95rem;
    text-decoration:none;
    transition:.25s ease;
}

.footer-contact-item:hover{
    color:var(--cobalt-2);
    transform:translateX(4px);
}

.footer-icon{
    width:16px;
    height:16px;
    flex-shrink:0;
    opacity:.7;
}

