/* =============================================================
   FAUXI — pricing.css  (supplementary styles for services/pricing pages)
   ============================================================= */

/* ── SERVICES FULL PAGE ───────────────────────────────────────── */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
@media(max-width: 680px) { .services-full-grid { grid-template-columns: 1fr; } }

.service-full-card {
  display: flex;
  gap: 22px;
  padding: 32px 28px;
  background: var(--bg);
  transition: background .3s;
  position: relative;
}
.service-full-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-soft);
  opacity: 0; transition: opacity .35s; pointer-events: none;
}
.service-full-card:hover { background: var(--bg2); }
.service-full-card:hover::before { opacity: 1; }

.sfc-icon {
  width: 52px; height: 52px;
  border-radius: var(--r2);
  background: rgba(99,130,255,.1);
  border: 1px solid rgba(99,130,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
  transition: transform .3s;
  position: relative;
}
.service-full-card:hover .sfc-icon { transform: scale(1.06); }
.sfc-icon-purple { background: rgba(168,85,247,.1); border-color: rgba(168,85,247,.2); color: var(--purple); }
.sfc-icon-green  { background: rgba(34,197,94,.1);  border-color: rgba(34,197,94,.2);  color: var(--green); }
.sfc-icon-orange { background: rgba(249,115,22,.1); border-color: rgba(249,115,22,.2); color: #f97316; }

.sfc-content { position: relative; flex: 1; }
.sfc-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.sfc-desc { font-size: 14px; color: var(--text2); line-height: 1.75; margin-bottom: 14px; }

.sfc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.sfc-tags span {
  font-size: 11px; font-weight: 600;
  color: var(--blue); background: rgba(99,130,255,.1);
  border: 1px solid rgba(99,130,255,.18);
  padding: 3px 10px; border-radius: 50px;
}

.sfc-benefits { display: flex; flex-direction: column; gap: 6px; }
.sfc-benefits li {
  font-size: 13px; color: var(--text2);
  display: flex; align-items: center; gap: 8px;
}
.sfc-benefits li::before {
  content: '';
  display: block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}

/* ── PRICING PAGE ─────────────────────────────────────────────── */
.pricing-hero-banner {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.pricing-full-section { padding: clamp(64px,8vw,100px) 0; }

.pricing-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
@media(max-width: 900px) { .pricing-full-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

.pricing-card-full {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 26px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.pricing-card-full:hover { border-color: var(--border3); transform: translateY(-4px); }
.pricing-card-popular {
  border-color: rgba(99,130,255,.35);
  background: rgba(99,130,255,.05);
  box-shadow: 0 0 0 1px rgba(99,130,255,.2), 0 20px 60px rgba(99,130,255,.12);
  transform: scale(1.02);
}
.pricing-card-popular:hover { transform: scale(1.02) translateY(-4px); }

.popular-badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); background: rgba(99,130,255,.15);
  border: 1px solid rgba(99,130,255,.3); padding: 4px 10px; border-radius: 50px;
}

.p-plan-name { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); margin-bottom: 12px; }
.p-price { font-size: 2.6rem; font-weight: 900; letter-spacing: -.04em; color: var(--text); line-height: 1; margin-bottom: 6px; }
.p-price sup { font-size: 1.3rem; color: var(--text3); font-weight: 600; vertical-align: super; }
.p-tagline { font-size: 14px; color: var(--text2); margin-bottom: 8px; }
.p-delivery { font-size: 12px; color: var(--green); font-weight: 600; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }

.p-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.p-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--text2); line-height: 1.5;
}
.p-feature svg { flex-shrink: 0; color: var(--green); margin-top: 2px; }
.p-feature.highlight-feat { color: var(--text); font-weight: 600; }
.p-feature.highlight-feat svg { color: var(--blue); }

.guarantee-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 60px; }
@media(max-width:680px) { .guarantee-cards { grid-template-columns: 1fr; } }

.guarantee-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color .3s;
}
.guarantee-card:hover { border-color: var(--border3); }
.g-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: var(--r2);
  display: flex; align-items: center; justify-content: center;
}
.g-icon-blue   { background: rgba(99,130,255,.12); border: 1px solid rgba(99,130,255,.2); color: var(--blue); }
.g-icon-green  { background: rgba(34,197,94,.12);  border: 1px solid rgba(34,197,94,.2);  color: var(--green); }
.g-icon-purple { background: rgba(168,85,247,.12); border: 1px solid rgba(168,85,247,.2); color: var(--purple); }
.g-icon-orange { background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.2); color: #f97316; }
.guarantee-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.guarantee-card p  { font-size: 13px; color: var(--text2); line-height: 1.65; }

/* ── PORTFOLIO FULL PAGE ──────────────────────────────────────── */
.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media(max-width: 680px) { .portfolio-full-grid { grid-template-columns: 1fr; } }

/* ── CONTACT PAGE ─────────────────────────────────────────────── */
.page-contact { padding: clamp(64px,8vw,100px) 0; }

/* ── BLOG GRID ────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media(max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 580px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.blog-card:hover { border-color: var(--border3); transform: translateY(-4px); }
.blog-card-body { padding: 22px; }
.blog-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue); background: rgba(99,130,255,.1);
  border: 1px solid rgba(99,130,255,.18); padding: 3px 10px;
  border-radius: 50px; display: inline-block; margin-bottom: 12px;
}
.blog-date { font-size: 12px; color: var(--text3); margin-bottom: 10px; }
.blog-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.45; }
.blog-card h3 a { color: var(--text); transition: color .2s; }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card p { font-size: 13.5px; color: var(--text2); line-height: 1.72; margin-bottom: 16px; }
.blog-readmore {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  transition: gap .2s;
}
.blog-readmore:hover { gap: 10px; }

/* ── BLOG ARTICLE ─────────────────────────────────────────────── */
.article-content { max-width: 740px; margin: 0 auto; }
.article-content h2 { font-size: 1.5rem; font-weight: 800; margin: 36px 0 14px; letter-spacing: -.02em; }
.article-content h3 { font-size: 1.15rem; font-weight: 700; margin: 28px 0 10px; }
.article-content p  { font-size: 15.5px; color: var(--text2); line-height: 1.9; margin-bottom: 18px; }
.article-content ul, .article-content ol { margin: 12px 0 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.article-content li { font-size: 15px; color: var(--text2); line-height: 1.7; }
.article-content strong { color: var(--text); font-weight: 700; }
.article-content a { color: var(--blue); }
.article-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; font-size: 13px; color: var(--text3); }

/* ── TESTIMONIALS PAGE ────────────────────────────────────────── */
.testimonials-full-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
}
@media(max-width:680px) { .testimonials-full-grid { grid-template-columns: 1fr; } }

/* ── ABOUT STORY ──────────────────────────────────────────────── */
.about-story-section { padding: clamp(64px,8vw,100px) 0; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media(max-width:860px) { .about-story-grid { grid-template-columns: 1fr; gap: 48px; } }

.about-logo-big {
  width: 200px; height: 200px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(99,130,255,.25);
  box-shadow: 0 0 40px rgba(99,130,255,.15), 0 0 80px rgba(168,85,247,.08);
  margin: 0 auto 20px;
}
.about-logo-big img { width: 100%; height: 100%; object-fit: cover; }

.about-stats-row { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 24px; }
.about-stat { text-align: left; }

.values-section { padding: clamp(64px,8vw,100px) 0; background: var(--bg2); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media(max-width:900px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:540px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 22px;
  transition: border-color .3s, transform .3s;
}
.value-card:hover { border-color: var(--border3); transform: translateY(-3px); }
.value-icon {
  width: 44px; height: 44px; border-radius: var(--r2);
  background: rgba(99,130,255,.1); border: 1px solid rgba(99,130,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 18px;
}
.value-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.value-card p  { font-size: 13.5px; color: var(--text2); line-height: 1.72; }
