/*
Theme Name: HillTop Strategy
Theme URI: https://hilltopstrategy.co
Author: HillTop Strategy
Author URI: https://hilltopstrategy.co
Description: A professional WordPress theme for HillTop Strategy — Fractional CIO services for construction and industrial supply companies. AI data strategy, digital transformation, and technology leadership.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hilltop-strategy
Tags: one-column, custom-menu, featured-images, full-width-template, theme-options
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
*/

/* ── RESET & VARIABLES ── */
:root {
  --white: #ffffff;
  --snow: #f8f9fc;
  --cloud: #f0f2f7;
  --mist: #e4e7ef;
  --ash: #c5c9d6;
  --slate: #7c8298;
  --iron: #4a4f63;
  --carbon: #2d3142;
  --midnight: #1a1d2e;
  --teal: #0f7b6c;
  --teal-light: #12a08d;
  --teal-pale: #e6f5f2;
  --teal-wash: #f0faf8;
  --coral: #e8573d;
  --coral-light: #f07058;
  --coral-pale: #fef0ed;
  --amber: #f0a030;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(45,49,66,0.06);
  --shadow-md: 0 4px 16px rgba(45,49,66,0.08);
  --shadow-lg: 0 12px 40px rgba(45,49,66,0.1);
  --shadow-xl: 0 24px 60px rgba(45,49,66,0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
}

.site-nav.scrolled {
  padding: 0.75rem 3rem;
  border-bottom: 1px solid var(--mist);
  box-shadow: var(--shadow-sm);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.7rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--carbon);
  font-weight: 600;
}

.logo-text span { color: var(--coral); }

/* WP Menu */
.main-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
}

.main-menu li a {
  color: var(--slate);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}

.main-menu li a:hover,
.main-menu li.current-menu-item a,
.main-menu li.current_page_item a { color: var(--teal); }

.main-menu li:last-child a {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.main-menu li:last-child a:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(15,123,108,0.25);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 22px; height: 2px;
  background: var(--carbon);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 7rem 3rem 4rem;
  background: linear-gradient(170deg, var(--white) 0%, var(--teal-wash) 35%, var(--snow) 70%, var(--white) 100%);
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background-image: radial-gradient(circle at 2px 2px, var(--mist) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.5;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.4), transparent);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.4), transparent);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.hero-blob-1 { width: 500px; height: 500px; background: var(--teal); top: -100px; right: 10%; animation: blobFloat 12s ease-in-out infinite; }
.hero-blob-2 { width: 350px; height: 350px; background: var(--coral); bottom: -50px; left: 15%; animation: blobFloat 10s ease-in-out infinite reverse; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-20px) scale(1.05); }
  66% { transform: translate(-15px,15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-pale);
  border: 1px solid rgba(15,123,108,0.15);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--carbon);
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

.hero h1 em { font-style: italic; color: var(--teal); }

.hero-sub {
  font-size: 1.08rem;
  color: var(--slate);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15,123,108,0.22);
}

.btn-secondary {
  background: var(--white);
  color: var(--carbon);
  padding: 0.9rem 2rem;
  border: 1.5px solid var(--mist);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--teal);
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

/* ── DATA CARD (Hero Visual) ── */
.hero-visual { position: relative; }

.data-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.data-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.data-card-title { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--slate); font-weight: 600; }

.data-card-live { display: flex; align-items: center; gap: 0.4rem; font-size: 0.68rem; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.data-card-live::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 1.5s infinite; }

.chart-bars { display: flex; align-items: flex-end; gap: 7px; height: 150px; margin-bottom: 1.5rem; }
.chart-bar { flex: 1; border-radius: 6px 6px 0 0; animation: barGrow 1.2s ease forwards; transform-origin: bottom; }
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.chart-bar.teal { background: linear-gradient(180deg, var(--teal), rgba(15,123,108,0.2)); }
.chart-bar.coral { background: linear-gradient(180deg, var(--coral), rgba(232,87,61,0.15)); }
.chart-bar.mist { background: linear-gradient(180deg, var(--ash), rgba(197,201,214,0.2)); }

.data-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--cloud); }
.data-stat-value { font-family: var(--font-display); font-size: 1.7rem; color: var(--carbon); font-weight: 600; }
.data-stat-value.teal { color: var(--teal); }
.data-stat-value.coral { color: var(--coral); }
.data-stat-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; color: var(--slate); margin-top: 0.2rem; }

.float-card { position: absolute; background: var(--white); border: 1px solid var(--mist); border-radius: 14px; padding: 0.9rem 1.15rem; box-shadow: var(--shadow-lg); animation: float 6s ease-in-out infinite; }
.float-card-1 { top: -15px; right: -25px; }
.float-card-2 { bottom: 35px; left: -35px; animation-delay: 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float-card .fc-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 1px; color: var(--slate); margin-bottom: 0.2rem; }
.float-card .fc-value { font-family: var(--font-display); font-size: 1.3rem; color: var(--teal); font-weight: 600; }
.float-card .fc-trend { font-size: 0.68rem; color: var(--teal); margin-top: 0.15rem; }

/* ── TRUST BAR ── */
.trust-bar { padding: 2.5rem 3rem; background: var(--snow); border-top: 1px solid var(--cloud); border-bottom: 1px solid var(--cloud); }
.trust-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.trust-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 2px; color: var(--ash); margin-bottom: 1.5rem; font-weight: 500; }
.trust-logos { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.trust-logo { font-family: var(--font-display); font-size: 1.15rem; color: var(--ash); letter-spacing: 0.5px; font-weight: 500; }

/* ── SECTIONS ── */
.ht-section { padding: 5.5rem 3rem; }
.ht-section.alt-bg { background: var(--snow); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2.5px; color: var(--teal); font-weight: 600; margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.9rem,3.2vw,2.7rem); color: var(--carbon); line-height: 1.18; letter-spacing: -0.8px; margin-bottom: 0.75rem; }
.section-title em { font-style: italic; color: var(--teal); }
.section-desc { font-size: 1rem; color: var(--slate); max-width: 580px; line-height: 1.8; margin-bottom: 3rem; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

.service-card {
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  transition: all 0.4s;
  position: relative;
}

.service-card:hover { border-color: var(--teal-pale); transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.service-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 16px 16px 0 0; background: linear-gradient(90deg,var(--teal),var(--teal-light)); opacity: 0; transition: opacity 0.4s; }
.service-card:hover::after { opacity: 1; }

.service-icon { width: 46px; height: 46px; background: var(--teal-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1.25rem; }
.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--carbon); margin-bottom: 0.6rem; font-weight: 600; }
.service-card p { font-size: 0.88rem; color: var(--slate); line-height: 1.7; }

.service-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 1.1rem; }
.service-tag { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.8px; padding: 0.22rem 0.55rem; border-radius: 5px; background: var(--teal-wash); color: var(--teal); font-weight: 600; }

/* ── INDUSTRY CARDS ── */
.industries-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }

.industry-card {
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: start;
  transition: all 0.4s;
}

.industry-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.industry-icon { width: 58px; height: 58px; background: linear-gradient(135deg,var(--teal-pale),var(--coral-pale)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.industry-card h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--carbon); margin-bottom: 0.6rem; font-weight: 600; }
.industry-card p { font-size: 0.88rem; color: var(--slate); line-height: 1.7; margin-bottom: 1rem; }

.industry-stats { display: flex; gap: 2rem; }
.industry-stat strong { font-family: var(--font-display); font-size: 1.25rem; color: var(--teal); display: block; }
.industry-stat span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; color: var(--slate); }

/* ── METRICS ── */
.metrics-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 4rem; }
.metric-card { text-align: center; padding: 2.25rem 1.25rem; background: var(--white); border: 1px solid var(--cloud); border-radius: 16px; }
.metric-number { font-family: var(--font-display); font-size: 3.2rem; color: var(--teal); line-height: 1; font-weight: 700; }
.metric-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--slate); margin-top: 0.6rem; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }

.testimonial-card { background: var(--white); border: 1px solid var(--cloud); border-radius: 16px; padding: 2.25rem; }
.testimonial-stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-quote { font-size: 1.02rem; color: var(--iron); line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,var(--teal),var(--teal-light)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--white); font-size: 0.8rem; }
.testimonial-name { font-weight: 600; color: var(--carbon); font-size: 0.88rem; }
.testimonial-role { font-size: 0.75rem; color: var(--slate); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg,var(--teal),var(--teal-light));
  border-radius: 20px;
  padding: 4rem;
  text-align: center;
  margin: 4rem auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 50%,rgba(255,255,255,0.1) 0%,transparent 40%),radial-gradient(circle at 85% 30%,rgba(255,255,255,0.08) 0%,transparent 30%); }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.8rem,2.8vw,2.5rem); color: var(--white); margin-bottom: 0.75rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2rem; position: relative; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }

.pricing-card { background: var(--white); border: 1.5px solid var(--cloud); border-radius: 20px; padding: 2.5rem; transition: all 0.4s; position: relative; }
.pricing-card.featured { border-color: var(--teal); box-shadow: var(--shadow-lg), 0 0 0 1px var(--teal); transform: scale(1.03); }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--white); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 0.3rem 1rem; border-radius: 100px; }

.pricing-tier { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; color: var(--teal); font-weight: 600; margin-bottom: 0.4rem; }
.pricing-name { font-family: var(--font-display); font-size: 1.45rem; color: var(--carbon); margin-bottom: 0.6rem; font-weight: 600; }
.pricing-price { font-family: var(--font-display); font-size: 2.8rem; color: var(--carbon); margin-bottom: 0.2rem; font-weight: 700; }
.pricing-price span { font-size: 0.95rem; color: var(--slate); font-family: var(--font-body); font-weight: 400; }
.pricing-period { font-size: 0.78rem; color: var(--slate); margin-bottom: 1.75rem; }

.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { padding: 0.45rem 0; font-size: 0.86rem; color: var(--iron); display: flex; align-items: baseline; gap: 0.55rem; }
.pricing-features li::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: 0.82rem; flex-shrink: 0; }

.pricing-btn { width: 100%; padding: 0.85rem; border-radius: 10px; font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all 0.3s; text-align: center; border: none; display: block; }
.pricing-btn.primary { background: var(--teal); color: var(--white); }
.pricing-btn.primary:hover { background: var(--teal-light); }
.pricing-btn.outline { background: transparent; color: var(--carbon); border: 1.5px solid var(--mist); }
.pricing-btn.outline:hover { border-color: var(--teal); color: var(--teal); }

/* ── ABOUT ── */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }

.about-image { background: linear-gradient(135deg,var(--teal-pale),var(--coral-pale)); border-radius: 20px; height: 400px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--cloud); position: relative; overflow: hidden; }
.about-image-pattern { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(circle at 2px 2px,rgba(15,123,108,0.08) 1px,transparent 0); background-size: 24px 24px; }
.about-image-text { position: relative; text-align: center; }
.about-image-text .big-word { font-family: var(--font-display); font-size: 4.5rem; color: var(--teal); line-height: 1; font-weight: 700; }
.about-image-text .big-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; color: var(--slate); margin-top: 0.4rem; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; margin-top: 3rem; }
.value-card { padding: 1.75rem; border-left: 3px solid var(--teal); background: var(--snow); border-radius: 0 12px 12px 0; }
.value-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--carbon); margin-bottom: 0.5rem; font-weight: 600; }
.value-card p { font-size: 0.88rem; color: var(--slate); line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.team-card { background: var(--white); border: 1px solid var(--cloud); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; transition: all 0.3s; }
.team-card:hover { box-shadow: var(--shadow-md); }
.team-avatar { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg,var(--teal-pale),var(--teal-wash)); border: 2px solid var(--teal); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 1rem; }
.team-card .team-role { font-family: var(--font-display); font-size: 1.05rem; color: var(--carbon); margin-bottom: 0.5rem; font-weight: 600; }
.team-card p { font-size: 0.8rem; color: var(--slate); line-height: 1.65; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h2 { font-family: var(--font-display); font-size: 2.2rem; color: var(--carbon); margin-bottom: 1.25rem; line-height: 1.18; font-weight: 600; }
.contact-info > p { color: var(--slate); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.15rem; }
.contact-detail { display: flex; align-items: center; gap: 0.85rem; }
.contact-icon { width: 42px; height: 42px; background: var(--teal-pale); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }
.contact-detail-text strong { display: block; color: var(--carbon); font-size: 0.88rem; }
.contact-detail-text span { color: var(--slate); font-size: 0.82rem; }

.contact-form-wrap { background: var(--snow); border: 1px solid var(--cloud); border-radius: 20px; padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--slate); margin-bottom: 0.45rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8rem 1rem; background: var(--white); border: 1.5px solid var(--mist); border-radius: 10px; color: var(--carbon); font-family: var(--font-body); font-size: 0.88rem; transition: border-color 0.3s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(15,123,108,0.08); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ── PROCESS ── */
.process-timeline { display: flex; flex-direction: column; position: relative; margin-top: 3rem; }
.process-timeline::before { content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg,var(--teal),var(--teal-light)); border-radius: 1px; }
.process-step { display: grid; grid-template-columns: 56px 1fr; gap: 1.75rem; padding: 1.75rem 0; }
.process-number { width: 56px; height: 56px; background: var(--white); border: 2px solid var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; color: var(--teal); font-weight: 700; position: relative; z-index: 2; }
.process-step h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--carbon); margin-bottom: 0.4rem; font-weight: 600; }
.process-step p { color: var(--slate); font-size: 0.88rem; line-height: 1.7; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cloud); }
.faq-question { padding: 1.35rem 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; color: var(--carbon); font-size: 1rem; font-weight: 500; transition: color 0.3s; background: none; border: none; width: 100%; text-align: left; font-family: var(--font-body); }
.faq-question:hover { color: var(--teal); }
.faq-question .faq-toggle { font-size: 1.2rem; color: var(--teal); transition: transform 0.3s; font-weight: 300; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-answer.open { max-height: 400px; padding-bottom: 1.5rem; }
.faq-answer p { color: var(--slate); font-size: 0.88rem; line-height: 1.8; }

/* ── FOOTER ── */
.site-footer { background: var(--snow); border-top: 1px solid var(--cloud); padding: 3.5rem 3rem 1.5rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand .logo-text { font-size: 1.25rem; margin-bottom: 0.75rem; display: block; }
.footer-brand p { font-size: 0.82rem; color: var(--slate); line-height: 1.7; max-width: 290px; }
.footer-col h4 { color: var(--carbon); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.1rem; }
.footer-col a { display: block; color: var(--slate); font-size: 0.85rem; padding: 0.25rem 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid var(--cloud); display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: var(--ash); flex-wrap: wrap; gap: 1rem; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .industries-grid { grid-template-columns: 1fr; }
  .metrics-row { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .about-hero { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0.9rem 1.5rem; }
  .main-menu { display: none; }
  .main-menu.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); padding: 1.5rem; gap: 1.25rem; border-bottom: 1px solid var(--mist); box-shadow: var(--shadow-md); }
  .mobile-toggle { display: flex; }
  .ht-section { padding: 3.5rem 1.5rem; }
  .hero { padding: 6.5rem 1.5rem 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { margin: 2rem 1rem; padding: 2.5rem 1.5rem; border-radius: 16px; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ── WP SPECIFIC OVERRIDES ── */
.wp-block-image img { border-radius: 12px; }
.entry-content p { margin-bottom: 1.5rem; }
.entry-content h2 { font-family: var(--font-display); color: var(--carbon); margin: 2rem 0 1rem; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }
