/* ============================================
   StrategyVerse Consulting — Global Styles
   Colors: Blue #377FCC | Amber #F5A623
   ============================================ */

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

:root {
  --blue: #377FCC;
  --blue-dark: #2a6ab3;
  --blue-deeper: #1a3a5c;
  --amber: #F5A623;
  --amber-dark: #d98e1a;
  --dark: #1a1a2e;
  --dark-light: #16213e;
  --gray-100: #f7f8fa;
  --gray-200: #e9ecef;
  --gray-400: #adb5bd;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --white: #ffffff;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; color: var(--dark); }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  margin-bottom: 48px;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-amber {
  background: var(--amber);
  color: var(--dark);
  border-color: var(--amber);
}
.btn-amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-arrow::after {
  content: '\2192';
  transition: transform var(--transition);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}
.navbar.scrolled .nav-logo { height: 44px; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo: render large (270px) but crop via container to keep navbar slim */
.nav-logo {
  display: block;
  height: 60px;
  overflow: hidden;
}
.nav-logo img {
  height: 270px;
  width: auto;
  margin-top: -105px; /* vertically centre-crop the logo */
}
@media (max-width: 992px) {
  .nav-logo { height: 50px; }
  .nav-logo img { height: 200px; margin-top: -75px; }
}
@media (max-width: 640px) {
  .nav-logo { height: 40px; }
  .nav-logo img { height: 150px; margin-top: -55px; }
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

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

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important;
  border: 2px solid var(--amber) !important;
  border-radius: 50px !important;
  color: var(--amber) !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--amber) !important;
  color: var(--dark) !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-deeper) 50%, var(--dark-light) 100%);
  overflow: hidden;
}
@media (max-width: 992px) { .hero { padding-top: 100px; } }
@media (max-width: 640px) { .hero { padding-top: 90px; } }

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,127,204,0.15) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--white);
}

.hero-content h1 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
}

.hero-content h1 .highlight { color: var(--amber); }

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.8;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero graphic — animated strategy network */
.hero-graphic {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
.hero-graphic svg {
  width: 480px;
  height: 480px;
  animation: heroFloat 12s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, -15px) rotate(1deg); }
  50% { transform: translate(-5px, -25px) rotate(-1deg); }
  75% { transform: translate(15px, -10px) rotate(0.5deg); }
}

/* Page-level hero (non-home pages) */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue-deeper) 100%);
  color: var(--white);
  text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 100px 0; }

/* --- Services Preview --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(55,127,204,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--blue);
}

.service-card h3 { margin-bottom: 12px; color: var(--dark); }
.service-card p { color: var(--gray-600); font-size: 0.95rem; }

/* --- About Preview / About Page --- */
.about-preview {
  background: var(--gray-100);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deeper) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-placeholder img {
  width: 60%;
  opacity: 0.9;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; color: var(--gray-600); }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.value-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--gray-600); font-size: 0.9rem; }

/* Team / Founder section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.team-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deeper));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  font-family: var(--font-heading);
  overflow: hidden;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h3 { margin-bottom: 4px; }
.team-card .role { color: var(--amber); font-size: 0.9rem; font-weight: 600; margin-bottom: 12px; }
.team-card p { color: var(--gray-600); font-size: 0.9rem; }
.team-card .team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.8rem;
  margin-top: 12px;
  transition: all var(--transition);
}
.team-card .team-social a:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

/* --- Why Us --- */
.why-us { background: var(--dark); color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.why-item { text-align: center; }
.why-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--amber);
  font-family: var(--font-body);
  margin-bottom: 12px;
}
.why-item h3 { margin-bottom: 8px; }
.why-item p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ============================================
   CLIENTS / LOGO STRIP
   ============================================ */
.clients-section { padding: 80px 0; }
.clients-section.bg-light { background: var(--gray-100); }

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 56px;
  margin-top: 48px;
}
.client-logo {
  height: 50px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition);
}
.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* ============================================
   MEDIA COVERAGE ROLLING SECTION
   ============================================ */
.coverage-section {
  padding: 80px 0;
  background: var(--dark);
  overflow: hidden;
}

.coverage-track {
  display: flex;
  gap: 32px;
  animation: scrollCoverage 40s linear infinite;
  width: max-content;
}
.coverage-track:hover {
  animation-play-state: paused;
}

.coverage-item {
  flex-shrink: 0;
  width: 340px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  transition: transform var(--transition);
}
.coverage-item:hover {
  transform: scale(1.03);
}
.coverage-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
}

@keyframes scrollCoverage {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   TESTIMONIALS — Auto-sliding carousel
   ============================================ */
.testimonials { background: var(--gray-100); }

.testimonials-carousel {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .testimonial-slide { min-width: 50%; }
}
@media (min-width: 1024px) {
  .testimonial-slide { min-width: 33.333%; }
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--blue);
  opacity: 0.15;
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: var(--font-heading);
  line-height: 1;
}
.testimonial-card .testimonial-text {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-size: 0.92rem;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-info strong { display: block; font-size: 0.92rem; }
.testimonial-info span { color: var(--gray-400); font-size: 0.82rem; }

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.carousel-dot.active {
  background: var(--blue);
  transform: scale(1.2);
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deeper) 100%);
  text-align: center;
  color: var(--white);
  padding: 80px 0;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1.1rem; }

/* ============================================
   INSIGHTS / BLOG
   ============================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.insight-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.insight-image {
  height: 220px;
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insight-image .category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--amber);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.insight-body { padding: 28px 24px; }
.insight-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.insight-body h3 { margin-bottom: 12px; font-size: 1.2rem; }
.insight-body h3 a:hover { color: var(--blue); }
.insight-body p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 16px; }
.read-more {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.read-more:hover { color: var(--amber); }
.read-more::after { content: '\2192'; transition: transform var(--transition); }
.read-more:hover::after { transform: translateX(4px); }

/* ============================================
   BLOG ARTICLE PAGE
   ============================================ */
.blog-article {
  padding: 60px 0 100px;
}
.blog-article .container {
  max-width: 780px;
}
.blog-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 40px;
}
.blog-article .blog-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.blog-article .blog-meta .author {
  color: var(--blue);
  font-weight: 600;
}
.blog-article h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 32px;
  color: var(--dark);
}
.blog-article .blog-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--dark);
}
.blog-article .blog-content h3 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
  color: var(--dark);
}
.blog-article .blog-content p {
  margin-bottom: 20px;
  color: var(--gray-800);
  font-size: 1.05rem;
  line-height: 1.85;
}
.blog-article .blog-content ol,
.blog-article .blog-content ul {
  margin: 16px 0 24px 24px;
}
.blog-article .blog-content li {
  margin-bottom: 10px;
  color: var(--gray-800);
  font-size: 1.02rem;
  line-height: 1.75;
  list-style: disc;
}
.blog-article .blog-content ol li {
  list-style: decimal;
}
.blog-article .blog-content blockquote {
  border-left: 4px solid var(--amber);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--gray-100);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--gray-600);
}
.blog-article .blog-content strong {
  color: var(--dark);
}
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.blog-back:hover { color: var(--amber); }
.blog-back::before { content: '\2190'; }

/* ============================================
   CONTACT SECTION / PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info-list { margin-top: 32px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(55,127,204,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-info-item h4 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.contact-info-item p { color: var(--gray-600); font-size: 0.9rem; }

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--gray-800);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--gray-100);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  display: block;
  height: 54px;
  overflow: hidden;
  margin-bottom: 16px;
}
.footer-brand .footer-logo img {
  height: 400px;
  width: auto;
  margin-top: -173px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--amber); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--amber); }

/* ============================================
   ANIMATIONS (scroll reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26,26,46,0.98);
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .nav-toggle { display: flex; z-index: 1001; }

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

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

  .hero-graphic { display: none; }
  .hero-content h1 { font-size: 2.4rem; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .hero-buttons { flex-direction: column; }
  .hero { min-height: 90vh; padding-top: 80px; }

  .form-row { grid-template-columns: 1fr; }

  .page-hero { padding: 130px 0 60px; }

  .clients-grid { gap: 24px 32px; }
  .client-logo { height: 36px; max-width: 100px; }

  .blog-hero-img { height: 220px; }
}

/* Services page - detailed cards */
.service-detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 40px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 24px;
  transition: all var(--transition);
  align-items: start;
}
.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.service-detail-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(55,127,204,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--blue);
}
.service-detail-card h3 { margin-bottom: 8px; }
.service-detail-card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 12px; }
.service-detail-card ul { padding-left: 0; }
.service-detail-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  color: var(--gray-600);
  font-size: 0.9rem;
}
.service-detail-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--amber);
}

/* Process section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: process;
}
.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.process-step::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.15;
  font-family: var(--font-body);
  margin-bottom: 12px;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { color: var(--gray-600); font-size: 0.9rem; }

@media (max-width: 640px) {
  .service-detail-card { grid-template-columns: 1fr; }
}

/* Social icons using unicode */
.social-icon { font-style: normal; }

/* LinkedIn SVG icon */
.linkedin-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
