/* ==========================================================================
   MEDIVANCE Supply Corp — MASTER STYLESHEET
   ========================================================================== */

/* --- BRANDING DESIGN TOKENS --- */
:root {
  /* Corporate Logo Palette Mapping */
  --brand-forest:  #2D5233;   /* Deep text/accent green */
  --brand-leaf:    #5E9E43;   /* Bright geometric icon green */
  --brand-leaf2:   #73BA54;   /* Active hover state green */
  
  --navy:          #1E2E22;   /* Deep forest black wrapper for dark section visuals */
  --navy2:         #283D2E;   /* Layered dark accents */
  --teal:          var(--brand-leaf);  
  --teal2:         var(--brand-leaf2);
  
  --white:         #FFFFFF;
  --offwhite:      #F4F7F5;   /* Crisp green-tinted light background drop */
  --muted:         #7A8E7F;   /* Grounded muted slate-green */
  --border:        rgba(45, 82, 51, 0.08); /* Sophisticated subtle brand rule */
  --border-dark:   rgba(255, 255, 255, 0.08);
  --card-bg:       #283D2E;
  --light-bg:      #F8FAF9;
  --ink:           #162419;   /* Clean highly accessible body copy contrast */
  --ink2:          #415446;   /* Secondary descriptive textual variants */

  --font-display: 'DM Serif Display', serif;
  --font-body:    'DM Sans', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --shadow: 0 8px 32px rgba(45, 82, 51, 0.1);
  --shadow-sm: 0 2px 12px rgba(45, 82, 51, 0.05);
}

/* --- RESET & GLOBAL SETUPS --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; }

/* --- GLOBAL STRUCTURES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* --- TYPOGRAPHY ENGINE --- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--brand-forest); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--brand-forest); }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }

/* --- INTERACTIVE ACTION BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  transition: var(--transition);
}
.btn-primary { background: var(--brand-forest); color: var(--white); }
.btn-primary:hover { background: var(--brand-leaf); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { border-color: var(--brand-leaf); color: var(--brand-leaf); }
.btn-nav {
  background: var(--brand-forest); color: var(--white);
  padding: 10px 22px; border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: var(--transition);
}
.btn-nav:hover { background: var(--brand-leaf); }
.btn-dark { background: var(--brand-forest); color: var(--white); }
.btn-dark:hover { background: var(--white); transform: translateY(-2px); }

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: var(--shadow-sm); }
.nav-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 32px; /* Prevents items from ever overlapping like in image_fa979e.png */
  height: 88px; 
}
.nav-logo { display: flex; align-items: center; }
.logo-main { height: 48px; width: auto; object-fit: contain; flex-shrink: 0; }

.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a { color: var(--ink2); font-size: 14px; font-weight: 500; transition: var(--transition); position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--brand-forest); transform: scaleX(0); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-forest); font-weight: 600; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* Hamburger Container Adjustment */
.nav-hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  padding: 8px;
  margin-left: auto; /* Aligns container neatly to the right edge boundary */
  align-self: center; /* Vertically balances hamburger inline with the logo */
}
.nav-hamburger span { width: 24px; height: 2px; background: var(--brand-forest); border-radius: 2px; transition: var(--transition); }
.nav-mobile {
  display: none; flex-direction: column; padding: 16px 24px 24px;
  gap: 4px; border-top: 1px solid var(--border); background: var(--white);
}
.nav-mobile a { color: var(--ink); padding: 12px 8px; font-size: 15px; border-bottom: 1px solid var(--border); }
.nav-mobile .btn-nav { margin-top: 12px; text-align: center; justify-content: center; }

/* ==========================================================================
   HOME — HERO
   ========================================================================== */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; padding-top: 100px; padding-bottom: 64px;
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(94,158,67,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,158,67,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; top: -200px; right: -200px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(94,158,67,0.12) 0%, transparent 70%); pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(94,158,67,0.12); border: 1px solid rgba(94,158,67,0.3);
  color: var(--brand-leaf); padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--brand-leaf); }
.hero p { color: #A2B5A7; font-size: 1.05rem; max-width: 480px; margin-bottom: 36px; line-height: 1.8; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 48px; background: var(--border-dark); border-radius: var(--radius); overflow: hidden; }
.hero-stat { background: rgba(255,255,255,0.03); padding: 24px 20px; text-align: center; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--brand-leaf); }
.hero-stat span { font-size: 12px; color: #A2B5A7; font-weight: 500; }

.hero-visual { position: relative; }
.hero-img-card { background: var(--card-bg); border: 1px solid var(--border-dark); border-radius: var(--radius-lg); padding: 32px; overflow: hidden; }
.hero-img-placeholder {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius);
  background: linear-gradient(135deg, #243D2A 0%, #1A2E1F 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; font-size: 64px;
}
.hero-img-placeholder p { font-size: 14px; color: var(--muted); }
.hero-float-badge {
  position: absolute; bottom: -20px; left: -20px; background: var(--brand-leaf); color: var(--white);
  padding: 16px 20px; border-radius: var(--radius); font-family: var(--font-display); font-weight: 800; font-size: 0.85rem; line-height: 1.3;
  box-shadow: 0 12px 32px rgba(94,158,67,0.3);
}
.hero-float-badge span { display: block; font-size: 1.5rem; }

/* ==========================================================================
   STATS TRUST BAR
   ========================================================================== */
.stats-bar { background: var(--offwhite); padding: 48px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 32px; text-align: center; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--brand-forest); }
.stat-item span { font-size: 13px; color: var(--ink2); font-weight: 500; margin-top: 4px; display: block; }

/* ==========================================================================
   BENEFITS / VALUE PILLARS
   ========================================================================== */
.benefits { background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.benefit-cards { display: flex; flex-direction: column; gap: 20px; }
.benefit-card { display: flex; gap: 20px; align-items: flex-start; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.benefit-card:hover { border-color: var(--brand-leaf); box-shadow: var(--shadow-sm); transform: translateX(6px); }
.benefit-icon {
  width: 48px; height: 48px; min-width: 48px; background: rgba(94,158,67,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.benefit-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--brand-forest); }
.benefit-card p { font-size: 14px; color: var(--ink2); line-height: 1.7; }
.benefits-text h2 { color: var(--brand-forest); margin-bottom: 20px; }
.benefits-text p { color: var(--ink2); margin-bottom: 32px; line-height: 1.8; }
.values-list { display: flex; flex-direction: column; gap: 14px; }
.value-item { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: var(--ink); }
.value-item::before {
  content: '✓'; width: 24px; height: 24px; min-width: 24px; background: var(--brand-leaf); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px;
}

/* ==========================================================================
   SERVICES TABS OVERVIEW
   ========================================================================== */
.services-home { background: var(--navy); }
.services-home .eyebrow { color: var(--brand-leaf); }
.services-home h2 { color: var(--white); }
.section-header { margin-bottom: 56px; }
.section-header p { color: #A2B5A7; max-width: 560px; margin-top: 12px; line-height: 1.8; }
.services-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.tab-btn {
  padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 500;
  border: 1px solid var(--border-dark); color: #A2B5A7; transition: var(--transition); cursor: pointer; background: transparent;
}
.tab-btn.active, .tab-btn:hover { background: var(--brand-leaf); color: var(--white); border-color: var(--brand-leaf); font-weight: 600; }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.tab-content h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 16px; }
.tab-content p { color: #A2B5A7; line-height: 1.8; margin-bottom: 24px; }
.tab-features { display: flex; flex-direction: column; gap: 10px; }
.tab-features li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 14px; }
.tab-features li::before { content: '→'; color: var(--brand-leaf); font-weight: 700; }

/* Cleaned Up Image Wrapper Elements */
.tab-image { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  width: 100%;
  aspect-ratio: 4/3; 
  border-radius: var(--radius-lg); 
  background: var(--card-bg); 
  border: 1px solid var(--border-dark); 
  overflow: hidden;
}
.tab-image img, .tab-img { 
  width: 100% !important; 
  height: 100% !important; 
  object-fit: cover !important; 
}
/* ==========================================================================
   SERVICES GRID CATALOG
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--light-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); cursor: pointer; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--brand-leaf); transform: scaleX(0); transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--brand-leaf); }
.service-card:hover::after { transform: scaleX(1); }
.service-card-icon { font-size: 40px; margin-bottom: 20px; }
.service-card h3 { color: var(--brand-forest); margin-bottom: 12px; font-size: 1.1rem; }
.service-card p { font-size: 14px; color: var(--ink2); line-height: 1.7; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-forest); font-size: 13px; font-weight: 600; margin-top: 20px; transition: var(--transition); }
.service-card:hover .service-card-link { gap: 10px; color: var(--brand-leaf); }

/* ==========================================================================
   PROCESS WORKFLOW STEPS
   ========================================================================== */
.process { background: var(--offwhite); }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: calc(16.66% + 20px); right: calc(16.66% + 20px); height: 2px;
  background: linear-gradient(90deg, var(--brand-forest), rgba(94,158,67,0.3));
}
.process-step { text-align: center; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%; background: var(--brand-forest); color: var(--brand-leaf);
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  position: relative; z-index: 1; box-shadow: 0 0 0 8px var(--offwhite);
}
.process-step h3 { color: var(--brand-forest); margin-bottom: 12px; }
.process-step p { font-size: 14px; color: var(--ink2); line-height: 1.7; }

/* ==========================================================================
   TARGET INDUSTRIES
   ========================================================================== */
.industries { background: var(--white); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.industry-item { background: var(--light-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 16px; display: flex; align-items: center; gap: 14px; font-size: 14px; font-weight: 500; color: var(--ink); transition: var(--transition); }
.industry-item:hover { border-color: var(--brand-leaf); background: rgba(94,158,67,0.05); }
.industry-item span:first-child { font-size: 22px; }

/* ==========================================================================
   FEATURES MATRIX
   ========================================================================== */
.features { background: var(--navy); }
.features .eyebrow, .features h2 { color: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.feature-item { background: var(--card-bg); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 28px; transition: var(--transition); }
.feature-item:hover { border-color: rgba(94,158,67,0.4); transform: translateY(-4px); }
.feature-icon { font-size: 28px; margin-bottom: 16px; }
.feature-item h3 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.feature-item p { font-size: 13px; color: #A2B5A7; line-height: 1.7; }

/* ==========================================================================
   TESTIMONIAL REVIEWS
   ========================================================================== */
.testimonials { background: var(--offwhite); }
.testimonials-slider { overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform 0.5s ease; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; min-width: calc(33.33% - 16px); flex-shrink: 0; }
.testimonial-stars { color: #F59E0B; font-size: 14px; margin-bottom: 16px; }
.testimonial-card blockquote { font-size: 15px; color: var(--ink); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-forest), var(--brand-leaf)); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.author-info strong { display: block; font-size: 14px; color: var(--brand-forest); font-weight: 600; }
.author-info span { font-size: 12px; color: var(--muted); }
.slider-controls { display: flex; gap: 12px; margin-top: 32px; justify-content: center; }
.slider-btn { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid #CBD5E0; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: var(--transition); cursor: pointer; }
.slider-btn:hover { border-color: var(--brand-leaf); color: var(--brand-leaf); }

/* ==========================================================================
   CALL TO ACTION BANNER
   ========================================================================== */
.cta-banner { background: linear-gradient(135deg, var(--brand-forest) 0%, #1A3320 100%); padding: 80px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-text h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-text p { color: rgba(255,255,255,0.7); margin-top: 8px; font-size: 15px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ==========================================================================
   CONTACT MODULES
   ========================================================================== */
.contact-section { background: var(--white); padding-top: 120px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info h2 { color: var(--brand-forest); margin-bottom: 16px; }
.contact-info > p { color: var(--ink2); line-height: 1.8; margin-bottom: 40px; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--light-bg); border: 1px solid var(--border); border-radius: var(--radius); }
.contact-card-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 10px; background: rgba(94,158,67,0.12); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--brand-leaf); }
.contact-card h4 { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-card p { font-size: 14px; color: var(--ink); }
.contact-form-card { background: var(--light-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px; }
.contact-form-card h3 { color: var(--brand-forest); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid #D1DCE8; border-radius: 8px; font-family: var(--font-body); font-size: 14px; background: var(--white); color: var(--ink); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand-leaf); box-shadow: 0 0 0 3px rgba(94,158,67,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; font-size: 15px; }
.success-msg { background: rgba(94,158,67,0.1); border: 1.5px solid var(--brand-leaf); color: var(--brand-forest); padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; font-weight: 500; font-size: 14px; }

/* ==========================================================================
   INTERNAL PAGE SCHEMATICS
   ========================================================================== */
.page-hero { padding: 160px 0 80px; text-align: center; background: var(--navy); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: #A2B5A7; max-width: 560px; margin: 0 auto; line-height: 1.8; font-size: 1.05rem; }

.about-story { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { background: var(--light-bg); border-radius: var(--radius-lg); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 100px; }
.about-visual svg { color: var(--brand-leaf); stroke-linecap: round; stroke-linejoin: round; }
.about-text h2 { color: var(--brand-forest); margin-bottom: 20px; }
.about-text p { color: var(--ink2); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.mission-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.mv-card { padding: 20px; background: var(--light-bg); border-radius: var(--radius); border-left: 3px solid var(--brand-leaf); }
.mv-card h4 { color: var(--brand-forest); margin-bottom: 6px; font-size: 0.95rem; }
.mv-card p { font-size: 13px; color: var(--ink2); line-height: 1.6; }

.team-section { background: var(--offwhite); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.team-card { text-align: center; }
.team-avatar { width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--brand-forest) 0%, #1A3320 100%); display: flex; align-items: center; justify-content: center; font-size: 48px; margin-bottom: 16px; }
.team-avatar svg { width: 48px; height: 48px; color: var(--brand-leaf); stroke-linecap: round; stroke-linejoin: round; }
.team-card h3 { font-size: 1rem; color: var(--brand-forest); }
.team-card span { font-size: 13px; color: var(--muted); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { 
  background: var(--white); 
  padding: 80px 0 0; 
  border-top: 1px solid var(--border);
}
.footer-grid { 
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1fr; 
  gap: 48px; 
  padding-bottom: 48px; 
  border-bottom: 1px solid var(--border); 
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { color: var(--ink2); font-size: 14px; line-height: 1.8; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border); color: var(--ink2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--brand-forest); color: var(--brand-forest); background: var(--offwhite); }
.footer-col h4 { 
  color: var(--brand-forest); 
  font-size: 13px; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.08em; 
  margin-bottom: 20px; 
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--ink2); font-size: 14px; transition: var(--transition); }
.footer-col ul li:not(:has(a)) { color: var(--ink2); font-size: 14px; }
.footer-col ul li a:hover { color: var(--brand-forest); font-weight: 500; }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { color: var(--muted); font-size: 13px; }

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links, .btn-nav { display: none !important; }
  
  /* Hamburger placement fix */
  .nav-hamburger { 
    display: flex !important; 
  }
  .nav-mobile.open { display: flex; }

  /* Hero Mobile UI Overhaul Fixes with !important flags to override backend code templates */
  .hero {
    min-height: auto !important; 
    padding-top: 130px !important; 
    padding-bottom: 60px !important;
  }
  .hero-inner { 
    grid-template-columns: 1fr !important; 
    gap: 32px !important; 
  }
  .hero-visual { 
    display: block !important; 
    width: 100% !important;
  }
  .hero-img-card {
    padding: 16px !important;
  }
  .hero p {
    max-width: 100% !important;
  }

  .benefits-grid { grid-template-columns: 1fr; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .tab-image { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .testimonial-card { min-width: calc(100% - 0px); }
  .cta-inner { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .mission-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .industries-grid { grid-template-columns: 1fr; }
}

/* --- ADAPTIVE ASSET ELEMENT DECORATIONS --- */
.benefit-icon svg, .feature-icon svg, .industry-icon svg { width: 32px; height: 32px; color: var(--brand-leaf); stroke-linecap: round; stroke-linejoin: round; }
.benefit-icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: rgba(94, 158, 67, 0.1); border-radius: 12px; margin-bottom: 16px; flex-shrink: 0; transition: var(--transition); }
.benefit-card:hover .benefit-icon { background: rgba(94, 158, 67, 0.15); transform: translateY(-4px); }
.feature-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: rgba(94, 158, 67, 0.12); border-radius: 10px; margin-bottom: 12px; transition: var(--transition); }
.feature-item:hover .feature-icon { background: rgba(94, 158, 67, 0.2); transform: scale(1.1); }
.industry-icon { width: 28px; height: 28px; margin-right: 12px; flex-shrink: 0; }

.hero-img, .tab-img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; display: block; }
.hero-img-card { position: relative; overflow: hidden; border-radius: 20px; background: rgba(94, 158, 67, 0.1); aspect-ratio: 4 / 3.5; }
.tab-image { display: flex; align-items: center; justify-content: center; min-height: 300px; border-radius: 16px; overflow: hidden; background: rgba(94, 158, 67, 0.08); }
.tab-image img { width: 100%; height: 100%; object-fit: cover; }

/* --- SCROLL REVEAL TRIGGERS --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}