/* ============================================================
   Country guide · B2B · Blog · Reviews · Partners · FAQ
============================================================ */

/* ============================================================
   COUNTRY GUIDE
============================================================ */
    /* ============================================================
       COUNTRY GUIDE — Premium two-column knowledge panel
    ============================================================ */
    #country-guide {
      background: linear-gradient(180deg, #F8FAFF 0%, var(--blue-pale) 100%);
    }

.guide-layout {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 28px;
      align-items: start;
    }

/* === Sidebar — sticky country picker === */
    .g-sidebar {
      background: #fff;
      border: 1px solid var(--gray-150);
      border-radius: 22px;
      padding: 20px 16px;
      box-shadow: 0 8px 28px rgba(15, 26, 46, 0.06);
      position: sticky;
      top: 88px;
      max-height: calc(100vh - 110px);
      overflow-y: auto;
    }

.g-sidebar::-webkit-scrollbar { width: 4px; }

.g-sidebar::-webkit-scrollbar-thumb { background: var(--blue-pale2); border-radius: 4px; }

.g-sidebar-title {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Sora', sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--gray-500);
      padding: 0 6px 12px;
    }

.g-sidebar-title i { color: var(--blue); }

/* Search with icon prefix */
    .g-search-wrap {
      position: relative;
      margin-bottom: 14px;
    }

.g-search-wrap > i {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gray-400);
      font-size: 13px;
      pointer-events: none;
    }

.g-search {
      background: var(--gray-50);
      border: 1.5px solid var(--gray-200);
      border-radius: 12px;
      padding: 12px 14px 12px 36px;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 13px;
      color: var(--gray-900);
      outline: none;
      width: 100%;
      transition: border-color var(--t), background var(--t);
      margin-bottom: 0;
    }

.g-search:focus {
      border-color: var(--blue);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
    }

.c-list {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

.c-item {
      position: relative;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 11px 12px;
      border-radius: 12px;
      cursor: pointer;
      transition: background var(--t), padding var(--t);
      border: 1px solid transparent;
    }

.c-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      bottom: 8px;
      width: 3px;
      border-radius: 0 3px 3px 0;
      background: var(--blue);
      opacity: 0;
      transition: opacity var(--t);
    }

.c-item:hover {
      background: var(--gray-50);
      padding-left: 14px;
    }

.c-item.active {
      background: var(--blue-pale);
      border-color: var(--blue-pale2);
    }

.c-item.active::before { opacity: 1; }

.ci-flag {
      font-size: 22px;
      line-height: 1;
    }

.ci-name {
      font-size: 13px;
      font-weight: 600;
      font-family: 'Sora', sans-serif;
      color: var(--gray-800);
      flex: 1;
    }

.c-item.active .ci-name { color: var(--blue); font-weight: 700; }

.ci-arrow {
      color: var(--gray-300);
      font-size: 11px;
      opacity: 0;
      transform: translateX(-4px);
      transition: opacity var(--t), transform var(--t);
    }

.c-item:hover .ci-arrow,
    .c-item.active .ci-arrow {
      opacity: 1;
      transform: translateX(0);
      color: var(--blue);
    }

/* === Content — main country panel === */
    .g-content {
      background: #fff;
      border: 1px solid var(--gray-150);
      border-radius: 22px;
      padding: 0;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(15, 26, 46, 0.08);
    }

/* Hero strip — large flag + country name + capital */
    .gc-hero {
      position: relative;
      padding: 36px 36px 32px;
      background: linear-gradient(135deg, var(--blue-pale) 0%, #fff 60%, #ECFEFF 100%);
      border-bottom: 1px solid var(--gray-100);
      overflow: hidden;
    }

.gc-hero::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -60px;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.10) 0%, transparent 70%);
      pointer-events: none;
    }

.gc-head {
      display: flex;
      align-items: center;
      gap: 20px;
      position: relative;
      z-index: 1;
    }

/* Flag tile — renders an <img> from flagcdn.com (cross-platform, unlike emoji) */
.gc-flag {
      width: 96px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 10px 28px rgba(15, 26, 46, 0.12);
      flex-shrink: 0;
      overflow: hidden;
      border: 1px solid var(--gray-150);
    }
    .gc-flag img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

.gc-name {
      font-family: 'Sora', sans-serif;
      font-size: clamp(22px, 2.6vw, 28px);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--gray-900);
      line-height: 1.15;
      margin-bottom: 6px;
    }

.gc-cap {
      font-size: 13px;
      color: var(--gray-600);
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      font-family: 'Sora', sans-serif;
      font-weight: 600;
    }

.gc-cap i { color: var(--amber); }

.gc-cap-sep {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--gray-300);
    }

/* Stats grid (icon-led cards) */
    .gc-body {
      padding: 28px 36px 32px;
    }

.gc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 28px;
    }

.gc-stat {
      background: var(--gray-50);
      border: 1px solid var(--gray-150);
      border-radius: 14px;
      padding: 16px 14px;
      transition: border-color var(--t), background var(--t), transform var(--t);
    }

.gc-stat:hover {
      border-color: var(--blue-pale2);
      background: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.10);
    }

.gc-stat-lbl {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 10px;
      color: var(--blue);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 8px;
      font-weight: 800;
      font-family: 'Sora', sans-serif;
    }

.gc-stat-lbl i {
      width: 22px;
      height: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--blue-pale);
      border-radius: 6px;
      font-size: 10px;
    }

.gc-stat-val {
      font-family: 'Sora', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--gray-900);
      line-height: 1.35;
      letter-spacing: -0.01em;
    }

/* Info sections — colored left-border accent */
    .gc-info {
      position: relative;
      background: var(--gray-50);
      border-left: 4px solid var(--blue);
      border-radius: 0 14px 14px 0;
      padding: 18px 20px;
      margin-bottom: 12px;
    }

.gc-info:nth-child(1) { border-left-color: var(--blue); }

.gc-info:nth-child(2) { border-left-color: var(--cyan); }

.gc-info:nth-child(3) { border-left-color: var(--amber); }

.gc-info-title {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Sora', sans-serif;
      font-size: 13px;
      font-weight: 800;
      color: var(--gray-900);
      margin-bottom: 6px;
      letter-spacing: -0.01em;
    }

.gc-info-title i {
      width: 24px;
      height: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 7px;
      font-size: 11px;
      color: var(--blue);
      box-shadow: 0 2px 6px rgba(15, 26, 46, 0.06);
    }

.gc-info:nth-child(2) .gc-info-title i { color: var(--cyan); }

.gc-info:nth-child(3) .gc-info-title i { color: var(--amber); }

.gc-info-text {
      font-size: 13.5px;
      color: var(--gray-600);
      line-height: 1.7;
    }

/* CTA at bottom of country panel */
    .gc-cta {
      margin-top: 22px;
      padding: 20px;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      border-radius: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

.gc-cta-text h4 {
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 3px;
      font-family: 'Sora', sans-serif;
    }

.gc-cta-text p {
      color: rgba(255, 255, 255, 0.80);
      font-size: 12px;
    }

.gc-cta .btn {
      flex-shrink: 0;
    }

/* ============================================================
   B2B
============================================================ */
    #b2b {
      background: #fff
    }

.b2b-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start
    }

.b2b-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px
    }

.b2b-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: var(--gray-50);
      border: 1.5px solid var(--gray-150);
      border-radius: var(--r);
      padding: 18px;
      transition: var(--t);
    }

.b2b-item:hover {
      border-color: var(--blue-light);
      box-shadow: var(--shadow-xs)
    }

.b2b-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: var(--blue-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      font-size: 18px;
      flex-shrink: 0;
    }

.b2b-item h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--gray-900);
      margin-bottom: 3px;
      font-family: 'Sora', sans-serif
    }

.b2b-item p {
      font-size: 13px;
      color: var(--gray-500);
      line-height: 1.55
    }

.b2b-right {
      background: var(--gray-50);
      border: 1.5px solid var(--gray-150);
      border-radius: var(--r-xl);
      padding: 36px;
    }

.b2b-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 24px
    }

.b2b-stat {
      background: var(--blue-pale);
      border-radius: var(--r-sm);
      padding: 20px;
      text-align: center
    }

.b2b-stat-num {
      font-size: 24px;
      font-weight: 800;
      color: var(--blue);
      font-family: 'Sora', sans-serif
    }

.b2b-stat-lbl {
      font-size: 11px;
      color: var(--blue-mid);
      font-weight: 700;
      margin-top: 4px;
      letter-spacing: 0.04em
    }

/* ============================================================
       BLOG — Premium magazine-style restructure (1 featured + 6 articles)
    ============================================================ */
    #blog {
      background: var(--gray-50);
    }

/* Outer two-row layout: featured (full width), then 3-col grid */
    .blog-grid {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

.blog-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

/* === FEATURED article — large hero card === */
    .blog-featured {
      position: relative;
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      background: #fff;
      border: 1px solid var(--gray-150);
      border-radius: 24px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.4s var(--ease-spring), box-shadow var(--t), border-color var(--t);
      box-shadow: 0 10px 32px rgba(15, 26, 46, 0.08);
    }

.blog-featured:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 60px rgba(15, 26, 46, 0.16);
      border-color: transparent;
    }

.blog-featured .blog-img-main {
      position: relative;
      height: 100%;
      min-height: 200px;
      max-height: 320px;
      overflow: hidden;
    }

.blog-featured .blog-img-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

.blog-featured:hover .blog-img-main img {
      transform: scale(1.06);
    }

.blog-main-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(4, 13, 31, 0.20) 0%, transparent 60%);
    }

/* Featured content side */
    .blog-featured-body {
      padding: 36px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

.blog-featured-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--amber);
      color: #fff;
      padding: 5px 12px;
      border-radius: 999px;
      font-family: 'Sora', sans-serif;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      width: fit-content;
      margin-bottom: 14px;
      box-shadow: 0 4px 12px rgba(245, 158, 11, 0.30);
    }

/* === Standard article cards (used in the 3-col rows) === */
    .blog-card {
      position: relative;
      background: #fff;
      border: 1px solid var(--gray-150);
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.4s var(--ease-spring), box-shadow var(--t), border-color var(--t);
      display: flex;
      flex-direction: column;
      box-shadow: 0 6px 20px rgba(15, 26, 46, 0.06);
    }

.blog-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(15, 26, 46, 0.14);
      border-color: transparent;
    }

.blog-img {
      position: relative;
      height: 200px;
      overflow: hidden;
      flex-shrink: 0;
    }

.blog-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

.blog-card:hover .blog-img img {
      transform: scale(1.08);
    }

.blog-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(4, 13, 31, 0.45) 0%, transparent 50%);
    }

/* Reading time badge — top-right */
    .blog-readtime {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      color: var(--gray-900);
      padding: 5px 11px;
      border-radius: 999px;
      font-family: 'Sora', sans-serif;
      font-size: 11px;
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.blog-readtime i {
      font-size: 9px;
      color: var(--blue);
    }

/* Body content */
    .blog-body {
      padding: 22px 22px 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

.blog-cat {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Sora', sans-serif;
      font-size: 10px;
      font-weight: 800;
      color: var(--blue);
      letter-spacing: 0.10em;
      text-transform: uppercase;
      margin-bottom: 12px;
      width: fit-content;
      padding: 4px 10px;
      background: var(--blue-pale);
      border-radius: 999px;
    }

.blog-cat i { font-size: 9px; }

.blog-title-lg {
      font-family: 'Sora', sans-serif;
      font-size: clamp(22px, 2.2vw, 26px);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--gray-900);
      line-height: 1.2;
      margin-bottom: 14px;
    }

.blog-title {
      font-family: 'Sora', sans-serif;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--gray-900);
      line-height: 1.3;
      margin-bottom: 10px;
      transition: color var(--t);
    }

.blog-card:hover .blog-title {
      color: var(--blue);
    }

.blog-desc {
      font-size: 13.5px;
      color: var(--gray-600);
      line-height: 1.65;
      margin-bottom: 16px;
      flex: 1;
    }

/* Meta row — author + date + views */
    .blog-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 14px;
      border-top: 1px solid var(--gray-100);
      font-size: 11.5px;
      color: var(--gray-500);
      font-weight: 600;
      font-family: 'Sora', sans-serif;
    }

.blog-meta i { color: var(--blue); font-size: 10px; }

.blog-meta-sep {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--gray-300);
      flex-shrink: 0;
    }

.blog-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

/* Author chip with avatar (featured only) */
    .blog-author {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid var(--gray-100);
    }

.blog-author-av {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--blue-pale);
      color: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Sora', sans-serif;
      font-size: 13px;
      font-weight: 800;
      flex-shrink: 0;
    }

.blog-author-info {
      flex: 1;
      min-width: 0;
    }

.blog-author-name {
      font-family: 'Sora', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--gray-900);
      letter-spacing: -0.01em;
    }

.blog-author-meta {
      font-size: 11px;
      color: var(--gray-500);
      font-weight: 500;
      margin-top: 1px;
    }

/* Read more arrow link */
    .blog-read {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 14px;
      font-family: 'Sora', sans-serif;
      font-size: 12.5px;
      font-weight: 700;
      color: var(--blue);
      transition: gap var(--t), color var(--t);
    }

.blog-read i { font-size: 10px; transition: transform var(--t); }

.blog-card:hover .blog-read,
    .blog-featured:hover .blog-read {
      gap: 10px;
    }

.blog-meta i {
      font-size: 10px
    }

/* ============================================================
   REVIEWS
============================================================ */
    #reviews {
      background: #fff
    }

.rev-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px
    }

.rev-card {
      background: var(--gray-50);
      border: 1.5px solid var(--gray-150);
      border-radius: var(--r-xl);
      padding: 30px;
      transition: var(--t);
    }

.rev-card:hover {
      border-color: var(--blue-light);
      box-shadow: var(--shadow);
      transform: translateY(-4px)
    }

.rev-stars {
      color: var(--amber);
      font-size: 14px;
      margin-bottom: 14px;
      display: flex;
      gap: 3px
    }

.rev-text {
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.75;
      margin-bottom: 18px;
      font-style: italic
    }

.rev-author {
      display: flex;
      align-items: center;
      gap: 12px
    }

.rev-av {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      overflow: hidden;
      background: var(--blue-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      font-weight: 700;
      color: var(--blue);
      font-family: 'Sora', sans-serif;
      flex-shrink: 0;
    }

.rev-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--gray-900);
      font-family: 'Sora', sans-serif
    }

.rev-city {
      font-size: 12px;
      color: var(--gray-400);
      display: flex;
      align-items: center;
      gap: 5px
    }

/* ============================================================
   PARTNERS
============================================================ */
    #partners {
      background: var(--gray-50)
    }

.partner-logos {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      margin-top: 48px
    }

.plogo {
      background: #fff;
      border: 1.5px solid var(--gray-150);
      border-radius: var(--r-lg);
      padding: 18px 28px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 700;
      color: var(--gray-400);
      transition: var(--t);
      cursor: pointer;
      font-family: 'Sora', sans-serif;
    }

.plogo i {
      font-size: 18px
    }

.plogo:hover {
      border-color: var(--blue-light);
      color: var(--blue);
      box-shadow: var(--shadow);
      transform: translateY(-2px)
    }

/* ============================================================
   FAQ
============================================================ */
    #faq {
      background: #fff
    }

.faq-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start
    }

.faq-left h2 {
      margin: 16px 0
    }

.faq-left p {
      color: var(--gray-500);
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 30px
    }

.faq-contact-box {
      background: var(--blue-pale);
      border: 1.5px solid var(--blue-pale2);
      border-radius: var(--r-xl);
      padding: 26px;
    }

.faq-contact-box h4 {
      font-size: 17px;
      margin-bottom: 6px;
      font-family: 'Sora', sans-serif;
      color: var(--gray-900)
    }

.faq-contact-box p {
      font-size: 13px;
      color: var(--gray-500);
      margin-bottom: 14px
    }

.faqlist {
      display: flex;
      flex-direction: column
    }

.faqitem {
      border-bottom: 1px solid var(--gray-150)
    }

.faqitem:first-child {
      border-top: 1px solid var(--gray-150)
    }

.faqq {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
      cursor: pointer;
      transition: color var(--t);
    }

.faqq:hover {
      color: var(--blue)
    }

.faqq h4 {
      font-size: 15px;
      font-weight: 700;
      font-family: 'Sora', sans-serif;
      padding-right: 20px
    }

.faqq-icon {
      color: var(--gray-400);
      transition: transform var(--t);
      flex-shrink: 0;
      font-size: 14px
    }

.faqitem.open .faqq-icon {
      transform: rotate(180deg);
      color: var(--blue)
    }

.faqa {
      font-size: 14px;
      color: var(--gray-500);
      line-height: 1.75;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding-bottom 0.35s ease;
    }

.faqitem.open .faqa {
      max-height: 200px;
      padding-bottom: 18px
    }
