/* About, Features, Steps, Pricing, Reviews, Footer sections (moved into css/sections.css) */
.about { background:var(--bg2); }
.about-inner {
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center;
}
.about-visual { position:relative; }
.about-big-stat {
  position:relative; z-index:2;
  background:var(--ink); border-radius:24px; padding:40px;
  color:#fff; overflow:hidden;
}
.about-big-stat::before {
  content:''; position:absolute;
  width:300px; height:300px; border-radius:50%;
  background:radial-gradient(circle, rgba(224,90,58,.25), transparent 70%);
  top:-80px; right:-80px; pointer-events:none;
}
.about-number {
  font-family:'Playfair Display', serif;
  font-size:72px; font-weight:900; color:#fff;
  line-height:1; margin-bottom:8px;
}
.about-number-label { font-size:16px; color:rgba(255,255,255,.6); font-weight:500; }
.about-number-sub { font-size:13px; color:rgba(255,255,255,.4); margin-top:4px; }

.about-mini-cards {
  display:grid; grid-template-columns:1fr 1fr;
  gap:12px; margin-top:12px;
}
.about-mini-card {
  background:var(--white); border-radius:16px; padding:18px;
  border:1px solid var(--bg3); box-shadow:var(--shadow-sm);
}
.about-mc-icon { font-size:24px; margin-bottom:8px; }
.about-mc-val  { font-family:'Playfair Display', serif; font-size:22px; font-weight:700; color:var(--ink); }
.about-mc-lbl  { font-size:12px; color:var(--ink2); margin-top:2px; }
.about-content .section-sub { margin-bottom:32px; }
.about-perks { display:flex; flex-direction:column; gap:20px; margin-top:32px; }
.about-perk { display:flex; gap:16px; align-items:flex-start; }
.about-perk-icon {
  width:48px; height:48px; border-radius:14px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:22px;
}
.about-perk-title { font-size:16px; font-weight:700; color:var(--ink); margin-bottom:4px; }
.about-perk-text  { font-size:14px; color:var(--ink2); line-height:1.55; }
@media (max-width:900px) {
  .about-inner { grid-template-columns:1fr; gap:48px; }
  .about-number { font-size:56px; }
}

.features { background:var(--bg); }
.features-header { text-align:center; margin-bottom:64px; }
.features-header .section-sub { margin:0 auto; }
.features-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.feature-card {
  background:var(--white); border-radius:var(--r);
  padding:32px; border:1px solid var(--bg3);
  box-shadow:var(--shadow-sm);
  transition:all .25s cubic-bezier(.4,0,.2,1);
  position:relative; overflow:hidden;
}
.feature-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--accent), transparent);
  opacity:0; transition:opacity .25s;
}
.feature-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.feature-card:hover::before { opacity:1; }
.feature-card.featured {
  background:linear-gradient(160deg, var(--ink) 0%, #2E2820 100%);
  border-color:transparent; color:#fff;
}
.feature-card.featured .feature-title { color:#fff; }
.feature-card.featured .feature-text  { color:rgba(255,255,255,.6); }
.feature-card.featured::before { background:linear-gradient(90deg, var(--accent), rgba(224,90,58,.4)); opacity:1; }
.feature-icon-wrap {
  width:56px; height:56px; border-radius:16px;
  display:flex; align-items:center; justify-content:center; font-size:26px;
  margin-bottom:20px; flex-shrink:0;
}
.feature-title {
  font-size:20px; font-weight:700; color:var(--ink);
  margin-bottom:10px; font-family:'Playfair Display', serif;
}
.feature-text { font-size:14px; color:var(--ink2); line-height:1.6; margin-bottom:20px; }
.feature-list { display:flex; flex-direction:column; gap:8px; }
.feature-list-item {
  display:flex; align-items:center; gap:8px;
  font-size:13px; color:var(--ink2);
}
.feature-list-item::before { content:'✓'; color:var(--accent); font-weight:700; flex-shrink:0; }
.feature-card.featured .feature-list-item { color:rgba(255,255,255,.65); }
.feature-card.featured .feature-list-item::before { color:var(--accent); }
.feature-card.wide { grid-column:span 2; }
.feature-card-wide-inner {
  display:flex; gap:32px; align-items:center;
}
.feature-card-wide-visual {
  width:200px; height:160px; flex-shrink:0;
  border-radius:16px; background:var(--bg2);
  display:flex; align-items:center; justify-content:center;
  font-size:64px;
}
@media (max-width:1024px) {
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .feature-card.wide { grid-column:span 2; }
}
@media (max-width:680px) {
  .features-grid { grid-template-columns:1fr; }
  .feature-card.wide { grid-column:span 1; }
  .feature-card-wide-inner { flex-direction:column; }
  .feature-card-wide-visual { width:100%; }
}

.steps { background:var(--bg2); }
.steps-header { text-align:center; margin-bottom:64px; }
.steps-header .section-sub { margin:0 auto; }
.steps-row {
  display:grid; grid-template-columns:repeat(4, 1fr);
  gap:0; position:relative;
}
.steps-row::before {
  content:''; position:absolute;
  top:56px; left:calc(12.5% + 28px); right:calc(12.5% + 28px);
  height:2px; background:linear-gradient(90deg, var(--accent), var(--teal));
  z-index:0;
}
.step {
  text-align:center; padding:0 16px;
  position:relative; z-index:1;
}
.step-num-wrap {
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.step-num {
  width:56px; height:56px; border-radius:50%;
  background:var(--white); border:2px solid var(--bg3);
  display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display', serif; font-size:20px; font-weight:700;
  color:var(--ink); box-shadow:var(--shadow-sm);
  transition:all .25s;
  position:relative; z-index:1;
}
.step:hover .step-num {
  background:var(--accent); color:#fff;
  border-color:var(--accent); box-shadow:0 4px 20px rgba(224,90,58,.35);
}
.step-icon-box {
  width:80px; height:80px; border-radius:20px; margin:0 auto 20px;
  display:flex; align-items:center; justify-content:center; font-size:32px;
  background:var(--white); border:1px solid var(--bg3); box-shadow:var(--shadow-sm);
  transition:all .25s; position:relative; z-index:1;
}
.step:hover .step-icon-box {
  background:var(--accent-lt); border-color:rgba(224,90,58,.25);
  transform:translateY(-4px); box-shadow:var(--shadow);
}
.step-title { font-size:17px; font-weight:700; color:var(--ink); margin-bottom:8px; font-family:'Playfair Display', serif; }
.step-text  { font-size:13px; color:var(--ink2); line-height:1.55; }
@media (max-width:900px) {
  .steps-row { grid-template-columns:repeat(2,1fr); gap:32px; }
  .steps-row::before { display:none; }
}
@media (max-width:500px) {
  .steps-row { grid-template-columns:1fr; gap:24px; }
  .step { display:flex; gap:20px; text-align:left; align-items:flex-start; }
  .step-icon-box { flex-shrink:0; margin:0; }
}

.pricing { background:var(--bg); }
.pricing-header { text-align:center; margin-bottom:16px; }
.pricing-header .section-sub { margin:0 auto 48px; }
.pricing-toggle {
  display:flex; align-items:center; justify-content:center; gap:16px;
  margin-bottom:48px;
}
.pricing-toggle-label { font-size:15px; font-weight:500; color:var(--ink2); }
.pricing-toggle-label.active { color:var(--ink); font-weight:700; }
.toggle-switch {
  width:52px; height:28px; border-radius:14px;
  background:var(--accent); border:none; cursor:pointer;
  position:relative; transition:background .2s;
}
.toggle-switch::after {
  content:''; position:absolute; top:3px; left:3px;
  width:22px; height:22px; border-radius:50%; background:#fff;
  transition:transform .2s; box-shadow:0 2px 6px rgba(0,0,0,.2);
}
.toggle-switch.monthly::after { transform:translateX(0); }
.toggle-switch.annual::after  { transform:translateX(24px); }
.pricing-save { background:var(--green-lt); color:var(--green); font-size:11px; font-weight:700; padding:3px 9px; border-radius:20px; }
.pricing-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:24px; align-items:stretch;
}
.pricing-card {
  background:var(--white); border-radius:var(--r);
  padding:36px 32px; border:1px solid var(--bg3);
  box-shadow:var(--shadow-sm); display:flex;
  flex-direction:column; transition:all .25s;
  position:relative; overflow:hidden;
}
.pricing-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.pricing-card.popular {
  background:var(--ink);
  border-color:transparent;
  transform:scale(1.03);
}
.pricing-card.popular:hover { transform:scale(1.03) translateY(-6px); }
.pricing-pop-badge {
  position:absolute; top:20px; right:20px;
  background:var(--accent); color:#fff;
  font-size:11px; font-weight:700; padding:4px 10px; border-radius:20px;
  letter-spacing:.05em;
}
.pricing-plan {
  font-size:13px; font-weight:700; text-transform:uppercase;
  letter-spacing:.1em; color:var(--ink2); margin-bottom:12px;
}
.pricing-card.popular .pricing-plan { color:rgba(255,255,255,.5); }
.pricing-price {
  font-family:'Playfair Display', serif;
  font-size:52px; font-weight:900; color:var(--ink); line-height:1;
  margin-bottom:4px;
}
.pricing-card.popular .pricing-price { color:#fff; }
.pricing-price sup { font-size:22px; font-weight:400; vertical-align:top; margin-top:12px; display:inline-block; }
.pricing-period { font-size:14px; color:var(--ink3); margin-bottom:28px; }
.pricing-card.popular .pricing-period { color:rgba(255,255,255,.4); }
.pricing-divider { height:1px; background:var(--bg3); margin-bottom:28px; }
.pricing-card.popular .pricing-divider { background:rgba(255,255,255,.1); }
.pricing-features { flex:1; display:flex; flex-direction:column; gap:12px; margin-bottom:28px; }
.pricing-feature {
  display:flex; align-items:flex-start; gap:10px;
  font-size:14px; color:var(--ink2); line-height:1.4;
}
.pricing-check { color:var(--accent); font-size:16px; flex-shrink:0; line-height:1.3; font-weight:700; }
.pricing-card.popular .pricing-feature { color:rgba(255,255,255,.7); }
.pricing-feature.disabled { opacity:.4; }
.pricing-feature.disabled .pricing-check { color:var(--ink3); }
.pricing-note { font-size:12px; color:var(--ink3); text-align:center; margin-top:8px; }
.pricing-card.popular .pricing-note { color:rgba(255,255,255,.3); }
@media (max-width:900px) {
  .pricing-grid { grid-template-columns:1fr; max-width:420px; margin:0 auto; }
  .pricing-card.popular { transform:scale(1); }
  .pricing-card.popular:hover { transform:translateY(-6px); }
}

.reviews { background:var(--bg2); }
.reviews-header { text-align:center; margin-bottom:60px; }
.reviews-header .section-sub { margin:0 auto; }
.reviews-stats {
  display:flex; justify-content:center; gap:48px;
  margin-bottom:56px; flex-wrap:wrap;
}
.reviews-stat { text-align:center; }
.reviews-stat-num {
  font-family:'Playfair Display', serif; font-size:44px; font-weight:900;
  color:var(--ink); line-height:1;
}
.reviews-stat-lbl { font-size:14px; color:var(--ink2); margin-top:4px; }
.carousel-wrap { position:relative; overflow:hidden; }
.carousel-track {
  display:flex; gap:24px;
  transition:transform .5s cubic-bezier(.4,0,.2,1);
}
.review-slide {
  flex:0 0 calc(33.333% - 16px); min-width:0;
}
.review-card {
  background:var(--white); border-radius:var(--r);
  padding:28px; border:1px solid var(--bg3);
  box-shadow:var(--shadow-sm); height:100%;
}
.review-stars { color:#F59E0B; font-size:16px; margin-bottom:14px; }
.review-text { font-size:15px; color:var(--ink2); line-height:1.65; margin-bottom:20px; font-style:italic; }
.review-author { display:flex; align-items:center; gap:12px; }
.review-ava {
  width:44px; height:44px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display', serif; font-size:16px; font-weight:700; color:#fff;
}
.review-name { font-size:14px; font-weight:700; color:var(--ink); }
.review-role { font-size:12px; color:var(--ink3); margin-top:2px; }
.portfolio-strip {
  display:flex; gap:16px; overflow-x:auto; scrollbar-width:none;
  padding:4px 0; margin-top:48px;
}
.portfolio-strip::-webkit-scrollbar { display:none; }
.portfolio-item {
  flex:0 0 180px; height:220px; border-radius:var(--r);
  background:var(--bg3); overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  font-size:48px; border:1px solid var(--bg3); flex-shrink:0;
  transition:transform .2s;
}
.portfolio-item:hover { transform:scale(1.03); }
.carousel-controls {
  display:flex; justify-content:center; align-items:center; gap:12px;
  margin-top:32px;
}
.car-btn {
  width:44px; height:44px; border-radius:50%;
  background:var(--white); border:1px solid var(--bg3);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:18px; transition:all .18s;
  box-shadow:var(--shadow-sm); color:var(--ink2);
}
.car-btn:hover { background:var(--accent); border-color:var(--accent); color:#fff; }
.car-dots { display:flex; gap:6px; }
.car-dot {
  width:8px; height:8px; border-radius:50%; background:var(--ink4);
  cursor:pointer; transition:all .2s;
}
.car-dot.active { background:var(--accent); width:24px; border-radius:4px; }
@media (max-width:900px) {
  .review-slide { flex:0 0 calc(50% - 12px); }
  .reviews-stats { gap:28px; }
  .reviews-stat-num { font-size:36px; }
}
@media (max-width:620px) {
  .review-slide { flex:0 0 85vw; }
}

.footer { background:var(--ink); color:rgba(255,255,255,.6); padding:72px 0 32px; }
.footer-top {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:48px; margin-bottom:56px;
}
.footer-brand .nav-logo { color:#fff; margin-bottom:16px; }
.footer-brand p { font-size:14px; line-height:1.65; max-width:280px; }
.footer-social { display:flex; gap:10px; margin-top:24px; }
.footer-social-btn {
  width:38px; height:38px; border-radius:10px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; cursor:pointer; transition:all .18s;
  color:rgba(255,255,255,.6);
}
.footer-social-btn:hover { background:var(--accent); border-color:var(--accent); color:#fff; }
.footer-col h4 {
  font-size:13px; font-weight:700; text-transform:uppercase;
  letter-spacing:.1em; color:#fff; margin-bottom:20px;
}
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-link { font-size:14px; cursor:pointer; transition:color .15s; }
.footer-link:hover { color:#fff; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:28px;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:16px;
}
.footer-copy { font-size:13px; }
.footer-legal { display:flex; gap:20px; }
.footer-legal a { font-size:13px; cursor:pointer; }
.footer-legal a:hover { color:#fff; }
@media (max-width:900px) {
  .footer-top { grid-template-columns:1fr 1fr; gap:32px; }
}
@media (max-width:560px) {
  .footer-top { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
}


