/* =============================================
   CHAAN SOLUTIONS — main.css
   ============================================= */

/* --- Variables --- */
:root {
  --charcoal:       #1E1E20;
  --charcoal-mid:   #2E2E32;
  --charcoal-light: #3E3E44;
  --orange:         #E8956D;
  --orange-light:   #F0A882;
  --orange-dim:     rgba(232,149,109,0.12);
  --off-white:      #FAFAF7;
  --grey:           #8E8E99;
  --grey-light:     #E8E8E4;
  --font:           'Outfit', sans-serif;
  --nav-h:          72px;
  --max-w:          1120px;
  --radius:         4px;
  --transition:     0.2s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--charcoal);
  border-bottom: 2px solid var(--charcoal-mid);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--off-white);
  flex-shrink: 0;
}

.nav-logo .mark-1 { fill: var(--off-white); }
.nav-logo .mark-2 { fill: var(--orange); }
.nav-logo .mark-3 { fill: var(--off-white); opacity: 0.25; }

.nav-logo-text {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--off-white);
}

.nav-logo-text span {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--off-white);
  background: var(--charcoal-mid);
}

.nav-links a.active { color: var(--orange); }

/* Contact link stands out */
.nav-links li:last-child a {
  background: var(--orange);
  color: var(--charcoal);
  font-weight: 600;
  padding: 6px 18px;
}

.nav-links li:last-child a:hover {
  background: var(--orange-light);
  color: var(--charcoal);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--orange);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--off-white);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--off-white);
  border: 2px solid var(--charcoal);
}

.btn-dark:hover {
  background: var(--charcoal-mid);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--charcoal);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: var(--orange);
  opacity: 0.04;
  border-radius: 50%;
  pointer-events: none;
}

.page-hero .container { position: relative; }

.page-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--off-white);
  max-width: 700px;
  margin-bottom: 24px;
}

.page-hero p {
  font-size: 18px;
  font-weight: 300;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.7;
}

/* --- Section spacing --- */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--charcoal); }
.section-mid { background: var(--charcoal-mid); }
.section-tint { background: #F0EFE9; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-title.light { color: var(--off-white); }

.section-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal-light);
  max-width: 620px;
}

.section-body.light { color: var(--grey); }

/* --- HOME: Hero --- */
.home-hero {
  background: var(--charcoal);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg-mark {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
  pointer-events: none;
}

.hero-content { position: relative; max-width: 780px; }

.hero-content h1 {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--off-white);
  margin-bottom: 28px;
}

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

.hero-content p {
  font-size: 19px;
  font-weight: 300;
  color: var(--grey);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- HOME: Pillars --- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: -2px;
}

.pillar {
  background: var(--charcoal-mid);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

.pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pillar:hover::after { transform: scaleX(1); }
.pillar:hover { background: var(--charcoal-light); }

.pillar-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 20px;
}

.pillar h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin-bottom: 14px;
}

.pillar p {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.7;
}

/* --- HOME: Services preview --- */
.services-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  padding: 40px;
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}

.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.service-card-icon {
  width: 44px; height: 44px;
  background: var(--orange-dim);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--orange);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-card:hover .service-card-link { gap: 10px; }

/* --- HOME: Why Chaan --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-point-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 8px;
}

.why-point p {
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal-light);
  line-height: 1.6;
}

.why-point p strong {
  color: var(--charcoal);
  font-weight: 600;
}

.why-visual {
  background: var(--charcoal);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.why-visual-quote {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin-bottom: 32px;
}

.why-visual-quote span { color: var(--orange); }

.why-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.why-stat-num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--orange);
  line-height: 1;
}

.why-stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--grey);
  letter-spacing: 0.05em;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--orange);
  padding: 80px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  line-height: 1.1;
}

.cta-banner p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(30,30,32,0.7);
  margin-top: 10px;
  max-width: 480px;
}

/* --- SERVICES PAGE --- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-full {
  background: var(--off-white);
  padding: 64px;
  border-left: 4px solid transparent;
  transition: border-color var(--transition);
}

.service-full:hover { border-color: var(--orange); }
.service-full:nth-child(even) { background: #F0EFE9; }

.service-full-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.service-full h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

.service-full > p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal-light);
  max-width: 680px;
  margin-bottom: 40px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.service-detail h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.service-detail ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-detail li {
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal-light);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.service-detail li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

/* --- ABOUT PAGE --- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.value-card {
  background: var(--off-white);
  padding: 40px;
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
}

.value-card:hover { border-color: var(--orange); }
.value-card:nth-child(even) { background: #F0EFE9; }

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.mission-block {
  background: var(--charcoal);
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.mission-block::before {
  content: '';
  position: absolute;
  right: -40px; bottom: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.06;
}

.mission-block p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--off-white);
  position: relative;
}

.mission-block p span { color: var(--orange); }

/* --- PORTFOLIO PAGE --- */
.portfolio-placeholder {
  text-align: center;
  padding: 120px 0;
}

.portfolio-placeholder h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.portfolio-placeholder p {
  font-size: 18px;
  font-weight: 300;
  color: var(--grey);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* --- BLOG PAGE --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.blog-card {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.blog-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.blog-card-body { padding: 32px; }

.blog-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.65;
  margin-bottom: 24px;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-card-date {
  font-size: 12px;
  color: var(--grey);
}

.blog-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.blog-card:hover .blog-card-link { gap: 8px; }

.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 40px;
  background: var(--off-white);
  border: 1px dashed var(--grey-light);
  border-radius: var(--radius);
}

.blog-empty p {
  font-size: 17px;
  color: var(--grey);
  font-weight: 300;
}

/* --- Blog Post --- */
.post-article { padding-bottom: 96px; }

.post-header {
  background: var(--charcoal);
  padding: 80px 0 64px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.post-back {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
  transition: color var(--transition);
}

.post-back:hover { color: var(--orange); }

.post-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  padding: 3px 10px;
  border-radius: 2px;
}

.post-header h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--off-white);
  max-width: 760px;
  margin-bottom: 16px;
}

.post-date {
  font-size: 14px;
  color: var(--grey);
  font-weight: 400;
}

.post-body {
  padding-top: 64px;
  max-width: 740px;
}

.post-body h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin: 48px 0 16px;
}

.post-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 32px 0 12px;
}

.post-body p {
  font-size: 17px;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.post-body ul, .post-body ol {
  margin: 0 0 24px 24px;
  list-style: disc;
}

.post-body li {
  font-size: 17px;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

.post-body strong { color: var(--charcoal); font-weight: 600; }

.post-body a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-body blockquote {
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
}

.post-body blockquote p {
  font-size: 19px;
  font-weight: 500;
  color: var(--charcoal);
  font-style: italic;
}

.post-body code {
  font-family: monospace;
  font-size: 14px;
  background: var(--grey-light);
  padding: 2px 6px;
  border-radius: 2px;
  color: var(--charcoal);
}

.post-body pre {
  background: var(--charcoal);
  padding: 24px;
  border-radius: var(--radius);
  overflow-x: auto;
  margin-bottom: 24px;
}

.post-body pre code {
  background: none;
  color: var(--off-white);
  padding: 0;
}

/* --- CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 40px; }

.contact-info-block h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.contact-info-block p {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.contact-form {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  padding: 48px;
  border-radius: var(--radius);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- Footer --- */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--charcoal-mid);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand .nav-logo { margin-bottom: 12px; }

.footer-brand p {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--grey);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--off-white); }

.footer-base {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid var(--charcoal-mid);
}

.footer-base p {
  font-size: 12px;
  color: var(--grey);
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--charcoal);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid var(--charcoal-mid);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }

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

  .nav-links a { padding: 12px 16px; }

  .nav-links li:last-child a { text-align: center; margin-top: 8px; }

  .pillars { grid-template-columns: 1fr; }
  .services-preview { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-full { padding: 40px 24px; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 32px 24px; }
}
