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

:root {
  --navy: #1B2A49;
  --navy-dark: #0F1A2E;
  --gold: #C8A951;
  --gold-light: #D4BA6A;
  --white: #FFFFFF;
  --off-white: #F9F7F4;
  --light-grey: #E8E8E8;
  --text: #333333;
  --text-light: #666666;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

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


 
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header & Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-grey);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1.5px;
}

.logo-name span {
  color: var(--gold);
}

.logo-tagline {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}

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

.nav a {
  font-size: 14px;
  font-weight: 500;
  
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav a:hover {
  color: var(--gold);
}

.nav a:hover::after {
  width: 100%;
}

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

.nav a.active::after {
  width: 100%;
}

.linkedin-icon {
  width: 18px;
  height: 18px;
  color: var(--navy);
  transition: color 0.3s;
  margin-left: 8px;
}
 
.linkedin-icon:hover {
  color: var(--navy);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: 0.3s;
}

/* ===== Transparent header over hero banners (all pages) ===== */
.header {
  background: transparent;
  border-bottom-color: transparent;
}
.header .logo-name {
  color: #fff;
}
 

.about_a{
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.header .nav a.active {
  color: var(--gold);
}
.header .linkedin-icon {
  color: #fff;
}
/* After scrolling past the hero: solid white header again */
.header.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--light-grey);
}
.header.scrolled .logo-name {
  color: var(--navy);
}
.header.scrolled .nav a {
  color: var(--navy);
  text-shadow: none;
}
.header.scrolled .linkedin-icon {
  color: var(--navy);
}

/* ===== Hero Section ===== */
.hero {
  position: relative; 
  /*display: flex; */
  align-items: center;
  /*overflow: hidden; */
  margin-top: 76px;

}

 
.hero-bg {
  /*position: absolute;*/
  inset: 0;
  z-index: 0;
  

} 

.hero-bg img {
  margin: atuto 0;
  width: 1000px;
  height: 300px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,73,0.85) 0%, rgba(27,42,73,0.4) 60%, transparent 100%);
  z-index: 1;
  width: 100%;
  height: 300px;
}  

 .hero-content {
  position: relative;
  z-index: 2;
  max-width: 280px;
  padding: 60px 0;
} 

.hero-subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero .hero-title {
  color: var(--white);
}

.hero .gold-title {
  color: var(--gold);
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

.hero-text {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200,169,81,0.4);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27,42,73,0.4);
}

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

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

.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* ===== Feature Bar ===== */
.feature-bar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 40px 0;
  border-top: 1px solid var(--light-grey);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--light-grey);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.feature-item:nth-child(2n) .feature-icon {
  background: var(--gold);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.feature-desc {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== Section Styles ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-text {
  font-size: 16px;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.gold-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ===== About Page Specific ===== */
.about-hero {
  background: #16243c;
  color: var(--white);
  padding: 140px 0 100px;
}

.about-hero .hero-title {
  color: var(--white);
}

.about-hero .hero-text {
  max-width: 600px;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  /*box-shadow: 0 20px 60px rgba(0,0,0,0.12);*/
}

.about-image img {
  /*width: 100%;*/
  height: 300px;
  object-fit: cover;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.checklist li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

/* Stats */
.stats-section {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
}

/* Why Work With Me Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--light-grey);
  transition: all 0.3s;
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.why-card:hover .why-icon {
  background: var(--navy);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  transition: color 0.3s;
}

.why-card:hover .why-icon svg {
  color: var(--gold);
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 10px;
}

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

/* ===== Services Page ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--light-grey);
  transition: all 0.3s;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-color: transparent;
}

.service-card-image {
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 28px;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  margin: -48px auto 16px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
}

.service-icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  text-align: center;
}

.service-card .gold-line {
  width: 30px;
  margin: 10px auto 16px;
}

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

.service-card ul {
  margin-top: 12px;
}

.service-card ul li {
  font-size: 13px;
  color: var(--text-light);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.industry-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.industry-item:hover {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.industry-item svg {
  width: 32px;
  height: 32px;
  color: var(--navy);
  margin-bottom: 12px;
}

.industry-item p {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

/* ===== Contact Page ===== */
.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 140px 0 80px;
  color: var(--white);
}

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

.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--light-grey);
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-grey);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  transition: border-color 0.3s;
  background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

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

.contact-info-box {
  padding: 20px 0;
}

.contact-info-box h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--off-white);
  border-radius: 8px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.contact-detail h4 {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  font-size: 14px;
  color: var(--text-light);
}

.contact-detail a:hover {
  color: var(--gold);
}

.services-help-list h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 24px;
}

.services-help-list .help-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--off-white);
  border-radius: 8px;
}

.help-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.help-item h4 {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
}

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

/* ===== Blog Page ===== */
.blog-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 140px 0 80px;
  color: var(--white);
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--light-grey);
  transition: all 0.3s;
}

.blog-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

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

.blog-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

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

.blog-meta {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-meta svg {
  width: 14px;
  height: 14px;
}

/* Blog Sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
}

/* Sidebar */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 28px;
}

.sidebar-widget h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.search-form {
  display: flex;
  border: 1px solid var(--light-grey);
  border-radius: 4px;
  overflow: hidden;
}

.search-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  font-size: 14px;
  font-family: var(--font-body);
  background: var(--off-white);
}

.search-form input:focus {
  outline: none;
}

.search-form button {
  padding: 12px 16px;
  background: var(--navy);
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s;
}

.search-form button:hover {
  background: var(--gold);
}

.category-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-grey);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list a {
  color: var(--text);
  transition: color 0.3s;
}

.category-list a:hover {
  color: var(--gold);
}

.category-count {
  font-size: 12px;
  font-weight: 700;
  background: var(--gold);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 10px;
}

.newsletter-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-grey);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font-body);
  margin-bottom: 12px;
  background: var(--off-white);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--off-white);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy);
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 16px;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-name {
  color: var(--white);
  font-size: 20px;
}

.footer-brand .logo-tagline {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
}

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

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

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

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

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

.footer-contact svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--gold);
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
}

.footer-bottom a {
  color: var(--gold);
}

/* ===== Page Section (non-hero) ===== */
.page-section {
  padding: 80px 0;
}

.page-section-alt {
  background: var(--off-white);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col.reverse .col-image {
  order: 2;
}

.two-col.reverse .col-text {
  order: 1;
}

.col-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.col-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.col-text h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
}

.col-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

  .feature-item:nth-child(2)::after {
    display: none;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--light-grey);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 40px;
  }

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

  .feature-item::after {
    display: none !important;
  }

  .about-split,
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .two-col.reverse .col-image {
    order: unset;
  }

  .two-col.reverse .col-text {
    order: unset;
  }

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

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

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

  .page-section {
    padding: 50px 0;
  }
}
