/*
Theme Name: Harry Smart Technologies
Theme URI: https://hsmart.co.ke
Author: Harry Reagan Odhiambo
Author URI: https://hsmart.co.ke
Description: Premium multi-page corporate theme for Harry Smart Technologies - ERP, POS, ISP Billing, School, Hotel, Pharmacy and Hospital management systems, plus networking, CCTV and IT services across Kenya.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: hst

--------------------------------------------------------------
HOW THIS THEME IS ORGANISED (read this first)
--------------------------------------------------------------
- Design tokens (colors, spacing, radius, shadows) are set once
  below as CSS variables. Change a value there and it updates
  everywhere on the site.
- Each page of the site has its own template file, for example
  page-about.php, page-solutions.php, page-contact.php etc.
  Open the one you want to edit and change the text directly.
- In wp-admin, when you create a Page, look for the "Page
  Attributes" box on the right and choose the matching Template
  from the dropdown (e.g. choose "About Us" template for your
  About page).
--------------------------------------------------------------
*/

/* ============ DESIGN TOKENS ============ */
:root{
  --primary:#5B3DF5;
  --primary-dark:#4529D6;
  --primary-light:#EFEBFF;
  --pink:#E91E63;
  --pink-light:#FDE9F0;
  --dark:#111827;
  --light:#F8FAFC;
  --success:#10B981;
  --white:#FFFFFF;
  --gray-700:#374151;
  --gray-500:#6B7280;
  --gray-300:#E2E5EB;
  --gray-100:#F1F2F6;

  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--pink) 100%);

  --radius-lg:24px;
  --radius-md:18px;
  --radius-sm:12px;
  --radius-pill:100px;

  --shadow-sm: 0 2px 10px rgba(17,24,39,0.05);
  --shadow-md: 0 10px 30px rgba(91,61,245,0.10);
  --shadow-lg: 0 20px 50px rgba(17,24,39,0.12);

  --font: 'Plus Jakarta Sans', -apple-system, Segoe UI, Arial, sans-serif;
  --container: 1200px;
}

/* ============ RESET / BASE ============ */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--dark);
  background:var(--white);
  font-size:16.5px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:var(--font); cursor:pointer; }
input, textarea, select{ font-family:var(--font); }

h1,h2,h3,h4{ font-weight:800; line-height:1.18; margin:0; letter-spacing:-0.01em; }
p{ margin:0; }

.container{ max-width:var(--container); margin:0 auto; padding:0 28px; }
.section{ padding:96px 0; }
.section-tight{ padding:64px 0; }
.bg-light{ background:var(--light); }
.bg-dark{ background:var(--dark); color:#fff; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:0.08em;
  color:var(--primary);
  background:var(--primary-light);
  padding:7px 16px; border-radius:var(--radius-pill);
  margin-bottom:18px;
}
.eyebrow.pink{ color:var(--pink); background:var(--pink-light); }

.section-head{ max-width:640px; margin-bottom:52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:36px; margin-bottom:16px; }
.section-head p{ color:var(--gray-500); font-size:17px; }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 30px;
  border-radius:var(--radius-pill);
  font-weight:700; font-size:15px;
  border:2px solid transparent;
  transition:all .2s ease;
  white-space:nowrap;
}
.btn-primary{ background:var(--gradient); color:#fff; box-shadow:var(--shadow-md); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 16px 34px rgba(91,61,245,0.24); }
.btn-outline{ border-color:var(--gray-300); color:var(--dark); background:#fff; }
.btn-outline:hover{ border-color:var(--primary); color:var(--primary); transform:translateY(-3px); }
.btn-white{ background:#fff; color:var(--primary); }
.btn-white:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.btn-sm{ padding:10px 20px; font-size:13.5px; }
.btn-block{ width:100%; }

/* ============ HEADER / NAV ============ */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:all .25s ease;
  padding:18px 0;
}
.site-header.scrolled{
  background:rgba(17,24,39,0.96);
  padding:12px 0;
  box-shadow:var(--shadow-lg);
}
.site-header.scrolled .main-nav > ul > li > a,
.site-header.scrolled .site-logo,
.site-header.scrolled .phone-badge{ color:#fff; }
.site-header.scrolled .site-logo .logo-mark{ background:var(--gradient); }

.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.site-logo{ display:flex; align-items:center; gap:10px; font-weight:800; font-size:19px; color:var(--dark); transition:color .2s ease; }
.logo-mark{
  width:38px; height:38px; border-radius:11px;
  background:var(--gradient);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:800; font-size:15px; flex-shrink:0;
}

.main-nav > ul{ display:flex; gap:6px; align-items:center; }
.main-nav > ul > li{ position:relative; }
.main-nav > ul > li > a{
  display:flex; align-items:center; gap:5px;
  padding:10px 16px; border-radius:var(--radius-pill);
  font-weight:600; font-size:14.5px; color:var(--dark);
  transition:all .2s ease;
}
.main-nav > ul > li > a:hover{ background:var(--primary-light); color:var(--primary); }
.site-header.scrolled .main-nav > ul > li > a:hover{ background:rgba(255,255,255,0.12); color:#fff; }

.has-mega{ position:relative; }
.mega-menu{
  position:absolute; top:calc(100% + 14px); left:50%; transform:translateX(-50%);
  width:640px; background:#fff; border-radius:var(--radius-md); box-shadow:var(--shadow-lg);
  padding:26px; display:grid; grid-template-columns:1fr 1fr; gap:6px;
  opacity:0; visibility:hidden; translate:0 8px;
  transition:all .2s ease;
}
.has-mega:hover .mega-menu{ opacity:1; visibility:visible; translate:0 0; }
.mega-menu a{
  display:flex; align-items:center; gap:12px; padding:11px 12px; border-radius:var(--radius-sm);
  color:var(--dark); font-size:14px; font-weight:600;
}
.mega-menu a:hover{ background:var(--primary-light); color:var(--primary); }
.mega-menu a .dot{ width:8px; height:8px; border-radius:50%; background:var(--gradient); flex-shrink:0; }

.header-right{ display:flex; align-items:center; gap:18px; }
.phone-badge{ display:flex; align-items:center; gap:8px; font-weight:700; font-size:14px; color:var(--dark); }
.phone-badge svg{ color:var(--primary); }
.nav-toggle{ display:none; background:none; border:none; font-size:24px; }

@media (max-width:960px){
  .main-nav, .phone-badge{ display:none; }
  .nav-toggle{ display:block; }
}

/* mobile drawer */
.mobile-nav{
  position:fixed; inset:0; background:var(--dark); z-index:200;
  display:none; flex-direction:column; padding:26px;
}
.mobile-nav.open{ display:flex; }
.mobile-nav-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:30px; }
.mobile-nav-head button{ background:none; border:none; color:#fff; font-size:26px; }
.mobile-nav ul{ display:flex; flex-direction:column; gap:6px; }
.mobile-nav a{ color:#fff; font-size:19px; font-weight:700; padding:12px 0; border-bottom:1px solid rgba(255,255,255,0.08); }

/* ============ HERO ============ */
.hero{ position:relative; padding:80px 0 90px; overflow:hidden; }
.hero::before{
  content:''; position:absolute; top:-160px; right:-160px; width:520px; height:520px;
  background:var(--gradient); opacity:0.10; border-radius:50%; filter:blur(10px);
}
.hero-grid{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:50px; align-items:center; position:relative; z-index:1; }
.hero h1{ font-size:52px; margin:20px 0 22px; }
.hero h1 .accent{ background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero p.lede{ font-size:18px; color:var(--gray-500); max-width:520px; margin-bottom:32px; }
.hero-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:34px; }
.hero-tags span{
  font-size:13px; font-weight:700; color:var(--gray-700);
  background:var(--gray-100); padding:8px 15px; border-radius:var(--radius-pill);
}
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; }

.hero-visual{
  position:relative; background:var(--white); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg); padding:30px; border:1px solid var(--gray-100);
}
.hero-visual .tile{
  background:var(--light); border-radius:var(--radius-md); padding:20px; margin-bottom:14px;
  display:flex; align-items:center; gap:14px;
}
.hero-visual .tile:last-child{ margin-bottom:0; }
.hero-visual .tile .ic{
  width:44px; height:44px; border-radius:12px; background:var(--gradient); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; color:#fff;
}
.hero-visual .tile h4{ font-size:14.5px; margin-bottom:2px; }
.hero-visual .tile p{ font-size:12.5px; color:var(--gray-500); }
.hero-visual .badge-float{
  position:absolute; top:-18px; right:22px; background:var(--dark); color:#fff;
  padding:12px 18px; border-radius:var(--radius-md); box-shadow:var(--shadow-lg);
  font-size:13px; font-weight:700; display:flex; align-items:center; gap:8px;
}
.hero-visual .badge-float .dotpulse{ width:8px; height:8px; border-radius:50%; background:var(--success); }

@media (max-width:960px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero h1{ font-size:36px; }
  .hero-visual{ order:-1; }
}

/* ============ TRUST / LOGO STRIP ============ */
.trust-strip{ padding:36px 0; border-top:1px solid var(--gray-100); border-bottom:1px solid var(--gray-100); }
.trust-strip p.label{ text-align:center; font-size:13px; font-weight:700; color:var(--gray-500); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:22px; }
.trust-logos{ display:flex; justify-content:center; gap:50px; flex-wrap:wrap; opacity:0.55; }
.trust-logos span{ font-weight:800; font-size:17px; color:var(--gray-700); }

/* ============ STATS ============ */
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.stat-card{
  text-align:center; background:#fff; border-radius:var(--radius-md); padding:34px 20px;
  border:1px solid var(--gray-100); box-shadow:var(--shadow-sm);
}
.stat-card .num{ font-size:38px; font-weight:800; background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat-card .lbl{ font-size:14px; color:var(--gray-500); font-weight:600; margin-top:6px; }
@media (max-width:700px){ .stats-grid{ grid-template-columns:1fr 1fr; } }

/* ============ SERVICE / SOLUTION CARDS ============ */
.card-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.card-grid.cols-4{ grid-template-columns:repeat(4,1fr); }
.card-grid.cols-2{ grid-template-columns:repeat(2,1fr); }
.service-card{
  background:#fff; border:1px solid var(--gray-100); border-radius:var(--radius-md);
  padding:32px 26px; transition:all .25s ease; box-shadow:var(--shadow-sm);
}
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:transparent; }
.service-card .ic{
  width:52px; height:52px; border-radius:14px; background:var(--primary-light); color:var(--primary);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.service-card h3{ font-size:18.5px; margin-bottom:10px; }
.service-card p{ color:var(--gray-500); font-size:14.5px; }
.service-card a.more{ display:inline-flex; align-items:center; gap:6px; margin-top:16px; font-weight:700; font-size:13.5px; color:var(--primary); }

/* ============ PRODUCT CARDS ============ */
.product-card{
  background:#fff; border:1px solid var(--gray-100); border-radius:var(--radius-md); overflow:hidden;
  box-shadow:var(--shadow-sm); transition:all .25s ease;
}
.product-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.product-media{
  height:150px; background:var(--gradient); display:flex; align-items:center; justify-content:center; color:#fff;
  position:relative;
}
.product-media .cat-tag{
  position:absolute; top:14px; left:14px; background:rgba(255,255,255,0.2); backdrop-filter:blur(6px);
  font-size:11px; font-weight:700; padding:5px 12px; border-radius:var(--radius-pill); color:#fff;
}
.product-body{ padding:24px 22px; }
.product-body h3{ font-size:17px; margin-bottom:8px; }
.product-body p{ font-size:13.5px; color:var(--gray-500); margin-bottom:16px; }
.product-foot{ display:flex; justify-content:space-between; align-items:center; }
.product-foot .price{ font-weight:800; color:var(--primary); font-size:15px; }

/* ============ FILTER TABS ============ */
.filter-tabs{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:40px; }
.filter-tabs button{
  border:1.5px solid var(--gray-300); background:#fff; padding:9px 20px; border-radius:var(--radius-pill);
  font-weight:700; font-size:13.5px; color:var(--gray-700); transition:all .2s ease;
}
.filter-tabs button.active, .filter-tabs button:hover{ background:var(--gradient); color:#fff; border-color:transparent; }

/* ============ TESTIMONIALS ============ */
.testi-track{ position:relative; max-width:720px; margin:0 auto; text-align:center; min-height:210px; }
.testi-slide{ display:none; }
.testi-slide.active{ display:block; }
.testi-slide p.quote{ font-size:20px; font-weight:600; color:var(--dark); margin-bottom:24px; line-height:1.5; }
.testi-who{ display:flex; align-items:center; justify-content:center; gap:12px; }
.testi-who .av{ width:44px; height:44px; border-radius:50%; background:var(--gradient); }
.testi-who h5{ font-size:14.5px; }
.testi-who span{ font-size:12.5px; color:var(--gray-500); }
.testi-dots{ display:flex; justify-content:center; gap:8px; margin-top:26px; }
.testi-dots button{ width:9px; height:9px; border-radius:50%; background:var(--gray-300); border:none; padding:0; }
.testi-dots button.active{ background:var(--primary); width:22px; border-radius:6px; }

/* ============ FAQ ACCORDION ============ */
.accordion-item{ border-bottom:1px solid var(--gray-100); }
.accordion-q{
  width:100%; background:none; border:none; text-align:left; padding:22px 0;
  display:flex; justify-content:space-between; align-items:center; font-weight:700; font-size:16px;
}
.accordion-q .plus{ font-size:22px; color:var(--primary); transition:transform .2s ease; flex-shrink:0; margin-left:16px;}
.accordion-item.open .accordion-q .plus{ transform:rotate(45deg); }
.accordion-a{ max-height:0; overflow:hidden; transition:max-height .25s ease; color:var(--gray-500); font-size:14.5px; }
.accordion-a-inner{ padding-bottom:22px; }

/* ============ PRICING ============ */
.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:start; }
.price-card{ background:#fff; border:1px solid var(--gray-100); border-radius:var(--radius-lg); padding:36px 28px; box-shadow:var(--shadow-sm); }
.price-card.featured{ border-color:transparent; background:var(--dark); color:#fff; box-shadow:var(--shadow-lg); transform:scale(1.04); position:relative; }
.price-card.featured .price-tag,
.price-card.featured p{ color:#fff; }
.price-card.featured .feat-list li{ color:#E5E7EB; }
.price-card .badge-pop{ position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--gradient); padding:6px 16px; border-radius:var(--radius-pill); font-size:12px; font-weight:700; }
.price-card h3{ font-size:19px; margin-bottom:6px; }
.price-card p.desc{ color:var(--gray-500); font-size:13.5px; margin-bottom:20px; }
.price-tag{ font-size:34px; font-weight:800; margin-bottom:22px; }
.price-tag span{ font-size:14px; font-weight:600; color:var(--gray-500); }
.feat-list{ margin-bottom:28px; }
.feat-list li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; margin-bottom:12px; color:var(--gray-700); }
.feat-list li svg{ color:var(--success); flex-shrink:0; margin-top:2px; }

/* ============ PORTFOLIO ============ */
.portfolio-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.portfolio-card{ border-radius:var(--radius-md); overflow:hidden; position:relative; box-shadow:var(--shadow-sm); }
.portfolio-media{ height:200px; background:var(--gradient); position:relative; }
.portfolio-info{ background:#fff; padding:20px 22px; border:1px solid var(--gray-100); border-top:none; border-radius:0 0 var(--radius-md) var(--radius-md); }
.portfolio-info .tag{ font-size:11.5px; font-weight:700; color:var(--primary); text-transform:uppercase; letter-spacing:0.05em; }
.portfolio-info h3{ font-size:16.5px; margin:8px 0 4px; }
.portfolio-info p{ font-size:13px; color:var(--gray-500); }

/* ============ TEAM / TIMELINE ============ */
.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.team-card{ text-align:center; }
.team-photo{ width:100%; aspect-ratio:1; border-radius:var(--radius-md); background:var(--gradient); margin-bottom:14px; }
.team-card h4{ font-size:15.5px; }
.team-card span{ font-size:13px; color:var(--gray-500); }

.timeline{ border-left:2px solid var(--gray-300); margin-left:10px; }
.timeline-item{ position:relative; padding:0 0 40px 32px; }
.timeline-item::before{ content:''; position:absolute; left:-7px; top:2px; width:12px; height:12px; border-radius:50%; background:var(--gradient); }
.timeline-item h4{ font-size:16px; margin-bottom:6px; }
.timeline-item span.yr{ font-size:12.5px; font-weight:700; color:var(--primary); }
.timeline-item p{ font-size:14px; color:var(--gray-500); margin-top:6px; }

/* ============ VALUES GRID ============ */
.value-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.value-card{ padding:28px; border-radius:var(--radius-md); background:var(--light); }
.value-card .ic{ width:46px; height:46px; border-radius:13px; background:var(--gradient); color:#fff; display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.value-card h4{ font-size:16.5px; margin-bottom:8px; }
.value-card p{ font-size:14px; color:var(--gray-500); }

/* ============ INDUSTRY PILLS ============ */
.industry-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.industry-card{
  background:#fff; border:1px solid var(--gray-100); border-radius:var(--radius-md); padding:26px 22px;
  display:flex; align-items:center; gap:14px; transition:all .2s ease;
}
.industry-card:hover{ border-color:var(--primary); transform:translateY(-4px); }
.industry-card .ic{ width:42px; height:42px; border-radius:11px; background:var(--pink-light); color:var(--pink); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.industry-card h4{ font-size:15px; }

/* ============ BLOG ============ */
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.blog-card{ background:#fff; border:1px solid var(--gray-100); border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-sm); }
.blog-media{ height:170px; background:var(--gradient); }
.blog-body{ padding:22px; }
.blog-body .cat{ font-size:11.5px; font-weight:700; color:var(--pink); text-transform:uppercase; }
.blog-body h3{ font-size:17px; margin:8px 0; }
.blog-body p{ font-size:13.5px; color:var(--gray-500); }
.blog-meta{ font-size:12.5px; color:var(--gray-500); margin-top:14px; }

/* ============ CTA BAND ============ */
.cta-band{
  background:var(--gradient); border-radius:var(--radius-lg); padding:64px 56px;
  display:flex; align-items:center; justify-content:space-between; gap:30px; color:#fff;
}
.cta-band h2{ color:#fff; font-size:30px; max-width:480px; }
.cta-band p{ color:rgba(255,255,255,0.85); margin-top:10px; max-width:440px; }
@media (max-width:800px){ .cta-band{ flex-direction:column; align-items:flex-start; text-align:left; padding:44px 30px; } }

/* ============ FORMS ============ */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-field{ margin-bottom:18px; grid-column:span 1; }
.form-field.full{ grid-column:1 / -1; }
.form-field label{ display:block; font-size:13.5px; font-weight:700; margin-bottom:8px; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding:14px 16px; border-radius:var(--radius-sm); border:1.5px solid var(--gray-300);
  font-size:14.5px; background:#fff;
}
.form-field textarea{ resize:vertical; min-height:120px; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{ outline:none; border-color:var(--primary); }
@media (max-width:700px){ .form-grid{ grid-template-columns:1fr; } }

/* ============ CONTACT INFO CARDS ============ */
.contact-info-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:50px; }
.contact-info-card{ background:var(--light); border-radius:var(--radius-md); padding:26px; text-align:center; }
.contact-info-card .ic{ width:48px; height:48px; border-radius:50%; background:var(--gradient); color:#fff; display:flex; align-items:center; justify-content:center; margin:0 auto 14px; }
.contact-info-card h4{ font-size:15px; margin-bottom:6px; }
.contact-info-card p{ font-size:13.5px; color:var(--gray-500); }
.map-embed{ border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--gray-100); height:340px; }
.map-embed iframe{ width:100%; height:100%; border:0; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float{
  position:fixed; bottom:26px; right:26px; z-index:150;
  width:58px; height:58px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-lg);
  transition:transform .2s ease;
}
.wa-float:hover{ transform:scale(1.08); }

/* ============ FOOTER ============ */
.site-footer{ background:var(--dark); color:#D1D5DB; padding-top:80px; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr 1.2fr; gap:30px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-brand p{ font-size:14px; color:#9CA3AF; margin:16px 0 20px; max-width:280px; }
.footer-col h4{ color:#fff; font-size:13.5px; text-transform:uppercase; letter-spacing:0.05em; margin-bottom:18px; }
.footer-col li{ margin-bottom:11px; font-size:14px; }
.footer-col a:hover{ color:#fff; }
.social-row{ display:flex; gap:10px; }
.social-row a{ width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; }
.social-row a:hover{ background:var(--gradient); }
.newsletter-form{ display:flex; gap:8px; margin-top:6px; }
.newsletter-form input{ flex:1; padding:12px 14px; border-radius:var(--radius-sm); border:none; font-size:13.5px; }
.newsletter-form button{ background:var(--gradient); border:none; color:#fff; border-radius:var(--radius-sm); padding:0 16px; font-weight:700; }
.footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; padding:26px 0; font-size:13px; color:#9CA3AF; }
.footer-bottom a:hover{ color:#fff; }

/* ============ PAGE HERO (for inner pages) ============ */
.page-hero{ padding:60px 0 60px; text-align:center; background:var(--light); }
.page-hero .eyebrow{ justify-content:center; }
.page-hero h1{ font-size:40px; margin-bottom:14px; }
.page-hero p{ color:var(--gray-500); font-size:16px; max-width:560px; margin:0 auto; }
.breadcrumb{ font-size:13px; color:var(--gray-500); margin-top:14px; }
.breadcrumb a:hover{ color:var(--primary); }

/* ============ MISC UTILITIES ============ */
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.center{ text-align:center; }
.mt-lg{ margin-top:60px; }
.divider{ height:1px; background:var(--gray-100); margin:60px 0; }
.badge-check{ display:inline-flex; align-items:center; gap:8px; font-size:13.5px; font-weight:600; color:var(--gray-700); }
.badge-check svg{ color:var(--success); }

/* ============ RESPONSIVE ============ */
@media (max-width:960px){
  .card-grid, .card-grid.cols-4{ grid-template-columns:repeat(2,1fr); }
  .stats-grid{ grid-template-columns:repeat(2,1fr); }
  .team-grid, .industry-grid{ grid-template-columns:repeat(2,1fr); }
  .pricing-grid, .portfolio-grid, .blog-grid, .value-grid{ grid-template-columns:1fr; }
  .price-card.featured{ transform:none; }
  .two-col{ grid-template-columns:1fr; gap:36px; }
  .contact-info-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:600px){
  .card-grid, .card-grid.cols-4, .stats-grid, .team-grid, .industry-grid{ grid-template-columns:1fr; }
  .section{ padding:64px 0; }
  .hero h1{ font-size:30px; }
  .footer-grid{ grid-template-columns:1fr; }
}
