/* ===========================================================
   Synergy Consulting — Portfolio / Marketing Site
   Palette: deep green + burnt orange (brand-consistent)
=========================================================== */

:root {
  --green: #1E6B3C;
  --green-dark: #123D22;
  --green-darker: #0B2716;
  --green-soft: #2E8753;
  --orange: #D9622B;
  --orange-light: #F0A472;
  --orange-pale: #FDEEE3;
  --green-pale: #E7F1EA;
  --bg: #FBF9F5;
  --surface: #FFFFFF;
  --ink: #1F2421;
  --slate: #5C6360;
  --border: #E7E0D3;
  --shadow: 0 10px 30px rgba(15, 59, 34, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

h1, h2, h3, h4, .display {
  font-family: 'Lora', serif;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0;
}

p { margin: 0 0 1em; color: var(--slate); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 22px rgba(217, 98, 43, 0.35);
}
.btn-primary:hover { background: #c65621; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
}
.btn-outline:hover { background: var(--green-dark); color: #fff; }
.btn-light {
  background: #fff;
  color: var(--green-dark);
}
.btn-light:hover { transform: translateY(-1px); }

/* ================= HEADER / NAV ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--green-dark);
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--orange-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--green); border-color: var(--orange); }
.main-nav a.nav-cta {
  background: var(--green-dark);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  border-bottom: none;
}
.main-nav a.nav-cta:hover { background: var(--green); color: #fff; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--green-dark);
  cursor: pointer;
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 28px 26px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .main-nav a.nav-cta { margin-top: 4px; }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  background: radial-gradient(circle at 30% 20%, #175A34 0%, var(--green-darker) 68%);
  color: #fff;
  overflow: hidden;
  padding: 100px 0 120px;
}
.hero .arc {
  position: absolute;
  border: 1.5px solid rgba(217,98,43,0.28);
  border-radius: 50%;
}
.hero .arc.a1 { width: 340px; height: 340px; right: -80px; top: -60px; }
.hero .arc.a2 { width: 520px; height: 520px; right: -140px; top: -140px; border-color: rgba(217,98,43,0.16); }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.hero h1 {
  font-size: 3.1rem;
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--orange-light); font-style: italic; }
.hero p.lead {
  font-size: 1.15rem;
  color: #D6E3DA;
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(217,98,43,0.35);
  border-radius: 16px;
  padding: 28px;
}
.hero-visual .hv-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-visual .hv-row:last-child { border-bottom: none; }
.hv-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(217,98,43,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hv-text b { display: block; color: #fff; font-size: 0.98rem; }
.hv-text span { color: #B7CBBF; font-size: 0.85rem; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
}

/* ================= PAGE HERO (inner pages) ================= */
.page-hero {
  background: var(--green-dark);
  color: #fff;
  padding: 72px 0 70px;
  text-align: center;
}
.page-hero .eyebrow { color: var(--orange-light); }
.page-hero .eyebrow::before { background: var(--orange-light); }
.page-hero h1 { color: #fff; font-size: 2.6rem; }
.page-hero p { color: #C9DFD0; max-width: 60ch; margin: 16px auto 0; font-size: 1.05rem; }

/* ================= SECTIONS ================= */
section { padding: 90px 0; }
.section-alt { background: var(--surface); }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: 2.1rem; margin-bottom: 14px; }
.section-head p { font-size: 1.05rem; }

/* ================= GRIDS / CARDS ================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon-badge {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { font-size: 0.95rem; margin-bottom: 0; }

/* ================= PRICING ================= */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--green-dark);
  color: #fff;
  border-radius: 16px;
  padding: 38px 30px;
  text-align: center;
  position: relative;
}
.price-card.featured {
  background: var(--green-darker);
  border: 2px solid var(--orange);
  transform: scale(1.03);
}
.price-card .ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 6px 16px; border-radius: 14px; letter-spacing: 1px; white-space: nowrap;
}
.price-card .pname { font-family: 'Lora', serif; font-size: 1.2rem; color: var(--orange-light); }
.price-card .pprice { font-size: 2.6rem; font-weight: 700; margin: 14px 0 4px; }
.price-card .ppages { font-size: 0.9rem; color: #C9DFD0; margin-bottom: 20px; }
.price-card ul { text-align: left; margin: 18px 0; }
.price-card ul li { font-size: 0.88rem; color: #E3EEE6; padding: 6px 0; display: flex; gap: 8px; }
.price-card ul li::before { content: "✓"; color: var(--orange-light); font-weight: 700; }
.price-card .btn { width: 100%; justify-content: center; margin-top: 10px; }

.hosting-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
@media (max-width: 860px) { .hosting-grid { grid-template-columns: 1fr; } }
.host-card {
  background: var(--orange-pale);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  padding: 22px 24px;
}
.host-card .hname { font-weight: 600; color: var(--green-dark); }
.host-card .hprice { font-size: 1.6rem; font-weight: 700; color: var(--green-soft); margin: 6px 0; }
.host-card p { font-size: 0.88rem; margin: 0; }

/* ================= TIMELINE ================= */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ""; position: absolute; left: 14px; top: 6px; bottom: 6px; width: 2px; background: var(--border);
}
.tl-item { position: relative; padding-bottom: 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-num {
  position: absolute; left: -40px; top: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange); color: #fff; font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--bg);
}
.tl-item h3 { font-size: 1.25rem; margin-bottom: 8px; }
.tl-item p { max-width: 60ch; }

/* ================= STATS STRIP ================= */
.stats-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  background: var(--green-dark); border-radius: 16px; padding: 36px;
  color: #fff; margin-top: 40px;
}
@media (max-width: 860px) { .stats-strip { grid-template-columns: 1fr; } }
.stat { text-align: center; }
.stat .num { font-size: 2.1rem; font-weight: 700; color: var(--orange-light); }
.stat .lab { font-size: 0.85rem; color: #C9DFD0; margin-top: 4px; letter-spacing: 0.5px; }

/* ================= WORK / PORTFOLIO ================= */
.note-banner {
  background: var(--orange-pale);
  border: 1px dashed var(--orange);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-bottom: 40px;
}
.mock-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.mock-preview {
  height: 190px;
  background: linear-gradient(135deg, var(--green-pale), #fff);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.mock-body { padding: 22px 24px; }
.mock-body .tag {
  display: inline-block; font-size: 0.72rem; letter-spacing: 1px; font-weight: 600;
  color: var(--orange); text-transform: uppercase; margin-bottom: 8px;
}
.mock-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.mock-body p { font-size: 0.9rem; }

/* ================= ABOUT ================= */
.about-block { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
@media (max-width: 860px) { .about-block { grid-template-columns: 1fr; } }
.about-photo {
  aspect-ratio: 4/5;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--green), var(--green-darker));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-family: 'Lora', serif; font-size: 1.1rem; text-align: center; padding: 20px;
}
.values-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 20px; }
@media (max-width: 640px) { .values-list { grid-template-columns: 1fr; } }
.value-item { display: flex; gap: 12px; align-items: flex-start; }
.value-item .vi-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  margin-top: 8px; flex-shrink: 0;
}
.value-item b { display: block; color: var(--green-dark); font-size: 0.98rem; }
.value-item span { font-size: 0.88rem; color: var(--slate); }

/* ================= CONTACT ================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--green-dark); color: #fff; border-radius: 16px; padding: 40px 34px;
}
.contact-info-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 18px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-row .ci-icon {
  width: 36px; height: 36px; border-radius: 10px; background: rgba(217,98,43,0.22);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-row b { display: block; color: #fff; font-size: 0.95rem; }
.contact-row span { color: #C9DFD0; font-size: 0.88rem; }

.form-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 36px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; font-size: 0.85rem; font-weight: 600; color: var(--green-dark); margin-bottom: 7px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 0.95rem; background: var(--bg); color: var(--ink);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--orange);
}

/* ================= CTA BAND ================= */
.cta-band {
  background: linear-gradient(120deg, var(--green-darker), var(--green-dark));
  color: #fff; border-radius: 20px; padding: 56px 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: 1.9rem; margin-bottom: 8px; }
.cta-band p { color: #C9DFD0; margin-bottom: 0; }

/* ================= FOOTER ================= */
.site-footer { background: var(--green-darker); color: #B7CBBF; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: 'Lora', serif; color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; font-size: 0.9rem; margin-bottom: 10px; color: #A9C7B4; }
.footer-col a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem; color: #7FA08C;
}
