/*
Theme Name: HillTop Strategy
Theme URI: https://hilltopstrategy.co
Author: HillTop Strategy
Author URI: https://hilltopstrategy.co
Description: Fractional CIO theme for construction and industrial supply. Features homepage, about, pricing, and contact page templates with built-in content. Edit any page directly in the WordPress Theme File Editor.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hilltop-strategy
Tags: one-column, custom-menu, featured-images, theme-options, translation-ready
*/

/* ==========================================================================
   CSS VARIABLES — Change colors and fonts here to restyle the entire site
   ========================================================================== */
:root {
  --color-white: #ffffff;
  --color-snow: #f8f9fc;
  --color-cloud: #f0f2f7;
  --color-mist: #e4e7ef;
  --color-ash: #c5c9d6;
  --color-slate: #7c8298;
  --color-iron: #4a4f63;
  --color-carbon: #2d3142;
  --color-teal: #0f7b6c;
  --color-teal-light: #12a08d;
  --color-teal-pale: #e6f5f2;
  --color-teal-wash: #f0faf8;
  --color-coral: #3b82f6;
  --color-coral-pale: #eff6ff;
  --color-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.10);
  --shadow-xl: 0 24px 60px rgba(45,49,66,0.12);
  --radius: 16px;
  --max-w: 1200px;
}

/* ==========================================================================
   RESET
   ========================================================================== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);background:var(--color-white);color:var(--color-iron);line-height:1.7;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:inherit}

/* ==========================================================================
   WORDPRESS CORE
   ========================================================================== */
.aligncenter{display:block;margin:0 auto}
.alignleft{float:left;margin:0 1.5rem 1rem 0}
.alignright{float:right;margin:0 0 1rem 1.5rem}
.wp-caption{max-width:100%}
.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute;height:1px;width:1px;overflow:hidden}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: padding 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  padding: 0.65rem 3rem;
  border-bottom-color: var(--color-mist);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

/* Nav menu — works with wp_nav_menu output */
.nav-menu,
.nav-menu ul {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: var(--color-slate);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s;
}

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

/* CTA button in nav — add CSS class "menu-cta" to a menu item in WP */
.nav-menu li.menu-cta > a {
  background: var(--color-teal);
  color: #fff !important;
  padding: 0.5rem 1.3rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.nav-menu li.menu-cta > a:hover {
  background: var(--color-teal-light);
  transform: translateY(-1px);
}

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

.mobile-menu-toggle span {
  width: 22px; height: 2px;
  background: var(--color-carbon);
  display: block;
  transition: transform 0.3s;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-teal);
  color: #fff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--color-carbon);
  padding: 0.9rem 2rem;
  border: 1.5px solid var(--color-mist);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

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

.btn-white {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--color-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;
  text-decoration: none;
  position: relative;
  transition: transform 0.2s, box-shadow 0.3s;
}

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

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

.hero-dots {
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background: radial-gradient(circle at 2px 2px, var(--color-mist) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.4), transparent);
  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;
  pointer-events: none;
}

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

@keyframes bfloat{
  0%,100%{transform:translate(0,0) scale(1)}
  33%{transform:translate(20px,-20px) scale(1.05)}
  66%{transform:translate(-15px,15px) scale(.95)}
}

.hero-inner {
  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(--color-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(--color-teal);
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 1.5rem;
  animation: fiu 0.8s ease forwards;
}

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

@keyframes pdot{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.5)}}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem,5vw,4.2rem);
  color: var(--color-carbon);
  line-height: 1.12; letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  animation: fiu 0.8s 0.1s ease both;
}

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

.hero-sub {
  font-size: 1.08rem; color: var(--color-slate);
  line-height: 1.8; max-width: 520px; margin-bottom: 2.5rem;
  animation: fiu 0.8s 0.2s ease both;
}

.hero-btns {
  display: flex; gap: 1rem;
  animation: fiu 0.8s 0.3s ease both;
}

@keyframes fiu{from{opacity:0;transform:translateY(25px)}to{opacity:1;transform:translateY(0)}}

/* Hero Data Card */
.hero-visual { position: relative; animation: fiu 0.8s 0.4s ease both; }

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

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

.data-card-badge {
  display:flex;align-items:center;gap:.4rem;
  font-size:.68rem;color:var(--color-teal);text-transform:uppercase;letter-spacing:1px;font-weight:600;
}

.data-card-badge::before {
  content:'';width:6px;height:6px;background:var(--color-teal);border-radius:50%;animation:pdot 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:bgrow 1.2s ease forwards;transform-origin:bottom;
}

@keyframes bgrow{from{transform:scaleY(0)}to{transform:scaleY(1)}}

.chart-bar--teal { background:linear-gradient(180deg,var(--color-teal),rgba(15,123,108,.2)) }
.chart-bar--coral { background:linear-gradient(180deg,var(--color-coral),rgba(232,87,61,.15)) }
.chart-bar--muted { background:linear-gradient(180deg,var(--color-ash),rgba(197,201,214,.2)) }

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

.float-card {
  position:absolute;background:#fff;border:1px solid var(--color-mist);
  border-radius:14px;padding:.9rem 1.15rem;box-shadow:var(--shadow-lg);
  animation:flt 6s ease-in-out infinite;
}

.float-card--tr { top:-15px;right:-25px }
.float-card--bl { bottom:35px;left:-35px;animation-delay:2s }

@keyframes flt{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}

.float-card__label { font-size:.62rem;text-transform:uppercase;letter-spacing:1px;color:var(--color-slate);margin-bottom:.2rem }
.float-card__value { font-family:var(--font-display);font-size:1.3rem;color:var(--color-teal);font-weight:600 }
.float-card__trend { font-size:.68rem;color:var(--color-teal);margin-top:.15rem }

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

/* ==========================================================================
   SECTIONS (shared)
   ========================================================================== */
.sec { padding:5.5rem 3rem }
.sec__inner { max-width:var(--max-w);margin:0 auto }
.sec__label { font-size:.7rem;text-transform:uppercase;letter-spacing:2.5px;color:var(--color-teal);font-weight:600;margin-bottom:.75rem }
.sec__title { font-family:var(--font-display);font-size:clamp(1.9rem,3.2vw,2.7rem);color:var(--color-carbon);line-height:1.18;letter-spacing:-.8px;margin-bottom:.75rem }
.sec__title em { font-style:italic;color:var(--color-teal) }
.sec__desc { font-size:1rem;color:var(--color-slate);max-width:580px;line-height:1.8;margin-bottom:3rem }
.sec--alt { background:var(--color-snow) }

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

.svc-card {
  background:#fff;border:1px solid var(--color-cloud);border-radius:var(--radius);
  padding:2.25rem 1.75rem;transition:all .4s;position:relative;
}

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

.svc-card__icon { width:46px;height:46px;background:var(--color-teal-pale);border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.2rem;margin-bottom:1.25rem }
.svc-card h3 { font-family:var(--font-display);font-size:1.25rem;color:var(--color-carbon);margin-bottom:.6rem;font-weight:600 }
.svc-card p { font-size:.88rem;color:var(--color-slate);line-height:1.7 }
.svc-tags { display:flex;flex-wrap:wrap;gap:.35rem;margin-top:1.1rem }
.svc-tag { font-size:.62rem;text-transform:uppercase;letter-spacing:.8px;padding:.22rem .55rem;border-radius:5px;background:var(--color-teal-wash);color:var(--color-teal);font-weight:600 }

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

.ind-card {
  background:#fff;border:1px solid var(--color-cloud);border-radius:var(--radius);
  padding:2.5rem;display:grid;grid-template-columns:auto 1fr;gap:1.75rem;align-items:start;transition:all .4s;
}

.ind-card:hover { box-shadow:var(--shadow-lg);transform:translateY(-2px) }
.ind-card__icon { width:58px;height:58px;background:linear-gradient(135deg,var(--color-teal-pale),var(--color-coral-pale));border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:1.6rem }
.ind-card h3 { font-family:var(--font-display);font-size:1.35rem;color:var(--color-carbon);margin-bottom:.6rem;font-weight:600 }
.ind-card p { font-size:.88rem;color:var(--color-slate);line-height:1.7;margin-bottom:1rem }
.ind-stats { display:flex;gap:2rem }
.ind-stat strong { font-family:var(--font-display);font-size:1.25rem;color:var(--color-teal);display:block }
.ind-stat span { font-size:.68rem;text-transform:uppercase;letter-spacing:1px;color:var(--color-slate) }

/* ==========================================================================
   METRICS
   ========================================================================== */
.metrics { display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;margin-bottom:4rem }
.metric { text-align:center;padding:2.25rem 1.25rem;background:#fff;border:1px solid var(--color-cloud);border-radius:var(--radius) }
.metric__num { font-family:var(--font-display);font-size:3.2rem;color:var(--color-teal);line-height:1;font-weight:700 }
.metric__lbl { font-size:.78rem;text-transform:uppercase;letter-spacing:1px;color:var(--color-slate);margin-top:.6rem }

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

.test-card { background:#fff;border:1px solid var(--color-cloud);border-radius:var(--radius);padding:2.25rem }
.test-card__stars { color:var(--color-amber);font-size:.9rem;margin-bottom:1rem;letter-spacing:2px }
.test-card__quote { font-size:1.02rem;color:var(--color-iron);line-height:1.7;margin-bottom:1.5rem }
.test-card__author { display:flex;align-items:center;gap:.85rem }
.test-card__avatar { width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg,var(--color-teal),var(--color-teal-light));display:flex;align-items:center;justify-content:center;font-weight:700;color:#fff;font-size:.8rem }
.test-card__name { font-weight:600;color:var(--color-carbon);font-size:.88rem }
.test-card__role { font-size:.75rem;color:var(--color-slate) }

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

.cta-banner::before {
  content:'';position:absolute;inset:0;
  background:radial-gradient(circle at 20% 50%,rgba(255,255,255,.1) 0%,transparent 40%),radial-gradient(circle at 85% 30%,rgba(255,255,255,.08) 0%,transparent 30%);
}

.cta-banner h2 { font-family:var(--font-display);font-size:clamp(1.8rem,2.8vw,2.5rem);color:#fff;margin-bottom:.75rem;position:relative }
.cta-banner p { color:rgba(255,255,255,.85);font-size:1.05rem;margin-bottom:2rem;position:relative }

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

.price-card {
  background:#fff;border:1.5px solid var(--color-cloud);border-radius:20px;padding:2.5rem;
  transition:all .4s;position:relative;
}

.price-card--feat { border-color:var(--color-teal);box-shadow:var(--shadow-lg),0 0 0 1px var(--color-teal);transform:scale(1.03) }
.price-card--feat::before { content:'Most Popular';position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--color-teal);color:#fff;font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:1px;padding:.3rem 1rem;border-radius:100px }

.price-card__tier { font-size:.72rem;text-transform:uppercase;letter-spacing:2px;color:var(--color-teal);font-weight:600;margin-bottom:.4rem }
.price-card__name { font-family:var(--font-display);font-size:1.45rem;color:var(--color-carbon);margin-bottom:.6rem;font-weight:600 }
.price-card__price { font-family:var(--font-display);font-size:2.8rem;color:var(--color-carbon);margin-bottom:.2rem;font-weight:700 }
.price-card__price span { font-size:.95rem;color:var(--color-slate);font-family:var(--font-body);font-weight:400 }
.price-card__period { font-size:.78rem;color:var(--color-slate);margin-bottom:1.75rem }

.price-card__list { list-style:none;margin-bottom:2rem;padding:0 }
.price-card__list li { padding:.45rem 0;font-size:.86rem;color:var(--color-iron);display:flex;align-items:baseline;gap:.55rem }
.price-card__list li::before { content:'✓';color:var(--color-teal);font-weight:700;font-size:.82rem;flex-shrink:0 }

.price-btn { display:block;width:100%;padding:.85rem;border-radius:10px;font-family:var(--font-body);font-size:.88rem;font-weight:600;cursor:pointer;transition:all .3s;text-align:center;border:none;text-decoration:none }
.price-btn--fill { background:var(--color-teal);color:#fff }
.price-btn--fill:hover { background:var(--color-teal-light);color:#fff }
.price-btn--line { background:transparent;color:var(--color-carbon);border:1.5px solid var(--color-mist) }
.price-btn--line:hover { border-color:var(--color-teal);color:var(--color-teal) }

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

.about-img {
  background:linear-gradient(135deg,var(--color-teal-pale),var(--color-coral-pale));
  border-radius:20px;height:400px;display:flex;align-items:center;justify-content:center;
  border:1px solid var(--color-cloud);position:relative;overflow:hidden;
}

.about-img__dots { position:absolute;inset:0;background:radial-gradient(circle at 2px 2px,rgba(15,123,108,.08) 1px,transparent 0);background-size:24px 24px }
.about-img__content { position:relative;text-align:center }
.about-img__big { font-family:var(--font-display);font-size:5.5rem;color:var(--color-teal);line-height:1;font-weight:700 }
.about-img__lbl { font-size:.78rem;text-transform:uppercase;letter-spacing:2px;color:var(--color-slate);margin-top:.4rem }

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

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

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display:grid;grid-template-columns:1fr 1fr;gap:4rem }
.contact-info h2 { font-family:var(--font-display);font-size:2.2rem;color:var(--color-carbon);margin-bottom:1.25rem;line-height:1.18;font-weight:600 }
.contact-info > p { color:var(--color-slate);font-size:1rem;line-height:1.8;margin-bottom:2rem }

.contact-list { display:flex;flex-direction:column;gap:1.15rem;list-style:none }
.contact-item { display:flex;align-items:center;gap:.85rem }
.contact-item__icon { width:42px;height:42px;background:var(--color-teal-pale);border-radius:11px;display:flex;align-items:center;justify-content:center;font-size:1.05rem;flex-shrink:0 }
.contact-item strong { display:block;color:var(--color-carbon);font-size:.88rem }
.contact-item span { color:var(--color-slate);font-size:.82rem }

.contact-form-wrap { background:var(--color-snow);border:1px solid var(--color-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:.75rem;text-transform:uppercase;letter-spacing:1px;color:var(--color-slate);margin-bottom:.45rem;font-weight:500 }

.form-group input,
.form-group select,
.form-group textarea {
  width:100%;padding:.8rem 1rem;background:#fff;
  border:1.5px solid var(--color-mist);border-radius:10px;
  color:var(--color-carbon);font-family:var(--font-body);font-size:.88rem;
  transition:border-color .3s;outline:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:var(--color-teal);
  box-shadow:0 0 0 3px rgba(15,123,108,.08);
}

.form-group textarea { resize:vertical;min-height:110px }
.form-group select { cursor:pointer }

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.timeline { display:flex;flex-direction:column;position:relative;margin-top:3rem }
.timeline::before { content:'';position:absolute;left:28px;top:0;bottom:0;width:2px;background:linear-gradient(180deg,var(--color-teal),var(--color-teal-light));border-radius:1px }

.timeline__step { display:grid;grid-template-columns:56px 1fr;gap:1.75rem;padding:1.75rem 0 }
.timeline__num { width:56px;height:56px;background:#fff;border:2px solid var(--color-teal);border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-size:1.2rem;color:var(--color-teal);font-weight:700;position:relative;z-index:2 }
.timeline__step h3 { font-family:var(--font-display);font-size:1.2rem;color:var(--color-carbon);margin-bottom:.4rem;font-weight:600 }
.timeline__step p { color:var(--color-slate);font-size:.88rem;line-height:1.7 }

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background:var(--color-snow);border-top:1px solid var(--color-cloud);padding:3.5rem 3rem 1.5rem }
.footer-grid { max-width:var(--max-w);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:.75rem;display:block }
.footer-brand p { font-size:.82rem;color:var(--color-slate);line-height:1.7;max-width:290px }
.footer-col h4 { color:var(--color-carbon);font-size:.75rem;text-transform:uppercase;letter-spacing:1.5px;margin-bottom:1.1rem }
.footer-col ul { list-style:none;padding:0;margin:0 }
.footer-col ul li a { display:block;color:var(--color-slate);text-decoration:none;font-size:.85rem;padding:.25rem 0;transition:color .3s }
.footer-col ul li a:hover { color:var(--color-teal) }
.footer-bottom { max-width:var(--max-w);margin:0 auto;padding-top:1.5rem;border-top:1px solid var(--color-cloud);display:flex;justify-content:space-between;align-items:center;font-size:.75rem;color:var(--color-ash) }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1024px) {
  .hero-inner { grid-template-columns:1fr }
  .hero-visual { display:none }
  .svc-grid { grid-template-columns:repeat(2,1fr) }
  .ind-grid { grid-template-columns:1fr }
  .metrics { grid-template-columns:repeat(2,1fr) }
  .price-grid { grid-template-columns:1fr;max-width:420px;margin:0 auto }
  .price-card--feat { transform:none }
  .about-grid { grid-template-columns:1fr }
  .contact-grid { grid-template-columns:1fr }
  .footer-grid { grid-template-columns:repeat(2,1fr) }
  .team-grid { grid-template-columns:repeat(2,1fr) }
  .vals-grid { grid-template-columns:1fr }
}

@media (max-width:768px) {
  .navbar { padding:.9rem 1.5rem }
  .nav-menu { display:none;flex-direction:column;position:absolute;top:100%;left:0;right:0;background:rgba(255,255,255,.98);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);padding:1.5rem;gap:1rem;border-bottom:1px solid var(--color-mist);box-shadow:var(--shadow-md) }
  .nav-menu.open { display:flex }
  .mobile-menu-toggle { display:flex }
  .sec { padding:3.5rem 1.5rem }
  .hero { padding:6.5rem 1.5rem 3rem }
  .svc-grid { grid-template-columns:1fr }
  .test-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:var(--radius) }
  .team-grid { grid-template-columns:1fr }
  .footer-bottom { flex-direction:column;gap:.5rem;text-align:center }
}
