/*
Theme Name: ColorEditPro
Theme URI: https://coloreditpro.com
Author: ColorEditPro Team
Description: Custom minimal theme for ColorEditPro - Professional Image Editing Services
Version: 1.0.0
License: Private
Text Domain: coloreditpro
*/

/* =============================================
   VARIABLES & RESET
============================================= */
:root {
  --navy:    #0d2d72;
  --blue:    #29abe2;
  --blue-dk: #1a8ac0;
  --white:   #ffffff;
  --bg-alt:  #f4f8fd;
  --bg-dark: #071a47;
  --text:    #1a1a2e;
  --muted:   #5a6a84;
  --border:  #e2ecf7;
  --radius:  8px;
  --shadow:  0 4px 24px rgba(13,45,114,.10);
  --shadow-md: 0 8px 40px rgba(13,45,114,.15);
  --transition: .22s ease;
  --max-w:   1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 60px 0; }

/* =============================================
   TYPOGRAPHY
============================================= */
h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 800;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(41,171,226,.10);
  border: 1px solid rgba(41,171,226,.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41,171,226,.35);
}

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

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

/* =============================================
   NAVIGATION
============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(13,45,114,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.site-logo img {
  height: 48px;
  width: auto;
}
.site-logo .logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}
.site-logo .logo-text span { color: var(--blue); }

#primary-nav { display: flex; align-items: center; gap: 6px; }

#primary-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: .92rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
#primary-nav a:hover,
#primary-nav a.current-menu-item {
  color: var(--navy);
  background: var(--bg-alt);
}

/* Dropdown / sub-menu */
.menu-item-has-children { position: relative; }

.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: .7rem;
  opacity: .6;
}

.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 9999;
  padding: 6px 0;
}

.sub-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: .88rem;
  color: var(--text);
  border-radius: 0;
  white-space: nowrap;
}
.sub-menu li a:hover {
  background: var(--bg-alt);
  color: var(--navy);
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

/* =============================================
   HERO
============================================= */
#hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8a 60%, #0d2d72 100%);
  padding: 96px 0 80px;
  overflow: hidden;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(41,171,226,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(41,171,226,.12);
  border: 1px solid rgba(41,171,226,.3);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue-dk);
  margin-bottom: 20px;
}
.hero-badge::before { content: '⚡'; }

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span { color: var(--blue); }

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  align-items: center;
}

.hero-price-note {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-price-note strong { color: var(--white); }
.hero-price-note::before { content: '✓'; color: #6bcb77; font-weight: 700; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.80);
  box-shadow: none;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-card-header {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-card-dots span {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}
.hero-card-dots span:first-child { background: #ff6b6b; }
.hero-card-dots span:nth-child(2) { background: #ffd93d; }
.hero-card-dots span:nth-child(3) { background: #6bcb77; }
.hero-card-title {
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  font-weight: 600;
  margin-left: 8px;
}

.hero-card-body { padding: 24px; }

.ba-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.ba-label {
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 0;
  border-radius: 4px;
}
.ba-before { background: #f1f5f9; color: #94a3b8; }
.ba-after  { background: rgba(41,171,226,.12); color: var(--blue-dk); }

.ba-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ba-img {
  height: 120px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 600;
}
.ba-img.before-img {
  background: linear-gradient(135deg, #94a3b8, #64748b);
  color: white;
  position: relative;
  overflow: hidden;
}
.ba-img.before-img::after {
  content: 'Raw photo\nwith messy bg';
  white-space: pre;
  text-align: center;
  font-size: .65rem;
}
.ba-img.after-img {
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  border: 2px solid rgba(41,171,226,.3);
  color: var(--blue-dk);
  position: relative;
}
.ba-img.after-img::after {
  content: '✓ Clean\nwhite bg';
  white-space: pre;
  text-align: center;
  font-size: .65rem;
}

.hero-card-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: 8px;
}
.stat-val { font-weight: 800; color: var(--navy); font-size: 1.1rem; }
.stat-lbl { font-size: .78rem; color: var(--muted); font-weight: 500; }

/* Floating badge on hero visual */
.hero-float-badge {
  position: absolute;
  bottom: -18px;
  left: -24px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
}
.float-icon { font-size: 1.6rem; }
.float-text strong { display: block; font-weight: 700; font-size: .9rem; color: var(--navy); }
.float-text span { font-size: .75rem; color: var(--muted); }

/* =============================================
   STATS STRIP
============================================= */
#stats {
  background: var(--navy);
  padding: 40px 0;
}

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

.stat-item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { color: var(--blue); }

.stat-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

/* =============================================
   HOW IT WORKS
============================================= */
#how-it-works { background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--transition);
  position: relative;
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(41,171,226,.3);
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-card:hover .step-number { background: var(--blue); }

.step-icon { font-size: 2rem; margin-bottom: 14px; }
.step-title { margin-bottom: 10px; }
.step-desc { color: var(--muted); font-size: .93rem; }

/* Step connector lines */
.steps-grid .step-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -22px;
  top: 44px;
  font-size: 1.5rem;
  color: var(--border);
  z-index: 1;
}

/* =============================================
   SERVICES
============================================= */
#services { background: var(--bg-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: default;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--blue);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: background var(--transition);
}
.service-card:hover .service-icon-wrap { background: rgba(41,171,226,.12); }

.service-name { margin-bottom: 10px; color: var(--navy); }
.service-desc { font-size: .9rem; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }

.service-price {
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(41,171,226,.08);
  border-radius: 50px;
  padding: 4px 12px;
  display: inline-block;
}

.services-cta { text-align: center; margin-top: 40px; }

/* =============================================
   WHY CHOOSE US
============================================= */
#why-us {
  background: var(--white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4080 100%);
  border-radius: 20px;
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(41,171,226,.15);
  border-radius: 50%;
}

.why-visual-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 28px;
}

.why-stat-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.why-stat { text-align: center; }
.why-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
}
.why-stat-lbl { font-size: .75rem; color: rgba(255,255,255,.65); margin-top: 2px; }

.country-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.flag-chip {
  background: rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: .78rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

.why-list { display: flex; flex-direction: column; gap: 18px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(41,171,226,.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.why-item-title {
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
  margin-bottom: 3px;
}
.why-item-desc { font-size: .88rem; color: var(--muted); }

/* =============================================
   TESTIMONIALS
============================================= */
#testimonials { background: var(--bg-alt); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(41,171,226,.10);
  font-family: Georgia, serif;
  font-weight: 700;
}

.testi-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  font-family: 'Montserrat', sans-serif;
}
.testi-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testi-role { font-size: .78rem; color: var(--muted); }
.testi-flag { font-size: .85rem; }

/* =============================================
   PRICING CTA BAND
============================================= */
#pricing-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4080 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#pricing-cta::before {
  content: '';
  position: absolute;
  left: -100px; bottom: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(41,171,226,.15) 0%, transparent 70%);
  border-radius: 50%;
}

.pricing-cta-label { color: rgba(255,255,255,.6); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.pricing-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.pricing-cta-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 6px;
}
.pricing-cta-price sup { font-size: 1.4rem; vertical-align: super; }
.pricing-cta-price sub { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.6); }

.pricing-cta-sub { color: rgba(255,255,255,.65); margin-bottom: 36px; font-size: .95rem; }
.pricing-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FAQ
============================================= */
#faq { background: var(--white); }

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: flex-start;
}

.faq-intro .section-sub { margin-top: 14px; }
.faq-intro .btn { margin-top: 28px; }

.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  transition: background var(--transition);
  user-select: none;
  gap: 12px;
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question.active { background: var(--bg-alt); color: var(--blue-dk); }

.faq-icon {
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--muted);
  transition: all var(--transition);
}
.faq-question.active .faq-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

/* =============================================
   BLOG POSTS
============================================= */
#recent-posts { background: var(--bg-alt); }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.post-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.post-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-alt), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-img-placeholder { color: var(--muted); font-size: .85rem; }

.post-card-body { padding: 22px; }

.post-meta {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.post-cat {
  background: rgba(41,171,226,.1);
  color: var(--blue-dk);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.post-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.post-title a { color: inherit; }
.post-title a:hover { color: var(--blue); }

.post-excerpt { font-size: .87rem; color: var(--muted); line-height: 1.6; }
.post-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 14px;
}
.post-read-more:hover { gap: 8px; }

.posts-cta { text-align: center; margin-top: 40px; }

/* =============================================
   FINAL CTA BANNER
============================================= */
#final-cta {
  background: var(--bg-alt);
  padding: 80px 0;
}

.final-cta-inner {
  background: linear-gradient(135deg, var(--navy) 0%, #0d3d8f 100%);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.final-cta-inner::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(41,171,226,.18) 0%, transparent 70%);
  border-radius: 50%;
}

.final-cta-text {}
.final-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.final-cta-sub { color: rgba(255,255,255,.65); font-size: .95rem; }

.final-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* =============================================
   FOOTER
============================================= */
#site-footer {
  background: #071a47;
  color: rgba(255,255,255,.7);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: white; }
.footer-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--blue); color: white; }

.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  color: white;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blue); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  align-items: flex-start;
}
.footer-contact-item .icon { color: var(--blue); font-size: 1rem; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--blue); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); }
.footer-bottom-links a:hover { color: var(--blue); }

/* =============================================
   INNER PAGES
============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4080 100%);
  padding: 60px 0;
  text-align: center;
  color: white;
}
.page-hero h1 { color: white; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; }
.page-breadcrumb { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.page-breadcrumb a { color: rgba(255,255,255,.65); }

.page-content {
  padding: 72px 0;
}

/* =============================================
   BLOG
============================================= */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 72px 0;
}

.single-post-header { margin-bottom: 32px; }
.single-post-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.post-meta-row {
  display: flex;
  gap: 16px;
  font-size: .85rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.post-body { font-size: 1rem; line-height: 1.8; color: var(--text); }
.post-body h2,h3 { margin: 32px 0 14px; }
.post-body p { margin-bottom: 18px; }
.post-body ul,ol { padding-left: 24px; margin-bottom: 18px; }

/* Sidebar */
.sidebar-widget {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-sub { max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .final-cta-inner { flex-direction: column; text-align: center; }
  .final-cta-actions { justify-content: center; }
  .blog-layout { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding-bottom: 