/* ============================================================
   REMEDIMATE — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* === VARIABLES === */
:root {
  --green:        #47B54A;
  --green-dark:   #329436;
  --green-light:  #E8F5E9;
  --green-muted:  #4A8A4A;
  --gold:         #F5A020;
  --gold-light:   #FFF4DE;
  --dark:         #383838;
  --navy:         #1C2B3A;
  --white:        #FFFFFF;
  --light-bg:     #F7FBF7;
  --gray:         #666666;
  --border:       #E2E8E2;
  --shadow:       0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.12);
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   0.22s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', Arial, sans-serif; color: var(--dark); background: var(--white); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { color: var(--gray); }

/* === LAYOUT === */
.container  { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-alt { background: var(--light-bg); }

.section-header { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-header p { margin-top: 12px; font-size: 1.05rem; }

.tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600; font-size: 0.92rem;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary  { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(71,181,74,0.32); }
.btn-outline  { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn-white    { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-gold     { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: #d98c10; border-color: #d98c10; transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 1rem; }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo img { height: 54px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--dark);
  transition: color var(--transition); position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--green); transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 12px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }
.nav-mobile { display: none; padding: 20px 24px 24px; border-top: 1px solid var(--border); background: white; }
.nav-mobile.open { display: block; }
.nav-mobile li { border-bottom: 1px solid #f0f0f0; }
.nav-mobile li a { display: block; padding: 11px 0; font-weight: 500; }
.nav-mobile .btn { display: block; text-align: center; margin-top: 16px; }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3a1f 100%);
  padding: 100px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 40%, rgba(71,181,74,0.18) 0%, transparent 58%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
.hero-content { color: white; }
.hero-tag {
  display: inline-block; background: rgba(71,181,74,0.18); color: #82E285;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px; margin-bottom: 20px; border: 1px solid rgba(71,181,74,0.28);
}
.hero h1 { color: white; margin-bottom: 18px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { color: rgba(255,255,255,0.72); font-size: 1.08rem; margin-bottom: 36px; max-width: 460px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); display: block; line-height: 1; }
.hero-stat-label { font-size: 0.87rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Hero Visual Cards */
.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.hero-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 20px 22px; backdrop-filter: blur(8px);
}
.hero-card-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.hero-card-title { font-size: 1rem; font-weight: 600; color: white; margin-bottom: 6px; }
.hero-card-status { display: inline-flex; align-items: center; gap: 6px; font-size: 0.86rem; font-weight: 500; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; }
.dot-green { background: var(--green); animation: blink 2s infinite; }
.dot-gold  { background: var(--gold); animation: blink 2.5s infinite; }
.dot-grey  { background: #888; }
.status-green { color: #82E285; }
.status-gold  { color: var(--gold); }
.status-grey  { color: rgba(255,255,255,0.4); }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

/* === TRUST BAR === */
.trust-bar { background: var(--navy); padding: 20px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.75); font-size: 0.92rem; font-weight: 500; }
.trust-icon { font-size: 1.1rem; }
.trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.15); }

/* === PROBLEM / SOLUTION === */
.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ps-card { border-radius: var(--radius); padding: 40px 36px; }
.ps-problem  { background: #FFF5F5; border: 1px solid #FFCDD2; }
.ps-solution { background: var(--green-light); border: 1px solid #C8E6C9; }
.ps-card-icon { font-size: 2.2rem; margin-bottom: 16px; }
.ps-card h3 { margin-bottom: 20px; }
.ps-card ul { display: flex; flex-direction: column; gap: 11px; }
.ps-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.98rem; color: var(--gray); }
.ps-card li .ps-icon-x { color: #E53E3E; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.ps-card li .ps-icon-c { color: var(--green-dark); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* === SERVICE CARDS (homepage) === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: all var(--transition);
}
.service-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-icon {
  width: 50px; height: 50px; background: var(--green-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 9px; font-size: 1.05rem; }
.service-card p  { font-size: 0.94rem; margin-bottom: 14px; }
.service-link { font-size: 0.9rem; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 4px; transition: gap var(--transition); }
.service-card:hover .service-link { gap: 8px; }

/* === BEFORE / AFTER PANELS === */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.g-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: white; }

/* Default: side by side (portrait photos) */
.g-pair { display: flex; height: 320px; }
.g-before {
  flex: 1; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #5a3020, #3a1f10);
  border-right: 2px solid rgba(255,255,255,0.35);
}
.g-after {
  flex: 1; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2d5a3d, #1a3f28);
}
.g-before img, .g-after img { width: 100%; height: 100%; object-fit: cover; }

/* Single-photo (rafters) */
.g-photo { height: 320px; position: relative; overflow: hidden; background: linear-gradient(135deg, #2a4020, #3a6030); }
.g-photo img { width: 100%; height: 100%; object-fit: cover; }

.g-label {
  position: absolute; bottom: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.4); padding: 3px 8px; border-radius: 3px;
}
.g-before .g-label { left: 8px; }
.g-after  .g-label { right: 8px; }
.g-photo  .g-label { right: 8px; }

/* Landscape override: stack vertically */
.g-item.landscape .g-pair { flex-direction: column; height: 440px; }
.g-item.landscape .g-before { border-right: none; border-bottom: 2px solid rgba(255,255,255,0.35); }

/* === STEPS === */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 30px;
  left: calc(16.67% + 14px); right: calc(16.67% + 14px);
  height: 2px; background: linear-gradient(to right, var(--green), var(--gold));
}
.step { text-align: center; }
.step-num {
  width: 60px; height: 60px; background: var(--green); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; margin: 0 auto 20px;
  position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(71,181,74,0.32);
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p  { font-size: 0.94rem; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3a1f 100%);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(71,181,74,0.16) 0%, transparent 65%);
}
.cta-banner h2, .cta-banner h3 { color: white; position: relative; margin-bottom: 14px; }
.cta-banner p   { color: rgba(255,255,255,0.68); margin-bottom: 36px; position: relative; font-size: 1.05rem; }
.cta-buttons    { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* === FOOTER === */
.footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { margin-top: 16px; font-size: 0.93rem; max-width: 260px; line-height: 1.65; }
.footer-logo { height: 44px; filter: brightness(0) invert(1); margin-bottom: 2px; }
.footer-col h4 { color: white; font-size: 0.86rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.93rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--green); }
.footer-email { color: var(--green) !important; font-weight: 500; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; }

/* === PAGE HEADER === */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3a1f 100%);
  padding: 76px 0 60px; text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(71,181,74,0.14) 0%, transparent 60%);
}
.page-header .tag   { background: rgba(71,181,74,0.18); color: #82E285; border: 1px solid rgba(71,181,74,0.28); position: relative; }
.page-header h1     { color: white; position: relative; }
.page-header .lead  { color: rgba(255,255,255,0.68); margin-top: 12px; font-size: 1.05rem; position: relative; max-width: 520px; margin-left: auto; margin-right: auto; }

/* === SERVICES PAGE === */
.service-detail { padding: 72px 0; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.svc-grid.rev { direction: rtl; }
.svc-grid.rev > * { direction: ltr; }
.svc-img { border-radius: var(--radius); overflow: hidden; height: 340px; }
.svc-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
}
.svc-placeholder span { font-size: 3.5rem; }
.svc-placeholder p { font-size: 0.82rem; font-weight: 600; text-align: center; opacity: 0.7; }
.svc-content h2 { margin-bottom: 14px; font-size: 1.75rem; }
.svc-content > p { margin-bottom: 22px; }
.svc-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.svc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--gray); }
.svc-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* === GALLERY PAGE === */
.gallery-filters { display: flex; gap: 10px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn {
  padding: 9px 22px; border: 2px solid var(--border); border-radius: 30px;
  background: white; font-family: 'Poppins',Arial,sans-serif;
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition); color: var(--gray);
}
.filter-btn.active, .filter-btn:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }
.gallery-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-item { display: none; }
.gallery-item.visible { display: block; }

/* === SOLAR PARTNERS PAGE === */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; }
.value-card .service-icon { margin-bottom: 18px; }
.value-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.value-card p  { font-size: 0.9rem; }
.partner-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.partner-steps::before {
  content: ''; position: absolute; top: 28px;
  left: calc(12.5% + 10px); right: calc(12.5% + 10px);
  height: 2px; background: linear-gradient(to right, var(--green), var(--gold));
}
.p-step { text-align: center; }
.p-step-num {
  width: 56px; height: 56px; background: var(--green); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; margin: 0 auto 16px;
  position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(71,181,74,0.28);
}
.p-step h4 { font-size: 1rem; margin-bottom: 6px; }
.p-step p  { font-size: 0.92rem; }
.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.capability-item { display: flex; align-items: flex-start; gap: 14px; padding: 22px; background: white; border: 1px solid var(--border); border-radius: var(--radius); }
.cap-icon { font-size: 1.6rem; flex-shrink: 0; }
.cap-text h4 { font-size: 1rem; margin-bottom: 4px; }
.cap-text p  { font-size: 0.92rem; }

/* === FAQ === */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; color: var(--navy); font-size: 0.97rem;
  padding: 22px 0; gap: 16px; user-select: none;
}
.faq-arrow { color: var(--green); font-size: 1.1rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding-bottom: 20px; color: var(--gray); font-size: 1rem; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* === ABOUT PAGE === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-block { border-radius: var(--radius); overflow: hidden; height: 420px; background: linear-gradient(135deg, var(--green-light) 0%, #b8dfb8 100%); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; }
.about-img-block span { font-size: 4rem; }
.about-img-block p { color: var(--green-muted); font-weight: 600; font-size: 0.9rem; }
.about-content h2 { margin-bottom: 16px; }
.about-content p  { margin-bottom: 16px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-box { text-align: center; background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 16px; }
.stat-num { font-size: 2.4rem; font-weight: 800; color: var(--green); display: block; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.88rem; color: var(--gray); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-box { border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--border); background: white; }
.value-box h3 { font-size: 1.05rem; margin: 12px 0 8px; }
.value-box p  { font-size: 0.94rem; }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info .lead { margin-bottom: 36px; font-size: 1.02rem; }
.contact-method { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.c-icon { width: 42px; height: 42px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.c-label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); margin-bottom: 3px; }
.c-value { font-size: 0.97rem; font-weight: 600; color: var(--navy); }
.c-value a { color: var(--green); }
.contact-form { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 15px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'Poppins',Arial,sans-serif;
  font-size: 0.92rem; color: var(--dark); transition: border-color var(--transition); background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-row     { grid-template-columns: repeat(2, 1fr); }
  .partner-steps { grid-template-columns: repeat(2, 1fr); }
  .partner-steps::before { display: none; }
  .value-grid    { grid-template-columns: repeat(2, 1fr); }
  .capability-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 60px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .trust-bar-inner { flex-direction: column; align-items: center; gap: 16px; }
  .trust-divider { display: none; }
  .ps-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-masonry { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .svc-grid, .svc-grid.rev { grid-template-columns: 1fr; direction: ltr; }
  .partner-steps { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .page-header { padding: 56px 0 44px; }
}
