/*
 * H2 Marketing Agency — Global Stylesheet (Rebuilt)
 * Version: 2.0.0
 * Color Palette:
 *   Primary Orange  : #FF6B00
 *   Golden Yellow   : #FFB800
 *   Accent Orange   : #FF8C00
 *   Dark Navy       : #1A1A2E
 *   Light Cream     : #FFF8F0
 *   White           : #FFFFFF
 *   Gray Body       : #555566
 *   Light Gray BG   : #F5F5F5
 */

/* =============================================
   1. CSS CUSTOM PROPERTIES (TOKENS)
   ============================================= */
:root {
  --h2-primary:       #FF6B00;
  --h2-secondary:     #FFB800;
  --h2-accent:        #FF8C00;
  --h2-dark:          #1A1A2E;
  --h2-dark-mid:      #16213E;
  --h2-light:         #FFF8F0;
  --h2-white:         #FFFFFF;
  --h2-body:          #555566;
  --h2-gray-bg:       #F5F5F5;
  --h2-border:        rgba(255,107,0,0.15);

  /* Gradients */
  --h2-grad-main:     linear-gradient(135deg, #FF6B00 0%, #FFB800 100%);
  --h2-grad-warm:     linear-gradient(135deg, #FF8C00 0%, #FFB800 100%);
  --h2-grad-dark:     linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  --h2-grad-card:     linear-gradient(145deg, #ffffff 0%, #FFF8F0 100%);
  --h2-grad-overlay:  linear-gradient(135deg, rgba(26,26,46,0.80) 0%, rgba(255,107,0,0.55) 100%);

  /* Shadows */
  --h2-shadow-sm:     0 2px 10px rgba(255,107,0,0.15);
  --h2-shadow-md:     0 8px 30px rgba(255,107,0,0.20);
  --h2-shadow-lg:     0 16px 50px rgba(255,107,0,0.25);
  --h2-shadow-card:   0 10px 40px rgba(26,26,46,0.12);
  --h2-shadow-dark:   0 20px 60px rgba(26,26,46,0.30);

  /* Typography */
  --font-heading:     'Poppins', 'Montserrat', sans-serif;
  --font-body:        'Inter', 'Open Sans', sans-serif;

  /* Spacing */
  --section-pad:      80px 0;
  --section-pad-lg:   120px 0;
  --container-max:    1200px;
  --nav-height:       80px;

  /* Border Radius */
  --radius-sm:        6px;
  --radius-md:        12px;
  --radius-lg:        20px;
  --radius-xl:        30px;
  --radius-pill:      50px;

  /* Transitions */
  --transition:       all 0.3s ease;
  --transition-slow:  all 0.5s ease;
}

/* =============================================
   2. GOOGLE FONTS IMPORT
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* =============================================
   3. RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--h2-body);
  background: var(--h2-white);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
}

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

a {
  color: var(--h2-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--h2-accent);
}

ul {
  list-style: none;
}

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

/* =============================================
   4. UTILITY / LAYOUT
   ============================================= */
.h2-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.h2-section {
  padding: var(--section-pad);
  width: 100%;
  overflow: hidden;
}

.h2-section.bg-gray {
  background: var(--h2-gray-bg);
}

.h2-dark-section {
  background: var(--h2-grad-dark);
  color: rgba(255,255,255,0.85);
}

.h2-dark-section h2,
.h2-dark-section h3,
.h2-dark-section h4 {
  color: var(--h2-white);
}

.h2-dark-section p {
  color: rgba(255,255,255,0.75);
}

/* Grids */
.h2-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

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

/* Section headers */
.h2-section-header {
  text-align: center;
  margin-bottom: 52px;
}

.h2-section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
  font-weight: 800;
}

.h2-section-header p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.0625rem;
  color: var(--h2-body);
  line-height: 1.75;
}

.subtitle {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--h2-border);
  background: rgba(255,107,0,0.07);
  color: var(--h2-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.h2-divider {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 18px auto 20px;
}

.h2-divider span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--h2-grad-main);
}

.h2-divider span:nth-child(2) {
  width: 32px;
  border-radius: var(--radius-pill);
}

/* Buttons */
.h2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.h2-btn-primary {
  background: var(--h2-grad-main);
  color: var(--h2-white);
  box-shadow: var(--h2-shadow-md);
}

.h2-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--h2-shadow-lg);
  color: var(--h2-white);
}

.h2-btn-secondary {
  background: transparent;
  border-color: var(--h2-white);
  color: var(--h2-white);
}

.h2-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: var(--h2-white);
}

.h2-btn-outline {
  background: transparent;
  border-color: var(--h2-primary);
  color: var(--h2-primary);
}

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

.h2-btn-dark {
  background: var(--h2-dark);
  color: var(--h2-white);
  border-color: var(--h2-dark);
}

.h2-btn-dark:hover {
  background: var(--h2-dark-mid);
  color: var(--h2-white);
  transform: translateY(-2px);
}

.h2-btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.h2-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Cards */
.h2-card {
  background: var(--h2-grad-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--h2-shadow-card);
  border: 1px solid rgba(255,107,0,0.08);
  transition: var(--transition);
}

.h2-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--h2-shadow-lg);
  border-color: var(--h2-border);
}

/* Learn More link */
.h2-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--h2-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 18px;
  transition: var(--transition);
}

.h2-learn-more:hover {
  gap: 10px;
  color: var(--h2-accent);
}

/* Check list */
.h2-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.h2-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--h2-body);
}

.h2-check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--h2-primary);
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* =============================================
   5. STICKY NAVIGATION
   ============================================= */
.h2-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(26,26,46,0.10);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  width: 100%;
}

.h2-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

/* Logo */
.h2-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--h2-dark);
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
}

.h2-logo span {
  background: var(--h2-grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h2-logo:hover {
  color: var(--h2-dark);
}

/* Nav links */
.h2-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.h2-nav-links > li {
  position: relative;
}

.h2-nav-links > li > a {
  display: block;
  padding: 8px 14px;
  color: var(--h2-dark);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.h2-nav-links > li > a:hover,
.h2-nav-links > li.active > a {
  color: var(--h2-primary);
  background: rgba(255,107,0,0.07);
}

/* Dropdown */
.h2-nav-links li.has-dropdown > a::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  margin-left: 4px;
}

.h2-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--h2-white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(26,26,46,0.15);
  border: 1px solid rgba(255,107,0,0.10);
  min-width: 220px;
  padding: 8px 0;
  list-style: none;
  z-index: 100;
}

.h2-nav-links li.has-dropdown:hover .h2-dropdown {
  display: block;
  animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.h2-dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--h2-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.h2-dropdown li a:hover {
  background: rgba(255,107,0,0.07);
  color: var(--h2-primary);
  padding-left: 26px;
}

/* Nav CTA */
.h2-nav-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--h2-grad-main);
  color: var(--h2-white) !important;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: var(--h2-shadow-sm);
  text-decoration: none;
}

.h2-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--h2-shadow-md);
  color: var(--h2-white);
}

/* Hamburger toggle */
.h2-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.375rem;
  color: var(--h2-dark);
  cursor: pointer;
  padding: 6px;
  line-height: 1;
}

/* =============================================
   6. HERO SLIDER
   ============================================= */
.h2-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.h2-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.h2-slide.active {
  opacity: 1;
  z-index: 2;
}

.h2-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.82) 0%, rgba(255,107,0,0.45) 100%);
  z-index: 1;
}

.h2-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--h2-white);
  padding: 0 24px;
  max-width: 820px;
  margin: 0 auto;
}

.h2-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255,184,0,0.15);
  border: 1.5px solid rgba(255,184,0,0.4);
  border-radius: var(--radius-pill);
  color: var(--h2-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.h2-slide-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--h2-white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.h2-slide-content h1 em {
  font-style: normal;
  background: var(--h2-grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h2-slide-content .lead {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.h2-slide-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.h2-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: var(--transition);
}

.h2-slider-dot.active {
  background: var(--h2-secondary);
  width: 28px;
  border-radius: var(--radius-pill);
}

/* Slider prev/next arrows */
.h2-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--h2-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.h2-slider-arrow:hover {
  background: var(--h2-primary);
  border-color: var(--h2-primary);
}

.h2-slider-arrow.prev { left: 24px; }
.h2-slider-arrow.next { right: 24px; }

/* =============================================
   7. SERVICES SECTION
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.h2-icon-card {
  position: relative;
  overflow: hidden;
}

.h2-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--h2-grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--h2-white);
  margin-bottom: 20px;
  box-shadow: var(--h2-shadow-sm);
  transition: var(--transition);
}

.h2-icon-card:hover .h2-icon-wrap {
  transform: scale(1.08) rotate(-4deg);
}

.h2-icon-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.h2-icon-card p {
  font-size: 0.9375rem;
  color: var(--h2-body);
  line-height: 1.7;
  margin-bottom: 0;
}

/* =============================================
   8. STATS SECTION
   ============================================= */
.h2-stats {
  background: var(--h2-grad-dark);
  padding: var(--section-pad);
  width: 100%;
  overflow: hidden;
  position: relative;
}

.h2-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,107,0,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(255,184,0,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.h2-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.h2-stat-item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.h2-stat-item + .h2-stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.h2-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 900;
  background: var(--h2-grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}

.h2-stat-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.70);
  font-weight: 500;
}

/* =============================================
   9. ABOUT SECTION
   ============================================= */
.h2-about-grid {
  gap: 60px;
}

.about-img-wrap {
  position: relative;
}

.h2-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--h2-shadow-dark);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--h2-grad-main);
  color: var(--h2-white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--h2-shadow-lg);
  min-width: 130px;
}

.about-exp-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.about-exp-text {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0.92;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text-col .h2-section-header {
  text-align: left;
}

.about-text-col p {
  margin-bottom: 18px;
  font-size: 0.9875rem;
  line-height: 1.8;
}

/* =============================================
   10. PROCESS STEPS
   ============================================= */
.h2-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.h2-process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--h2-primary), var(--h2-secondary));
  opacity: 0.35;
}

.h2-step {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}

.h2-step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--h2-grad-main);
  color: var(--h2-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--h2-shadow-md);
  position: relative;
  z-index: 1;
}

.h2-step h4 {
  color: var(--h2-white);
  font-size: 1.0625rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.h2-step p {
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* =============================================
   11. TESTIMONIALS
   ============================================= */
.h2-testimonials {
  background: var(--h2-gray-bg);
}

.h2-testimonial-card {
  background: var(--h2-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--h2-shadow-card);
  border: 1px solid rgba(255,107,0,0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.h2-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--h2-shadow-lg);
}

.h2-testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--h2-secondary);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.h2-testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--h2-body);
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.h2-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.h2-testimonial-avatar {
  flex-shrink: 0;
}

.h2-testimonial-avatar img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--h2-border);
}

.h2-testimonial-info strong {
  display: block;
  color: var(--h2-dark);
  font-size: 0.9375rem;
  font-weight: 700;
}

.h2-testimonial-info span {
  font-size: 0.8125rem;
  color: var(--h2-body);
  opacity: 0.8;
}

/* =============================================
   12. CTA BANNER
   ============================================= */
.h2-cta-banner {
  background: var(--h2-grad-main);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.h2-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 65%),
              radial-gradient(ellipse at 70% 50%, rgba(26,26,46,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.h2-cta-banner .content {
  position: relative;
  z-index: 1;
}

.h2-cta-banner h2 {
  color: var(--h2-white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
  font-weight: 800;
}

.h2-cta-banner p {
  color: rgba(255,255,255,0.88);
  font-size: 1.0625rem;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* =============================================
   13. FOOTER
   ============================================= */
.h2-footer {
  background: var(--h2-dark);
  padding: 72px 0 0;
  width: 100%;
  overflow: hidden;
}

.h2-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.h2-footer .h2-logo {
  color: var(--h2-white);
  display: inline-block;
  margin-bottom: 18px;
}

.h2-footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.h2-footer-social {
  display: flex;
  gap: 10px;
}

.h2-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: var(--transition);
}

.h2-footer-social a:hover {
  background: var(--h2-primary);
  border-color: var(--h2-primary);
  color: var(--h2-white);
  transform: translateY(-2px);
}

.h2-footer-col h4 {
  color: var(--h2-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.h2-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.h2-footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.h2-footer-col ul li a:hover {
  color: var(--h2-secondary);
  padding-left: 4px;
}

.h2-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px !important;
}

.h2-footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.h2-footer-contact li i {
  color: var(--h2-primary);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.h2-footer-contact li span,
.h2-footer-contact li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.5;
  text-decoration: none;
}

.h2-footer-contact li a:hover {
  color: var(--h2-secondary);
}

.h2-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.h2-footer-bottom p {
  color: rgba(255,255,255,0.40);
  font-size: 0.875rem;
}

/* =============================================
   14. RESPONSIVE — 1024px
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --section-pad: 64px 0;
  }

  .h2-nav-links {
    gap: 0;
  }

  .h2-nav-links > li > a {
    padding: 8px 10px;
    font-size: 0.875rem;
  }

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

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

  .h2-process-steps::before {
    display: none;
  }
}

/* =============================================
   15. RESPONSIVE — 768px
   ============================================= */
@media (max-width: 768px) {
  :root {
    --section-pad: 52px 0;
    --nav-height: 68px;
  }

  /* Nav mobile */
  .h2-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 3;
  }

  .h2-nav-cta {
    display: none;
  }

  .h2-nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--h2-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 30px rgba(26,26,46,0.15);
    border-top: 1px solid rgba(255,107,0,0.10);
    gap: 0;
    z-index: 9998;
  }

  .h2-nav-links.active {
    display: flex;
  }

  .h2-nav-links > li {
    width: 100%;
  }

  .h2-nav-links > li > a {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255,107,0,0.07);
    border-radius: 0;
    width: 100%;
    font-size: 1rem;
  }

  .h2-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--h2-gray-bg);
    border-radius: var(--radius-sm);
    margin: 4px 0 8px;
    padding: 0;
  }

  .h2-nav-links li.has-dropdown:hover .h2-dropdown {
    animation: none;
  }

  /* Slider */
  .h2-slider {
    height: 90vh;
    min-height: 520px;
  }

  .h2-slide-content h1 {
    font-size: clamp(1.625rem, 7vw, 2.25rem);
  }

  .h2-slider-arrow {
    display: none;
  }

  /* Grids */
  .h2-grid-2,
  .h2-about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .h2-grid-3 {
    grid-template-columns: 1fr;
  }

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

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

  .h2-stat-item + .h2-stat-item::before {
    display: none;
  }

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

  .about-exp-badge {
    right: 8px;
    bottom: -16px;
  }

  /* Footer */
  .h2-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  /* CTA banner */
  .h2-cta-banner {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .h2-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .h2-process-steps {
    grid-template-columns: 1fr;
  }

  .h2-btn-lg {
    padding: 13px 22px;
    font-size: 0.9375rem;
  }

  .h2-slide-btns {
    flex-direction: column;
    align-items: center;
  }
}
