/* ============================================
   Strategic Shift Consultancy Co. Ltd
   Complete Stylesheet - Air Mode (Lightweight)
   ============================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-medium);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- 2. CSS Custom Properties --- */
:root {
  --color-teal: #2A9D8F;
  --color-teal-hover: #218A7D;
  --color-teal-light: #E6F4F2;
  --color-navy: #1B263B;
  --color-white: #FFFFFF;
  --color-offwhite: #F8F9FA;
  --color-sand: #C9A96E;
  --color-text-dark: #1B263B;
  --color-text-medium: #5A6A7A;
  --color-text-light: #8A96A3;
  --color-border: #E2E8F0;
  --color-border-dark: #2A3A4E;
  --color-success: #27AE60;
  --color-error: #E74C3C;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --container-max: 1200px;
  --section-pad: 90px;
  --section-pad-mobile: 60px;
  --nav-height: 80px;

  --transition-fast: 0.3s ease;
  --transition-smooth: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- 3. Utility Classes --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-teal);
  display: block;
  margin-bottom: 16px;
}

.section-label.white {
  color: var(--color-white);
  opacity: 0.9;
}

.section-label.centered::before,
.section-label.centered::after {
  content: ' \2014 ';
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  line-height: 1.25;
}

h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
}

h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

p {
  color: var(--color-text-medium);
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 6px;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(42, 157, 143, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-teal) 0%, #1B7A6E 100%);
  color: var(--color-white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-teal-hover) 0%, #156B60 100%);
}

.btn-outline {
  background: transparent;
  color: var(--color-teal);
  border: 1px solid var(--color-teal);
}

.btn-outline:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

.btn-full {
  width: 100%;
}

/* --- 4. Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-dark);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-teal);
}

.page-home .nav-link[href="index.html"],
.page-about .nav-link[href="about.html"],
.page-services .nav-link[href="services.html"],
.page-contact .nav-link[href="contact.html"] {
  color: var(--color-teal);
}

.page-home .nav-link[href="index.html"]::after,
.page-about .nav-link[href="about.html"]::after,
.page-services .nav-link[href="services.html"]::after,
.page-contact .nav-link[href="contact.html"]::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--color-teal);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: all var(--transition-fast);
}

/* --- 5. Footer --- */
.footer {
  background: var(--color-navy);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  height: 45px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-teal);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--color-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--color-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid var(--color-border-dark);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--color-text-light);
}

/* --- 6. Home: Hero Slider --- */
.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-height));
  min-height: 500px;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: all;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 38, 59, 0.92) 0%, rgba(27, 38, 59, 0.75) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.slide-content h1 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.slide-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  max-width: 600px;
  margin-bottom: 32px;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.dot.active {
  background: var(--color-teal);
  border-color: rgba(255, 255, 255, 0.3);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* --- 7. Home: Intro Section --- */
.section-intro {
  background: var(--color-offwhite);
  padding: var(--section-pad) 0;
  text-align: center;
}

.section-intro h2 {
  max-width: 700px;
  margin: 0 auto 16px;
}

.section-intro p {
  max-width: 800px;
  margin: 0 auto 40px;
}

.feature-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.badge-light {
  background: var(--color-teal-light);
  color: var(--color-text-dark);
}

.badge-filled {
  background: var(--color-teal);
  color: var(--color-white);
}

.badge-filled:hover {
  background: var(--color-teal-hover);
  transform: translateY(-1px);
}

/* --- 8. Home: Services Preview --- */
.section-services-preview {
  background: var(--color-white);
  padding: var(--section-pad) 0;
  text-align: center;
}

.section-services-preview > .container > p {
  max-width: 700px;
  margin: 0 auto 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--color-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all var(--transition-fast);
}

.service-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-teal);
  fill: none;
  stroke-width: 1.5;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
  background: var(--color-teal);
}

.service-card:hover .service-icon svg {
  stroke: var(--color-white);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* --- 9. Home: Why Choose Us --- */
.section-why {
  background: var(--color-offwhite);
  padding: var(--section-pad) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
}

.why-image {
  border-radius: 12px;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-content h2 {
  text-align: left;
}

.feature-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-check {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--color-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
}

.feature-check svg {
  width: 18px;
  height: 18px;
}

.feature-item h4 {
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* --- 10. CTA Banner --- */
.section-cta {
  background: var(--color-navy);
  padding: 80px 0;
  text-align: center;
}

.section-cta h2 {
  color: var(--color-white);
  font-size: 36px;
  margin-bottom: 16px;
}

.section-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* --- 11. Page Header --- */
.page-header {
  background: var(--color-navy);
  padding: 140px 0 80px;
  text-align: center;
  margin-top: var(--nav-height);
}

.page-header h1 {
  color: var(--color-white);
  font-size: 44px;
  margin-bottom: 16px;
}

.breadcrumb {
  font-size: 14px;
  color: var(--color-text-light);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: var(--color-teal);
}

/* --- 12. About: Company Story --- */
.section-story {
  background: var(--color-white);
  padding: var(--section-pad) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-image {
  border-radius: 12px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content p {
  margin-bottom: 16px;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-teal);
}

.stat-item .stat-label {
  font-size: 14px;
  color: var(--color-text-light);
}

/* --- 13. About: Vision & Mission --- */
.section-vision-mission {
  background: var(--color-offwhite);
  padding: var(--section-pad) 0;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vm-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 50px 40px;
  border-top: 4px solid var(--color-teal);
  transition: all var(--transition-fast);
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.vm-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: var(--color-teal);
}

.vm-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-teal);
  fill: none;
  stroke-width: 1.5;
}

.vm-card h3 {
  margin-bottom: 12px;
}

/* --- 14. About: Core Values --- */
.section-values {
  background: var(--color-white);
  padding: var(--section-pad) 0;
  text-align: center;
}

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

.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px 20px;
  transition: all var(--transition-fast);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--color-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-teal);
  fill: none;
  stroke-width: 1.5;
}

.value-card h4 {
  font-size: 16px;
}

/* --- 15. About: Org Chart --- */
.section-org {
  background: var(--color-offwhite);
  padding: var(--section-pad) 0;
  text-align: center;
}

.org-chart {
  max-width: 900px;
  margin: 50px auto 0;
}

.org-level {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.org-pill {
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.org-pill.dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.org-pill.teal {
  background: var(--color-teal);
  color: var(--color-white);
}

.org-connector {
  display: flex;
  justify-content: center;
  height: 40px;
  position: relative;
}

.org-connector::before {
  content: '';
  width: 2px;
  height: 100%;
  background: var(--color-border);
}

.org-branches {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 0;
}

.org-branch {
  text-align: center;
}

.org-branch .org-pill {
  background: var(--color-teal-light);
  color: var(--color-teal);
  font-size: 13px;
  padding: 12px 24px;
}

.org-branch-label {
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 8px;
}

/* --- 16. Services: Service Blocks --- */
.section-services-detail {
  background: var(--color-white);
  padding: var(--section-pad) 0 60px;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.service-block:nth-child(even) {
  direction: rtl;
}

.service-block:nth-child(even) > * {
  direction: ltr;
}

.service-block-image {
  border-radius: 12px;
  overflow: hidden;
}

.service-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.service-block-content .service-icon {
  margin: 0 0 20px 0;
}

.service-block-content h3 {
  margin-bottom: 16px;
}

.service-block-content p {
  margin-bottom: 20px;
}

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

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text-medium);
}

.service-list li svg {
  width: 18px;
  height: 18px;
  color: var(--color-teal);
  flex-shrink: 0;
}

.service-divider {
  height: 1px;
  background: var(--color-border);
  margin: 0 0 60px 0;
}

/* --- 17. Services: Approach --- */
.section-approach {
  background: var(--color-offwhite);
  padding: var(--section-pad) 0;
}

.section-approach .container {
  max-width: 900px;
  text-align: center;
}

.approach-list {
  margin-top: 40px;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.approach-list li svg {
  width: 20px;
  height: 20px;
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- 18. Contact: Contact Section --- */
.section-contact {
  background: var(--color-white);
  padding: var(--section-pad) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 60px;
}

.contact-info h3 {
  margin-bottom: 12px;
}

.contact-info > p {
  margin-bottom: 30px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--color-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.contact-card-detail {
  font-size: 14px;
  color: var(--color-text-medium);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--color-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--color-teal);
  color: var(--color-white);
  transform: translateY(-2px);
}

.social-links a svg {
  width: 18px;
  height: 18px;
}

/* --- Contact Form --- */
.contact-form h3 {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0 16px;
  font-size: 14px;
  color: var(--color-text-dark);
  transition: all var(--transition-fast);
  background: var(--color-white);
}

.form-group textarea {
  height: auto;
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-light);
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success.visible {
  display: block;
}

.form-success-icon {
  width: 60px;
  height: 60px;
  background: var(--color-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-teal);
}

.form-success-icon svg {
  width: 30px;
  height: 30px;
}

.form-success h3 {
  color: var(--color-success);
  margin-bottom: 8px;
}

/* --- Map Placeholder --- */
.map-placeholder {
  height: 400px;
  background: var(--color-teal-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.map-placeholder p {
  font-size: 16px;
  color: var(--color-text-medium);
}

.map-placeholder span {
  font-size: 14px;
  color: var(--color-text-light);
}

/* --- 19. Responsive --- */
@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .story-grid,
  .vm-grid,
  .service-block {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  :root {
    --section-pad: 60px;
    --nav-height: 70px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .container {
    padding: 0 16px;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--color-border);
    width: 100%;
  }

  .nav-link:last-of-type {
    border-bottom: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-slider {
    height: calc(100vh - var(--nav-height));
    min-height: 400px;
  }

  .slide-content h1 {
    font-size: 32px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .story-grid,
  .vm-grid,
  .service-block,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-block:nth-child(even) {
    direction: ltr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    gap: 24px;
    flex-wrap: wrap;
  }

  .stat-item .stat-number {
    font-size: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-header {
    padding: 100px 0 60px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .feature-badges {
    flex-direction: column;
    align-items: center;
  }

  .org-branches {
    flex-direction: column;
    align-items: center;
  }

  .section-cta h2 {
    font-size: 28px;
  }
}
