/* ============================================
   LinkeDeal.org — Global Styles
   Modern, LinkedIn-inspired design system
   ============================================ */

:root {
  --blue:       #0A66C2;
  --blue-dark:  #004182;
  --blue-light: #EAF3FF;
  --green:      #057642;
  --green-light:#E7F5EE;
  --orange:     #B24020;
  --orange-light:#FFF0EB;
  --yellow:     #F5C518;
  --text:       #1B1B1B;
  --text-2:     #555;
  --text-3:     #888;
  --border:     #E0E0E0;
  --bg:         #F3F2EF;
  --bg-white:   #FFFFFF;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
  --nav-h:      64px;
  --transition: .2s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
}
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; border-radius: var(--radius-sm); }
ul, ol { padding-left: 1.4em; }

/* ── Typography ── */
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.2rem, 3vw, 1.7rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--text-2); }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 56px 0; }
.section-sm { padding: 32px 0; }

/* ── Navigation ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex; align-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.nav__inner {
  display: flex; align-items: center; gap: 8px;
  width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px;
}
.nav__logo {
  font-size: 1.25rem; font-weight: 800; color: var(--blue);
  white-space: nowrap; margin-right: 16px;
  letter-spacing: -.5px;
}
.nav__logo span { color: var(--text); }
.nav__links {
  display: flex; gap: 2px; align-items: center;
  list-style: none; padding: 0; flex: 1;
  overflow-x: auto; scrollbar-width: none;
}
.nav__links::-webkit-scrollbar { display: none; }
.nav__links a {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 10px; border-radius: 6px;
  font-size: .82rem; font-weight: 500; color: var(--text-2);
  white-space: nowrap; transition: all var(--transition);
}
.nav__links a:hover, .nav__links a.active {
  background: var(--blue-light); color: var(--blue);
}
.nav__cta {
  margin-left: auto;
  background: var(--blue); color: #fff !important;
  padding: 8px 16px !important; border-radius: 20px !important;
  font-weight: 600 !important; font-size: .82rem !important;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--blue-dark) !important; color: #fff !important; }

/* Hamburger */
.nav__burger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 6px; margin-left: auto;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--transition);
}
.nav__burger span+span { margin-top: 5px; }

/* Mobile nav overlay */
.nav__mobile {
  display: none; position: fixed; inset: 0; top: var(--nav-h);
  background: var(--bg-white); z-index: 99;
  overflow-y: auto; padding: 16px;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 12px; border-radius: 8px;
  font-size: 1rem; font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:hover, .nav__mobile a.active {
  background: var(--blue-light); color: var(--blue);
}
.nav__mobile .nav__cta {
  margin-top: 16px;
  display: block; text-align: center;
  background: var(--blue); color: #fff !important;
  padding: 14px !important; border-radius: 8px !important;
  font-size: 1rem !important; border: none;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
  color: #fff; padding: 72px 0 60px; text-align: center;
}
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero p  { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }
.hero__badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.hero__badge {
  background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px; padding: 6px 16px;
  font-size: .85rem; font-weight: 500; color: #fff;
}
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px; border-radius: 24px;
  font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition); border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: #fff; color: var(--blue); border-color: #fff; }
.btn-primary:hover { background: var(--blue-light); color: var(--blue-dark); border-color: var(--blue-light); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }
.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; }
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: #046035; color: #fff; }
.btn-sm { padding: 7px 16px; font-size: .82rem; border-radius: 16px; }

/* ── Cards ── */
.card {
  background: var(--bg-white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Category grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.category-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 20px; text-align: center;
  background: var(--bg-white); border-radius: var(--radius);
  box-shadow: var(--shadow); cursor: pointer;
  text-decoration: none; color: var(--text);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.category-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--text); }
.category-card__icon {
  width: 56px; height: 56px; object-fit: contain;
  border-radius: 12px; margin-bottom: 12px;
}
.category-card__icon-placeholder {
  width: 56px; height: 56px; border-radius: 12px; margin-bottom: 12px;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.category-card h3 { font-size: .95rem; margin-bottom: 4px; }
.category-card p  { font-size: .8rem; color: var(--text-3); }

/* ── Section header ── */
.section-header { margin-bottom: 32px; }
.section-header h2 { margin-bottom: 8px; }
.section-header p  { max-width: 600px; }

/* ── Badges / Tags ── */
.badge {
  display: inline-block; padding: 3px 10px;
  border-radius: 12px; font-size: .75rem; font-weight: 600;
}
.badge-blue   { background: var(--blue-light); color: var(--blue); }
.badge-green  { background: var(--green-light); color: var(--green); }
.badge-orange { background: var(--orange-light); color: var(--orange); }
.badge-yellow { background: #FFF8E1; color: #795c00; }
.badge-gray   { background: #F0F0F0; color: #555; }

/* ── Pricing Table ── */
.pricing-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.pricing-table th {
  background: var(--blue); color: #fff; padding: 14px 16px;
  text-align: left; font-size: .85rem; font-weight: 600;
}
.pricing-table td { padding: 12px 16px; font-size: .88rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: #fafafa; }
.pricing-table tr:hover td { background: var(--blue-light); }
.pricing-table .price { font-weight: 700; color: var(--blue); font-size: 1rem; }
.pricing-table .savings { font-weight: 600; color: var(--green); }
.pricing-table .discount { font-weight: 600; color: var(--orange); }

/* ── Comparison table ── */
.compare-table { width: 100%; border-collapse: collapse; font-size: .82rem; }
.compare-table th {
  padding: 12px 10px; font-weight: 600;
  background: var(--bg); border-bottom: 2px solid var(--border);
  text-align: center;
}
.compare-table th:first-child { text-align: left; }
.compare-table td { padding: 10px 10px; text-align: center; border-bottom: 1px solid var(--border); color: var(--text-2); }
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.compare-table tr:hover td { background: var(--blue-light); }
.compare-table .check { color: var(--green); font-weight: 700; }
.compare-table .cross  { color: #ccc; }

/* ── Tools ── */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.tool-card { padding: 20px; }
.tool-card__header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.tool-card__name { font-size: .95rem; font-weight: 600; margin-bottom: 4px; }
.tool-card__category { font-size: .75rem; color: var(--text-3); }
.tool-card__desc { font-size: .83rem; color: var(--text-2); margin-bottom: 12px; line-height: 1.5; }
.tool-card__footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.tool-card__price { font-size: .82rem; font-weight: 600; color: var(--text-2); }

/* ── Search / Filter bar ── */
.filter-bar {
  background: var(--bg-white); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow); margin-bottom: 24px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.search-input {
  flex: 1; min-width: 200px;
  padding: 10px 16px 10px 42px; border: 1.5px solid var(--border);
  border-radius: 24px; font-size: .9rem; outline: none;
  transition: border-color var(--transition);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.099zm-5.442 1.406a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11z'/%3E%3C/svg%3E") no-repeat 14px center;
}
.search-input:focus { border-color: var(--blue); }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 6px 14px; border-radius: 20px; border: 1.5px solid var(--border);
  font-size: .8rem; font-weight: 500; cursor: pointer;
  background: #fff; color: var(--text-2); transition: all var(--transition);
}
.chip:hover, .chip.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── Info boxes ── */
.info-box {
  border-radius: var(--radius); padding: 20px 24px; margin: 20px 0;
  display: flex; gap: 14px;
}
.info-box.blue   { background: var(--blue-light); border-left: 4px solid var(--blue); }
.info-box.green  { background: var(--green-light); border-left: 4px solid var(--green); }
.info-box.orange { background: var(--orange-light); border-left: 4px solid var(--orange); }
.info-box__icon  { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.info-box__body h4 { color: var(--text); margin-bottom: 4px; }
.info-box__body p  { font-size: .88rem; margin: 0; }

/* ── Accordion ── */
.accordion { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.accordion-item { border-bottom: 1px solid var(--border); background: var(--bg-white); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 18px 20px; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: .95rem; font-weight: 600; color: var(--text);
  transition: background var(--transition);
}
.accordion-btn:hover { background: var(--bg); }
.accordion-btn .arrow {
  transition: transform var(--transition); color: var(--blue);
  font-size: .75rem; flex-shrink: 0;
}
.accordion-btn.open .arrow { transform: rotate(180deg); }
.accordion-body { display: none; padding: 0 20px 20px; }
.accordion-body.open { display: block; }
.accordion-body p, .accordion-body li { font-size: .88rem; color: var(--text-2); }

/* ── Team cards ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }
.team-card { padding: 28px 20px; text-align: center; }
.team-card img {
  width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--blue-light); margin-bottom: 12px;
}
.team-card h4 { margin-bottom: 2px; }
.team-card .role { font-size: .82rem; color: var(--blue); font-weight: 600; }

/* ── Payment cards ── */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.payment-card { padding: 24px; }
.payment-card h3 { margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.payment-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border); gap: 12px;
}
.payment-row:last-child { border-bottom: none; }
.payment-label { font-size: .8rem; color: var(--text-3); font-weight: 500; min-width: 80px; }
.payment-value { font-size: .88rem; font-weight: 600; word-break: break-all; flex: 1; }
.copy-btn {
  background: var(--blue-light); color: var(--blue); border: none;
  padding: 5px 10px; border-radius: 6px; font-size: .75rem; font-weight: 600;
  cursor: pointer; white-space: nowrap; transition: all var(--transition); flex-shrink: 0;
}
.copy-btn:hover { background: var(--blue); color: #fff; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #0A66C2, #004182);
  border-radius: var(--radius); padding: 40px 32px;
  color: #fff; text-align: center; margin: 32px 0;
}
.cta-banner h2, .cta-banner h3 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 20px; }

/* ── Contact block ── */
.contact-block {
  background: var(--bg-white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.contact-block__avatar {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--blue-light); flex-shrink: 0;
}
.contact-block__info { flex: 1; min-width: 180px; }
.contact-block__info h4 { margin-bottom: 2px; }
.contact-block__info p  { font-size: .85rem; margin-bottom: 10px; }
.contact-block__links { display: flex; gap: 8px; flex-wrap: wrap; }
.contact-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: 20px; font-size: .82rem; font-weight: 600;
  transition: all var(--transition); text-decoration: none;
}
.contact-link-email    { background: var(--blue-light); color: var(--blue); }
.contact-link-whatsapp { background: #E7F5EE; color: #057642; }
.contact-link-telegram { background: #E8F4FF; color: #0088cc; }
.contact-link:hover { filter: brightness(0.92); }

/* ── Tips List ── */
.tips-list { list-style: none; padding: 0; }
.tips-list li {
  padding: 14px 16px; background: var(--bg-white);
  border-radius: var(--radius-sm); margin-bottom: 8px;
  border-left: 3px solid var(--blue);
  display: flex; gap: 12px; align-items: flex-start;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  font-size: .9rem; color: var(--text-2);
}
.tips-list li strong { color: var(--text); }
.tips-num { font-size: .75rem; font-weight: 700; color: var(--blue); min-width: 24px; }

/* ── Stats row ── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin: 24px 0; }
.stat-card { background: var(--bg-white); border-radius: var(--radius); padding: 20px; text-align: center; box-shadow: var(--shadow); }
.stat-card__value { font-size: 1.6rem; font-weight: 800; color: var(--blue); }
.stat-card__label { font-size: .8rem; color: var(--text-3); margin-top: 4px; }

/* ── Footer ── */
.footer {
  background: #1B1B1B; color: rgba(255,255,255,.7);
  padding: 48px 0 24px; margin-top: 48px;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.footer__logo { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer__logo span { color: var(--blue); }
.footer__desc { font-size: .85rem; line-height: 1.6; }
.footer h4 { color: #fff; font-size: .9rem; margin-bottom: 12px; }
.footer__links { list-style: none; padding: 0; }
.footer__links li { margin-bottom: 8px; }
.footer__links a { color: rgba(255,255,255,.6); font-size: .85rem; transition: color var(--transition); }
.footer__links a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .82rem;
}
.footer__bottom a { color: rgba(255,255,255,.6); }
.footer__bottom a:hover { color: #fff; }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: #1B1B1B; color: #fff;
  padding: 12px 20px; border-radius: 8px;
  font-size: .88rem; font-weight: 500;
  transform: translateY(80px); opacity: 0;
  transition: all .3s ease; pointer-events: none;
  display: flex; align-items: center; gap: 8px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--green); }

/* ── Page header ── */
.page-header {
  background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
  padding: 44px 0 36px; color: #fff;
}
.page-header h1 { color: #fff; margin-bottom: 8px; }
.page-header p  { color: rgba(255,255,255,.8); max-width: 600px; }

/* ── Breadcrumb ── */
.breadcrumb { display: flex; gap: 6px; align-items: center; margin-bottom: 8px; }
.breadcrumb a, .breadcrumb span { font-size: .82rem; color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,.4); }

/* ── Profiles table ── */
.profiles-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.profiles-table th {
  background: var(--blue); color: #fff; padding: 12px 14px;
  text-align: left; font-weight: 600;
}
.profiles-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.profiles-table tr:last-child td { border-bottom: none; }
.profiles-table tr:nth-child(even) td { background: #fafafa; }
.profiles-table tr:hover td { background: var(--blue-light); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; flex-direction: column; }
  .nav__cta    { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .tools-grid   { grid-template-columns: 1fr; }
  .compare-table { font-size: .75rem; }
  .compare-table td, .compare-table th { padding: 8px 6px; }
  .pricing-table { font-size: .8rem; }
  .pricing-table td, .pricing-table th { padding: 9px 10px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 48px 0 40px; }
  .section { padding: 36px 0; }
  .cta-banner { padding: 28px 20px; }
}

/* ── Utilities ── */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; gap: 8px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none !important; }
.w-full { width: 100%; }
.overflow-hidden { overflow: hidden; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
