/* =============================================
   CSS VARIABLES
============================================= */
:root {
  --ink:        #0d1117;
  --ink-soft:   #374151;
  --ink-muted:  #6b7280;
  --ink-light:  #9ca3af;
  --bg:         #f3f4f6;
  --surface:    #ffffff;
  --surface-2:  #f9fafb;
  --border:     #e5e7eb;
  --border-dk:  #d1d5db;

  --teal:       #0f766e;
  --teal-lt:    #ccfbf1;
  --teal-md:    #14b8a6;
  --teal-dk:    #0d5c56;

  --amber:      #d97706;
  --amber-lt:   #fef3c7;

  --green:      #059669;
  --green-lt:   #d1fae5;

  --red:        #dc2626;

  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 1px 4px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;

  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Lora', serif;

  --nav-h: 62px;
  --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; }
a { color: var(--teal); transition: all .2s var(--ease); }
a:hover { color: var(--teal-dk); }
img { max-width: 100%; height: auto; }

/* =============================================
   NAVBAR
============================================= */
.navbar {
  background: var(--ink);
  height: var(--nav-h);
  padding: 0 1rem;
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.navbar-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.4px;
}
.brand-pill {
  background: var(--teal-md);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.nav-link {
  color: rgba(255,255,255,.7) !important;
  font-size: .85rem;
  font-weight: 500;
  padding: .4rem .7rem !important;
  border-radius: 6px;
  transition: all .2s var(--ease);
}
.nav-link:hover, .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,.1);
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--ink);
    padding: 12px 16px 16px;
    margin: 0 -1rem;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
  }
  .navbar-collapse .search-form {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .navbar-collapse .search-form input { width: 100%; flex: 1; }
}
.search-form input {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: .85rem;
  width: 210px;
  transition: all .2s var(--ease);
}
.search-form input::placeholder { color: rgba(255,255,255,.45); }
.search-form input:focus { background: rgba(255,255,255,.18); outline: none; border-color: var(--teal-md); width: 250px; }
.search-form button {
  background: var(--teal);
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: 7px 14px;
  cursor: pointer;
  transition: background .2s;
}
.search-form button:hover { background: var(--teal-dk); }

/* =============================================
   LAYOUT
============================================= */
.page-wrap {
  max-width: 1260px;
  margin: 0 auto;
  padding: 26px 18px 64px;
}

/* =============================================
   SERVICE BADGE — top of page
============================================= */
.service-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-lt);
  color: var(--teal);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 12px;
  border: 1px solid rgba(15,118,110,.2);
}

/* =============================================
   CARD BASE
============================================= */
.card-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 26px;
  margin-bottom: 20px;
  transition: box-shadow .2s var(--ease);
}
.card-block:hover { box-shadow: var(--shadow-md); }

.sec-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.sec-icon {
  width: 30px; height: 30px;
  background: var(--teal-lt);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: .8rem;
  flex-shrink: 0;
}

/* =============================================
   BREADCRUMB
============================================= */
.bc-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 9px 16px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-xs);
}
.breadcrumb { margin: 0; font-size: .8rem; }
.breadcrumb-item a { color: var(--ink-muted); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--teal); }
.breadcrumb-item.active { color: var(--ink); font-weight: 500; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--border-dk); }

/* =============================================
   PRODUCT HEADER CARD
============================================= */
.header-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 26px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.product-title {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -.3px;
}
.author-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--ink-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.author-av {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--teal), #0ea5e9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
}
.author-name { color: var(--teal); font-weight: 700; text-decoration: none; }
.author-name:hover { text-decoration: underline; }

/* Delivery badge */
.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--amber-lt);
  color: var(--amber);
  border: 1px solid rgba(217,119,6,.2);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

/* =============================================
   PREVIEW IMAGE
============================================= */
.preview-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  margin-bottom: 20px;
  text-align: center;
}
.preview-wrap.transparent-bg {
  background: repeating-conic-gradient(#d4d4d4 0% 25%, #fff 0% 50%) 0 0 / 22px 22px;
}
.preview-wrap img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  display: block;
}

/* =============================================
   SHARE BUTTONS
============================================= */
.share-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.share-row { display: flex; flex-wrap: wrap; gap: 7px; }
.sh-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all .2s var(--ease);
}
.sh-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.sh-fb  { background: #1877f2; }
.sh-vk  { background: #0077ff; }
.sh-pin { background: #e60023; }
.sh-li  { background: #0a66c2; }
.sh-tg  { background: #26a5e4; }
.sh-wa  { background: #25d366; }

/* =============================================
   DETAIL TABLE
============================================= */
.detail-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.detail-table tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
.detail-table td { padding: 11px 14px; vertical-align: top; }
.detail-table td:first-child {
  font-weight: 700;
  color: var(--ink);
  width: 36%;
  background: var(--surface-2);
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.detail-table td:last-child { color: var(--ink-soft); }
.detail-table a { color: var(--teal); text-decoration: none; }
.detail-table a:hover { text-decoration: underline; }

/* =============================================
   SCREENSHOTS
============================================= */
.sc-item {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: zoom-in;
}
.sc-item img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .3s ease; }
.sc-item:hover img { transform: scale(1.05); }
.sc-overlay {
  position: absolute; inset: 0;
  background: rgba(13,17,23,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s;
}
.sc-item:hover .sc-overlay { opacity: 1; }
.sc-overlay i { color: #fff; font-size: 1.5rem; }

/* =============================================
   DEMO PLAYER
============================================= */
.demo-shell {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.demo-topbar {
  background: #1c2433;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  gap: 12px;
}
.demo-dots { display: flex; gap: 6px; }
.demo-dots span { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ef4444; }
.dot-y { background: #f59e0b; }
.dot-g { background: #22c55e; }
.demo-clock {
  font-size: .8rem;
  font-family: var(--font-head);
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.1);
  padding: 3px 12px;
  border-radius: 6px;
}
.demo-fs-btn {
  font-size: .8rem;
  font-weight: 700;
  background: var(--teal);
  color: #fff;
  padding: 5px 13px;
  border-radius: 7px;
  text-decoration: none;
  transition: background .2s;
}
.demo-fs-btn:hover { background: var(--teal-dk); color: #fff; }
.demo-iframe { width: 100%; height: 500px; border: none; display: block; }
.demo-ended {
  display: none;
  padding: 56px 20px;
  text-align: center;
  background: var(--surface-2);
  color: var(--ink-muted);
  font-size: .9rem;
}

/* =============================================
   TAGS
============================================= */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.tag-pill {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: .77rem;
  color: var(--ink-muted);
  text-decoration: none;
  transition: all .2s var(--ease);
}
.tag-pill:hover { background: var(--teal-lt); border-color: var(--teal); color: var(--teal); }
.tags-cloud.collapsed .tag-pill:nth-child(n+11) { display: none; }

/* =============================================
   COLOR PALETTE
============================================= */
.palette { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.color-box {
  width: 62px; height: 62px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.4);
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,.15);
  transition: all .2s var(--ease);
  user-select: none;
}
.color-box:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.2); }

/* =============================================
   FAQ
============================================= */
.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--r-sm) !important;
  margin-bottom: 8px;
  overflow: hidden;
}
.accordion-button {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  background: var(--surface-2) !important;
  box-shadow: none !important;
  color: var(--ink);
}
.accordion-button:not(.collapsed) { color: var(--teal); background: var(--teal-lt) !important; }
.accordion-body { font-size: .875rem; color: var(--ink-muted); }

/* =============================================
   REVIEWS
============================================= */
.review-item {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface-2);
  margin-bottom: 10px;
  transition: all .2s;
}
.review-item:hover { border-color: var(--border-dk); box-shadow: var(--shadow-xs); }
.rev-author { font-weight: 700; font-size: .9rem; }
.rev-date   { font-size: .75rem; color: var(--ink-light); }
.rev-stars  { color: var(--amber); letter-spacing: 2px; font-size: .95rem; }
.rev-text   { font-size: .85rem; color: var(--ink-soft); margin-top: 5px; }

.rev-form .form-label { font-weight: 600; font-size: .83rem; margin-bottom: 4px; }
.rev-form .form-control,
.rev-form .form-select {
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  padding: 9px 13px;
  background: var(--surface-2);
  transition: all .2s;
}
.rev-form .form-control:focus,
.rev-form .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15,118,110,.1);
  background: #fff;
}

/* Star rating */
.star-pick { display: flex; flex-direction: row-reverse; gap: 4px; }
.star-pick input { display: none; }
.star-pick label { font-size: 1.6rem; color: var(--border-dk); cursor: pointer; transition: color .12s; }
.star-pick input:checked ~ label,
.star-pick label:hover,
.star-pick label:hover ~ label { color: var(--amber); }

/* =============================================
   SIDEBAR — RIGHT
============================================= */
.sidebar-sticky { position: sticky; top: calc(var(--nav-h) + 14px); }

/* Pricing card */
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 18px;
}
.pricing-head {
  background: linear-gradient(140deg, #0d1117 0%, #0f3d38 100%);
  padding: 22px 22px 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pricing-head::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 130px; height: 130px;
  background: rgba(20,184,166,.12);
  border-radius: 50%;
}
.ph-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--teal-md);
  margin-bottom: 6px;
}
.ph-title {
  font-size: .92rem;
  font-weight: 600;
  opacity: .85;
  line-height: 1.35;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ph-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.ph-price .amount {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -1px;
}
.ph-price .cur { font-size: .85rem; opacity: .65; }

/* Trust pills under price */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 22px;
  background: #f0fdf9;
  border-bottom: 1px solid var(--border);
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--teal-dk);
  background: var(--teal-lt);
  border: 1px solid rgba(15,118,110,.18);
  padding: 4px 10px;
  border-radius: 999px;
}
.trust-pill i { font-size: .7rem; }

.pricing-body { padding: 20px 22px; }

/* Currency display */
.currency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.cur-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  transition: all .2s;
}
.cur-box:hover { border-color: var(--teal); background: var(--teal-lt); }
.cur-lbl { font-size: .68rem; color: var(--ink-light); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.cur-val { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--ink); margin-top: 2px; }

/* Divider */
.or-line {
  display: flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; color: var(--ink-light);
  text-transform: uppercase; letter-spacing: .5px;
  margin: 16px 0;
}
.or-line::before, .or-line::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* Contact buttons */
.cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: .85rem;
  border: 1px solid transparent;
  transition: all .2s var(--ease);
  margin-bottom: 8px;
  color: inherit;
}
.cta-btn .ci {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: #fff;
}
.cta-btn .ctext .ctitle { font-size: .85rem; font-weight: 700; }
.cta-btn .ctext .csub   { font-size: .72rem; opacity: .65; font-weight: 400; }

.cta-wa  { background: #f0fdf4; color: #14532d; border-color: #bbf7d0; }
.cta-wa  .ci { background: #22c55e; }
.cta-wa:hover  { background: #dcfce7; color: #14532d; border-color: #86efac; transform: translateY(-1px); }

.cta-em  { background: var(--surface-2); color: var(--ink); border-color: var(--border); }
.cta-em  .ci { background: var(--teal); }
.cta-em:hover  { border-color: var(--teal); background: var(--teal-lt); color: var(--ink); }

.cta-tg  { background: #f0f9ff; color: #0c4a6e; border-color: #bae6fd; }
.cta-tg  .ci { background: #0ea5e9; }
.cta-tg:hover  { background: #e0f2fe; color: #0c4a6e; border-color: #7dd3fc; transform: translateY(-1px); }

.cta-ms  { background: #f5f3ff; color: #3730a3; border-color: #c4b5fd; }
.cta-ms  .ci { background: #818cf8; }
.cta-ms:hover  { background: #ede9fe; color: #3730a3; border-color: #a78bfa; transform: translateY(-1px); }

.cta-kw  { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.cta-kw  .ci { background: #1dbf73; }
.cta-kw:hover  { background: #dcfce7; color: #166534; border-color: #86efac; transform: translateY(-1px); }

/* =============================================
   AUTHOR CARD
============================================= */
.author-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-av-lg {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--teal), #0ea5e9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}
.author-info h5 { font-size: .92rem; font-weight: 700; margin-bottom: 2px; }
.author-info h5 a { color: var(--ink); text-decoration: none; }
.author-info h5 a:hover { color: var(--teal); }
.author-info p { font-size: .78rem; color: var(--ink-muted); margin: 0 0 8px; }
.btn-portfolio {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-lt);
  border: 1px solid var(--teal);
  padding: 5px 12px;
  border-radius: 7px;
  text-decoration: none;
  transition: all .2s;
}
.btn-portfolio:hover { background: var(--teal); color: #fff; }

/* =============================================
   MORE SERVICES
============================================= */
.more-list { list-style: none; padding: 0; margin: 0; }
.more-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 7px;
  text-decoration: none;
  color: var(--ink);
  background: var(--surface-2);
  gap: 10px;
  transition: all .2s;
}
.more-item:hover { border-color: var(--teal); background: var(--teal-lt); color: var(--teal); }
.more-item .mi-name { font-size: .85rem; font-weight: 600; flex: 1; }
.more-item .mi-price {
  font-size: .78rem;
  font-weight: 800;
  color: var(--teal);
  background: var(--teal-lt);
  padding: 3px 9px;
  border-radius: 6px;
  white-space: nowrap;
}
.more-item:hover .mi-price { background: var(--teal); color: #fff; }

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
  transition: all .2s;
}
.btn-view-all:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-lt); }

/* =============================================
   TRANSLATE BAR
============================================= */
.translate-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 9px 16px;
  margin-bottom: 16px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}
#goog-gt-tt, .goog-te-banner-frame { display: none !important; }

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding: 40px 0 28px;
}
.footer h5 { color: #fff; font-family: var(--font-head); font-size: 1rem; margin-bottom: 10px; }
.footer p   { font-size: .85rem; line-height: 1.75; }
.footer a   { color: rgba(255,255,255,.6); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-links li { line-height: 2.1; font-size: .83rem; list-style: none; }
.soc-btn {
  display: inline-flex;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  transition: all .2s;
  font-size: .85rem;
}
.soc-btn:hover { background: var(--teal); color: #fff; }

/* =============================================
   MISC
============================================= */
.btn-show-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-lt);
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
  transition: all .2s;
}
.btn-show-more:hover { background: var(--teal); color: #fff; }

.btn-submit-rev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green), #047857);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s;
}
.btn-submit-rev:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(5,150,105,.3); }

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim { animation: fadeUp .4s ease both; }
.anim:nth-child(2) { animation-delay: .06s; }
.anim:nth-child(3) { animation-delay: .12s; }
.anim:nth-child(4) { animation-delay: .18s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 991px) {
  .sidebar-sticky { position: relative; top: auto; }
  .page-wrap { padding: 14px 14px 50px; }
}
@media (max-width: 576px) {
  .card-block { padding: 16px; }
  .pricing-body { padding: 16px; }
  .currency-grid { grid-template-columns: 1fr; }
  .product-title { font-size: 1.15rem; }
  .ph-price .amount { font-size: 1.7rem; }
}