/* ============================================ */
/* SIRCLECARE LANDING PAGE STYLES              */
/* ============================================ */

/* ---------- WIDER CONTAINER FOR SC PAGES ---------- */
.sc-hero .container,
.sc-included .container,
.sc-pricing .container,
.sc-risks .container,
.sc-compare .container,
.sc-faq .container,
.sc-final-cta .container,
.sc-software .container {
  max-width: 1400px;
  width: 92%;
}

/* ---------- SHARED ELEMENTS ---------- */
.sc-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.sc-section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-dark .sc-section-title { color: var(--white); }
.section-cream .sc-section-title { color: var(--dark-green); }

.sc-section-sub {
  font-size: 18px;
  line-height: 1.6;
  max-width: 760px;
  margin-bottom: 56px;
}

/* Centered section headers (proof, results, etc.) */
.sc-centered .sc-label {
  display: block;
  text-align: center;
}
.sc-centered .sc-section-title {
  text-align: center;
}
.sc-centered .sc-section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .sc-section-sub { color: var(--soft-green); }
.section-cream .sc-section-sub { color: var(--mid-grey); }

/* ---------- CONTENT Z-INDEX (above bg-textures) ---------- */
.sc-included > .container,
.sc-proof > .container,
.sc-pricing > .container,
.sc-risks > .container,
.sc-compare > .container,
.sc-faq > .container,
.sc-final-cta > .container,
.sc-software > .container,
.sc-webdev > .container,
.sc-portfolio > .container {
  position: relative;
  z-index: 2;
}

/* ---------- HERO ---------- */
/* ---------- HERO BACKGROUND IMAGE ---------- */
.sc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.sc-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--dark-green);
  padding: 120px 0 80px;
  overflow: hidden;
}

.sc-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(63,111,69,0.2), transparent 70%);
  pointer-events: none;
}

.sc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.sc-hero h1 {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 24px;
}

.sc-hero-sub {
  font-size: 20px;
  color: var(--soft-green);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 560px;
}

.sc-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.sc-hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.sc-stat {
  display: flex;
  flex-direction: column;
}

.sc-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.sc-stat-label {
  font-size: 13px;
  color: var(--soft-green);
  margin-top: 4px;
  opacity: 0.8;
}

/* Hero reveal animation */
.hero-reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: scHeroFade 0.8s ease forwards;
}
.hero-reveal:nth-child(1) { animation-delay: 0.2s; }
.hero-reveal:nth-child(2) { animation-delay: 0.35s; }
.hero-reveal:nth-child(3) { animation-delay: 0.5s; }
.hero-reveal:nth-child(4) { animation-delay: 0.65s; }
.hero-reveal:nth-child(5) { animation-delay: 0.8s; }

@keyframes scHeroFade {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- HERO VISUAL ACCENT ---------- */
.sc-hero-bg-abstract {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.12;
  z-index: 0;
}
.sc-hero-bg .bg-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}
.sc-hero-bg .noise-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

@media (max-width: 767px) {
  .sc-hero { padding: 100px 0 60px; min-height: 80vh; }
  .sc-hero-stats { gap: 32px; }
  .sc-stat-num { font-size: 26px; }
}

/* ---------- FEATURES GRID ---------- */
.sc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sc-feature {
  background: #FAFAF6;
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid rgba(12,24,15,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sc-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(12,24,15,0.1);
}

.sc-feature-icon {
  width: 40px;
  height: 40px;
  color: var(--mid-green);
  margin-bottom: 20px;
}

.sc-feature h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-green);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sc-feature p {
  font-size: 15px;
  color: var(--mid-grey);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .sc-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .sc-features-grid { grid-template-columns: 1fr; }
}

/* ---------- PRICING GRID ---------- */
.sc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.sc-pkg {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(208,223,185,0.1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.sc-pkg:hover {
  transform: translateY(-8px);
  border-color: rgba(208,223,185,0.25);
}

.sc-pkg-popular {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 40px rgba(242,226,164,0.15);
}

.sc-pkg-popular:hover {
  border-color: var(--gold);
}

.sc-popular-tag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  color: var(--dark-green);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px;
}

.sc-pkg-top {
  padding: 40px 28px 28px;
}

.sc-pkg-popular .sc-pkg-top {
  padding-top: 52px;
}

.sc-pkg-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.sc-badge-basic { background: rgba(45,156,74,0.15); color: #6ec97e; }
.sc-badge-plus { background: rgba(244,162,97,0.15); color: #f4a261; }
.sc-badge-pro { background: rgba(0,180,216,0.15); color: #00b4d8; }
.sc-badge-custom { background: rgba(124,58,237,0.15); color: #a78bfa; }

.sc-pkg-price {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.sc-pkg-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--soft-green);
  opacity: 0.7;
}

.sc-pkg-year {
  font-size: 13px;
  color: var(--soft-green);
  opacity: 0.5;
  margin-bottom: 16px;
}

.sc-pkg-desc {
  font-size: 15px;
  color: var(--soft-green);
  line-height: 1.5;
}

/* Feature lists */
.sc-pkg-features {
  padding: 0 28px;
  flex: 1;
}

.sc-pkg-group-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-top: 20px;
  margin-bottom: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(208,223,185,0.08);
}

.sc-pkg-group-title:first-child {
  border-top: none;
  margin-top: 0;
}

.sc-pkg-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sc-pkg-features li {
  font-size: 14px;
  padding: 5px 0;
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}

.sc-pkg-features li.included {
  color: var(--soft-green);
}

.sc-pkg-features li.included::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mid-green);
  font-weight: 700;
}

.sc-pkg-features li.not-included {
  color: rgba(208,223,185,0.3);
}

.sc-pkg-features li.not-included::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(208,223,185,0.2);
}

/* Bottom */
.sc-pkg-bottom {
  padding: 24px 28px 32px;
  margin-top: auto;
}

.sc-pkg-ideal {
  font-size: 13px;
  color: var(--soft-green);
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1.5;
}

.sc-pkg-ideal strong {
  color: var(--soft-green);
}

.sc-pkg-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(208,223,185,0.2);
  transition: all 0.3s ease;
}

.sc-pkg-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(208,223,185,0.4);
  transform: translateY(-2px);
}

.sc-pkg-btn-primary {
  background: var(--gold);
  color: var(--dark-green);
  border-color: var(--gold);
}

.sc-pkg-btn-primary:hover {
  background: var(--gold-warm);
  border-color: var(--gold-warm);
  box-shadow: 0 8px 24px rgba(242,226,164,0.3);
}

@media (max-width: 1100px) {
  .sc-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .sc-pricing-grid { grid-template-columns: 1fr; }
  .sc-pkg-price { font-size: 36px; }
}

/* ---------- COMPARISON TABLE ---------- */
.sc-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -24px;
  padding: 0 24px;
}

.sc-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 14px;
}

.sc-table thead {
  position: sticky;
  top: 0;
  z-index: 10;
}

.sc-table th {
  background: var(--dark-green);
  color: var(--white);
  padding: 16px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 2px solid var(--mid-green);
}

.sc-table th span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--soft-green);
  margin-top: 4px;
}

.sc-table-feature {
  text-align: left !important;
  width: 35%;
}

.sc-table-highlight {
  background: var(--dark-green) !important;
  color: var(--white) !important;
  position: relative;
}

.sc-table-highlight span {
  color: var(--gold) !important;
}

/* Pro column highlight in body */
.sc-table tbody td:nth-child(4) {
  background: rgba(12,24,15,0.06);
  font-weight: 600;
}

.sc-table tbody tr:hover td:nth-child(4) {
  background: rgba(12,24,15,0.1);
}

.sc-table td {
  padding: 12px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(12,24,15,0.06);
  color: var(--dark-grey-green);
}

.sc-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--dark-green);
}

.sc-table-group td {
  background: var(--warm-beige);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark-green) !important;
  padding: 10px 20px;
  text-align: left !important;
}

.sc-table tbody tr:hover td {
  background: rgba(63,111,69,0.04);
}

.sc-table tbody tr:hover td:first-child {
  color: var(--mid-green);
}

/* ---------- RISKS GRID ---------- */
.sc-risks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sc-risk {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(208,223,185,0.08);
  border-radius: 14px;
  padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.sc-risk:hover {
  transform: translateY(-4px);
  border-color: rgba(231,99,81,0.3);
}

.sc-risk-icon {
  margin-bottom: 14px;
  color: var(--gold);
}

.sc-risk-icon svg {
  width: 32px;
  height: 32px;
}

.sc-risk h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sc-risk p {
  font-size: 14px;
  color: var(--soft-green);
  line-height: 1.6;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .sc-risks-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .sc-risks-grid { grid-template-columns: 1fr; }
}

/* ---------- SOFTWARE GRID ---------- */
.sc-software-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.sc-sw-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(208,223,185,0.1);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.sc-sw-card:hover {
  transform: translateY(-4px);
  border-color: rgba(208,223,185,0.2);
}

.sc-sw-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.sc-sw-desc {
  font-size: 13px;
  color: var(--soft-green);
  line-height: 1.5;
  margin-bottom: 12px;
  opacity: 0.8;
}

.sc-sw-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.sc-sw-sites {
  font-size: 11px;
  color: var(--soft-green);
  opacity: 0.5;
}

.sc-software-total {
  text-align: center;
  padding: 40px;
  background: rgba(242,226,164,0.06);
  border: 1px solid rgba(242,226,164,0.15);
  border-radius: 16px;
  margin-bottom: 48px;
}

.sc-sw-total-label {
  font-size: 14px;
  color: var(--soft-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
}

.sc-sw-total-amount {
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.sc-sw-total-amount span {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.7;
}

.sc-sw-total-sub {
  font-size: 15px;
  color: var(--soft-green);
  opacity: 0.7;
}

.sc-privacy-callout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 32px;
  background: rgba(63,111,69,0.12);
  border: 1px solid rgba(63,111,69,0.25);
  border-radius: 14px;
}

.sc-privacy-callout svg {
  color: var(--mid-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.sc-privacy-callout strong {
  display: block;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
}

.sc-privacy-callout p {
  font-size: 14px;
  color: var(--soft-green);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .sc-software-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .sc-software-grid { grid-template-columns: 1fr; }
  .sc-sw-total-amount { font-size: 40px; }
  .sc-privacy-callout { flex-direction: column; }
}

/* ---------- FAQ ---------- */
.sc-faq-list {
  max-width: 960px;
  margin: 0 auto;
}

.sc-faq-item {
  border-bottom: 1px solid rgba(208,223,185,0.12);
}

.sc-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.sc-faq-question span {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  flex: 1;
  padding-right: 20px;
}

.sc-faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--mid-green);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.sc-faq-item.open .sc-faq-question svg {
  transform: rotate(180deg);
}

.sc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.sc-faq-item.open .sc-faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.sc-faq-answer p {
  font-size: 16px;
  color: var(--soft-green);
  line-height: 1.7;
}

/* ---------- FAQ LIGHT THEME (section-cream) — premium card style ---------- */
.section-cream.sc-faq .sc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-cream.sc-faq .sc-faq-item {
  border-bottom: none;
  background: rgba(12,24,15,0.03);
  border: 1px solid rgba(12,24,15,0.08);
  border-radius: 14px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.section-cream.sc-faq .sc-faq-item:hover {
  background: rgba(12,24,15,0.05);
  border-color: rgba(212,175,100,0.4);
}
.section-cream.sc-faq .sc-faq-item.open {
  background: rgba(12,24,15,0.05);
  border-color: rgba(212,175,100,0.55);
}
.section-cream.sc-faq .sc-faq-question {
  padding: 22px 26px;
}
.section-cream.sc-faq .sc-faq-question span {
  color: var(--dark-green);
}
.section-cream.sc-faq .sc-faq-question svg {
  color: var(--dark-green);
}
.section-cream.sc-faq .sc-faq-item.open .sc-faq-answer {
  padding: 0 26px 22px;
}
.section-cream.sc-faq .sc-faq-answer p {
  color: rgba(12,24,15,0.72);
}
.section-cream.sc-faq .sc-section-title {
  color: var(--dark-green);
}
.section-cream.sc-faq .sc-label {
  color: var(--mid-green);
}

/* ---------- PACKAGES ON LIGHT (section-cream) ---------- */
.section-cream.sc-pricing .sc-pkg {
  background: #FAFAF6;
  border: 1px solid rgba(12,24,15,0.08);
}
.section-cream.sc-pricing .sc-pkg-price {
  color: var(--dark-green);
}
.section-cream.sc-pricing .sc-pkg-price span {
  color: rgba(12,24,15,0.5);
}
.section-cream.sc-pricing .sc-pkg-year {
  color: rgba(12,24,15,0.45);
}
.section-cream.sc-pricing .sc-pkg-desc {
  color: rgba(12,24,15,0.65);
}
.section-cream.sc-pricing .sc-pkg-group-title {
  color: var(--mid-green);
  border-top-color: rgba(12,24,15,0.08);
}
.section-cream.sc-pricing .sc-pkg-features li.included {
  color: var(--dark-green);
}
.section-cream.sc-pricing .sc-pkg-features li.included::before {
  color: var(--mid-green);
}
.section-cream.sc-pricing .sc-pkg-features li.not-included {
  color: rgba(12,24,15,0.25);
}
.section-cream.sc-pricing .sc-pkg-features li.not-included::before {
  color: rgba(12,24,15,0.2);
}
.section-cream.sc-pricing .sc-pkg-ideal {
  color: rgba(12,24,15,0.55);
}
.section-cream.sc-pricing .sc-pkg-ideal strong {
  color: var(--dark-green);
}
.section-cream.sc-pricing .sc-pkg-btn {
  color: var(--dark-green);
  border-color: rgba(12,24,15,0.15);
}
.section-cream.sc-pricing .sc-pkg-btn:hover {
  background: var(--dark-green);
  color: var(--white);
}
.section-cream.sc-pricing .sc-section-title {
  color: var(--dark-green);
}
.section-cream.sc-pricing .sc-label {
  color: var(--mid-green);
}
.section-cream.sc-pricing .sc-section-sub {
  color: rgba(12,24,15,0.6);
}
.section-cream.sc-pricing .sc-pkg-badge {
  background: rgba(12,24,15,0.06);
  color: var(--dark-green);
}
.section-cream.sc-pricing .sc-popular-tag {
  background: var(--mid-green);
}

/* ---------- FINAL CTA ---------- */
.sc-final-cta {
  position: relative;
  padding: 160px 0;
  text-align: center;
  overflow: hidden;
}

.sc-cta-bg {
  position: absolute;
  inset: 0;
}

.sc-cta-bg .bg-texture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.3);
}

.sc-cta-content {
  position: relative;
  z-index: 3;
}

.sc-cta-content h2 {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 20px;
}

.sc-cta-content p {
  font-size: 20px;
  color: var(--soft-green);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.sc-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================ */
/* SUBPAGE REVEAL FALLBACK                     */
/* Forces reveal-up content visible on scroll  */
/* ============================================ */
.sc-hero .reveal-up,
.sc-hero .hero-reveal,
.sc-included .reveal-up,
.sc-pricing .reveal-up,
.sc-risks .reveal-up,
.sc-compare .reveal-up,
.sc-faq .reveal-up,
.sc-final-cta .reveal-up,
.sc-software .reveal-up {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* ============================================ */
/* NO PURE WHITE: USE CREAM EVERYWHERE         */
/* ============================================ */

/* Section backgrounds: cream not white */
.section-cream {
  background: var(--cream) !important;
}

/* Feature cards on cream sections: slightly lighter than cream */
.section-cream .sc-feature {
  background: #FAFAF6;
}

/* ============================================ */
/* DYNAMIC TIMELINE                            */
/* ============================================ */

.sc-timeline-section .sc-section-title {
  color: var(--dark-green);
}

.sc-timeline-section .sc-section-sub {
  color: var(--mid-grey);
}

.sc-timeline {
  position: relative;
  max-width: 700px;
  margin: var(--space-xl) auto 0;
  padding: var(--space-md) 0;
}

.sc-timeline-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--mid-green) 50%, var(--gold) 100%);
  opacity: 0.4;
}

.sc-timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

.sc-timeline-item:last-child {
  padding-bottom: 0;
}

.sc-timeline-dot {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--cream), 0 4px 20px rgba(12, 24, 15, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sc-timeline-item:hover .sc-timeline-dot {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px var(--cream), 0 0 24px rgba(242, 226, 164, 0.3);
}

.sc-timeline-dot span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.sc-timeline-content {
  flex: 1;
  padding-top: 6px;
}

.sc-timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-green);
  margin: 0 0 6px 0;
}

.sc-timeline-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--mid-grey);
  margin: 0;
}

/* Animated line fill on scroll */
.sc-timeline-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--gold), var(--mid-green));
  transition: height 1.2s ease;
}

.sc-timeline-section.in-view .sc-timeline-line::after {
  height: 100%;
}

/* Mobile: smaller dots */
@media (max-width: 600px) {
  .sc-timeline-line { left: 20px; }
  .sc-timeline-dot { width: 40px; height: 40px; }
  .sc-timeline-dot span { font-size: 0.75rem; }
  .sc-timeline-content h3 { font-size: 1rem; }
  .sc-timeline-content p { font-size: 0.9rem; }
}

/* ============================================ */
/* PORTFOLIO SHOWCASE                          */
/* ============================================ */

.sc-portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: var(--space-xl);
}

.sc-portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.sc-portfolio-large {
  grid-column: span 2;
}

.sc-portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.sc-portfolio-large .sc-portfolio-image {
  aspect-ratio: 21/9;
}

.sc-portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sc-portfolio-item:hover .sc-portfolio-image img {
  transform: scale(1.05);
}

.sc-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,24,15,0.8) 0%, transparent 60%);
  transition: opacity 0.4s ease;
}

.sc-portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
}

.sc-portfolio-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 8px;
}

.sc-portfolio-tags {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.sc-portfolio-item a {
  text-decoration: none;
  display: block;
}

@media (max-width: 600px) {
  .sc-portfolio-grid { grid-template-columns: 1fr; }
  .sc-portfolio-large { grid-column: span 1; }
  .sc-portfolio-large .sc-portfolio-image { aspect-ratio: 16/9; }
  .sc-portfolio-info { padding: 20px; }
  .sc-portfolio-info h3 { font-size: 1.1rem; }
}

/* ============================================ */
/* WEB (RE)DESIGN & DEVELOPMENT SECTION        */
/* ============================================ */

.sc-webdev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.sc-webdev-content .sc-section-title {
  color: var(--dark-green);
}

.sc-webdev-content .sc-section-sub {
  color: var(--mid-grey);
}

.sc-webdev-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: var(--space-lg);
}

.sc-webdev-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sc-webdev-feature svg {
  flex-shrink: 0;
  color: var(--mid-green);
  margin-top: 2px;
}

.sc-webdev-feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 4px;
}

.sc-webdev-feature p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--mid-grey);
  margin: 0;
}

/* Step number badge (01–04) */
.sc-step-num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cream);
  background: var(--dark-green);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  font-feature-settings: 'tnum' 1;
}

/* Deliverable label (→ Brand Discovery Document) */
.sc-step-deliverable {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--dark-green);
  margin: 0 0 8px 0;
}

.sc-step-deliverable::before {
  content: "→ ";
  color: #b8923f;
  margin-right: 2px;
  font-weight: 700;
}

.sc-webdev-visual {
  position: relative;
}

.sc-webdev-img-main {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(12,24,15,0.15);
}

.sc-webdev-img-float {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 45%;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(12,24,15,0.2);
  border: 3px solid var(--cream);
}

/* Sircle Solutions bridge */
.sc-solutions-bridge {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: var(--space-xl);
  padding: 32px 40px;
  background: #FAFAF6;
  border-radius: 16px;
  border: 1px solid rgba(12,24,15,0.08);
}

.sc-solutions-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-green);
  border-radius: 12px;
  color: var(--gold);
}

.sc-solutions-content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-green);
  margin: 0 0 6px;
}

.sc-solutions-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--mid-grey);
  margin: 0;
}

.sc-solutions-link {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mid-green);
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.sc-solutions-link:hover {
  color: var(--dark-green);
}

.sc-solutions-link span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.sc-solutions-link:hover span {
  transform: translate(3px, -3px);
}

@media (max-width: 900px) {
  .sc-webdev-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .sc-webdev-img-float { position: relative; bottom: auto; left: auto; width: 60%; margin-top: -40px; }
  .sc-solutions-bridge { flex-direction: column; text-align: center; padding: 24px; }
}

/* ============================================ */
/* SOCIAL PROOF / TESTIMONIALS                 */
/* ============================================ */

.sc-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: var(--space-xl);
}

.sc-testimonial {
  padding: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(208,223,185,0.1);
  border-radius: 20px;
}

.sc-testimonial blockquote {
  margin: 0;
}

.sc-testimonial blockquote p {
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--soft-green);
  margin: 0 0 24px;
}

.sc-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sc-testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  font-style: normal;
}

.sc-testimonial-author span {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.sc-client-logos {
  text-align: center;
}

.sc-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.sc-client-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft-green);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.sc-client-name:hover {
  opacity: 0.8;
}

/* Testimonials on cream background */
.section-cream .sc-testimonial {
  background: #FAFAF6;
  border-color: rgba(12,24,15,0.08);
}

.section-cream .sc-testimonial blockquote p {
  color: var(--mid-grey);
}

.section-cream .sc-testimonial-author strong {
  color: var(--dark-green);
}

.section-cream .sc-testimonial-author span {
  color: var(--mid-green);
}

.section-cream .sc-client-name {
  color: var(--dark-green);
}

/* Results grid (Growth page) */
.sc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sc-result-card {
  padding: 40px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(208,223,185,0.1);
  border-radius: 20px;
  text-align: center;
}

.sc-result-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.sc-result-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 12px;
}

.sc-result-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--soft-green);
  opacity: 0.7;
  margin: 0;
}

@media (max-width: 600px) {
  .sc-results-grid { grid-template-columns: 1fr; }
  .sc-result-num { font-size: 2.2rem; }
  .sc-testimonials { grid-template-columns: 1fr; }
  .sc-testimonial { padding: 28px; }
  .sc-testimonial blockquote p { font-size: 1rem; }
  .sc-logos-row { gap: 24px; }
  .sc-client-name { font-size: 0.85rem; }
}
