﻿:root {
      --ll-color-primary: #1a56db;
      --ll-color-secondary: #0f3a8e;
      --ll-color-background: #f4f5f7;
      --ll-color-text-primary: #1a1a2e;
      --ll-color-text-secondary: #4a4a68;
      --ll-font-heading: "Merriweather", Georgia, serif;
      --ll-font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
      --ll-color-accent: #16a34a;
      --ll-color-border: #e2e5ea;
      --ll-color-card-bg: #ffffff;
      --ll-color-dark: #0d1b2a;
      --ll-color-warning: #f59e0b;
      --ll-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
      --ll-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
      --ll-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
      --ll-radius: 8px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: var(--ll-font-body);
      background: var(--ll-color-background);
      color: var(--ll-color-text-primary);
      line-height: 1.7;
      font-size: 16px;
    }

    .nav-bar {
      background: var(--ll-color-dark);
      padding: 12px 0;
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 3px solid var(--ll-color-primary);
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-logo {
      font-family: var(--ll-font-heading);
      font-size: 1.5rem;
      font-weight: 900;
      color: #ffffff;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-logo-accent {
      color: var(--ll-color-primary);
    }

    .nav-links {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .nav-link {
      color: #cbd5e1;
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    .nav-link:hover {
      color: #ffffff;
    }

    .nav-link-cta {
      background: var(--ll-color-accent);
      color: #fff;
      padding: 8px 18px;
      border-radius: var(--ll-radius);
      font-weight: 700;
      animation: ctaPulseNav 2s infinite;
      position: relative;
      overflow: hidden;
    }

    .nav-link-cta::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      animation: ctaShimmer 2.5s infinite;
    }

    .nav-link-cta:hover {
      background: #15803d;
      color: #fff;
    }

    .main-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 30px 20px;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 36px;
      align-items: start;
    }

    .article-col {
      min-width: 0;
    }

    .article-category {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--ll-color-primary);
      margin-bottom: 12px;
    }

    .article-category-dot {
      width: 4px;
      height: 4px;
      background: var(--ll-color-primary);
      border-radius: 50%;
    }

    .article-title {
      font-family: var(--ll-font-heading);
      font-size: 2.25rem;
      font-weight: 900;
      line-height: 1.25;
      color: var(--ll-color-text-primary);
      margin-bottom: 16px;
    }

    .article-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.85rem;
      color: var(--ll-color-text-secondary);
      margin-bottom: 24px;
      flex-wrap: wrap;
    }

    .article-meta-sep {
      width: 4px;
      height: 4px;
      background: var(--ll-color-text-secondary);
      border-radius: 50%;
    }

    .editors-note {
      background: #eef2ff;
      border-left: 4px solid var(--ll-color-primary);
      padding: 16px 20px;
      margin-bottom: 28px;
      border-radius: 0 var(--ll-radius) var(--ll-radius) 0;
    }

    .editors-note-label {
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--ll-color-primary);
      margin-bottom: 6px;
    }

    .editors-note-text {
      font-size: 0.95rem;
      color: var(--ll-color-text-secondary);
      line-height: 1.6;
    }

    .hero-img-wrap {
      margin-bottom: 28px;
      border-radius: var(--ll-radius);
      overflow: hidden;
      box-shadow: var(--ll-shadow-md);
    }

    .hero-img {
      width: 100%;
      height: auto;
      display: block;
    }

    .article-body {
      background: var(--ll-color-card-bg);
      padding: 36px;
      border-radius: var(--ll-radius);
      box-shadow: var(--ll-shadow-sm);
    }

    .article-body p {
      margin-bottom: 20px;
      font-size: 1.05rem;
      line-height: 1.8;
      color: #374151;
    }

    .article-body h2 {
      font-family: var(--ll-font-heading);
      font-size: 1.5rem;
      font-weight: 700;
      margin-top: 36px;
      margin-bottom: 16px;
      color: var(--ll-color-text-primary);
    }

    .article-body h3 {
      font-family: var(--ll-font-heading);
      font-size: 1.2rem;
      font-weight: 700;
      margin-top: 28px;
      margin-bottom: 12px;
      color: var(--ll-color-text-primary);
    }

    .article-body ul {
      margin-bottom: 20px;
      padding-left: 0;
      list-style: none;
    }

    .article-body ul li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 10px;
      font-size: 1.02rem;
      color: #374151;
    }

    .article-body ul li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 6px;
      width: 16px;
      height: 16px;
      background: url('check-circle.svg') no-repeat center / contain;
    }

    .quote-block {
      background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%);
      border-left: 4px solid var(--ll-color-primary);
      padding: 24px 28px;
      margin: 28px 0;
      border-radius: 0 var(--ll-radius) var(--ll-radius) 0;
    }

    .quote-text {
      font-style: italic;
      font-size: 1.05rem;
      color: #374151;
      margin-bottom: 10px;
      line-height: 1.7;
    }

    .quote-author {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--ll-color-primary);
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      margin: 24px 0;
      border-radius: var(--ll-radius);
      overflow: hidden;
      box-shadow: var(--ll-shadow-sm);
    }

    .compare-table thead th {
      background: var(--ll-color-dark);
      color: #ffffff;
      padding: 14px 16px;
      font-size: 0.85rem;
      text-align: left;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .compare-table tbody td {
      padding: 12px 16px;
      font-size: 0.95rem;
      border-bottom: 1px solid var(--ll-color-border);
      color: #374151;
    }

    .compare-table tbody tr:nth-child(even) {
      background: #f8fafc;
    }

    .compare-table .highlight-cell {
      color: var(--ll-color-accent);
      font-weight: 600;
    }

    .cta-inline {
      background: linear-gradient(135deg, var(--ll-color-primary) 0%, var(--ll-color-secondary) 100%);
      padding: 32px;
      border-radius: var(--ll-radius);
      text-align: center;
      margin: 32px 0;
    }

    .cta-inline-title {
      font-family: var(--ll-font-heading);
      font-size: 1.4rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
    }

    .cta-inline-sub {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 20px;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #ffffff;
      color: var(--ll-color-primary);
      padding: 14px 32px;
      border-radius: var(--ll-radius);
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    }

    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .cta-btn-primary {
      background: var(--ll-color-accent);
      color: #ffffff;
      font-size: 1.15rem;
      padding: 18px 40px;
      position: relative;
      overflow: hidden;
      animation: ctaPulseMain 2s infinite;
    }

    .cta-btn-primary::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
      animation: ctaShimmer 2.5s infinite;
    }

    .cta-btn-primary:hover {
      background: #15803d;
    }

    .dashboard-img-wrap {
      margin: 28px 0;
      border-radius: var(--ll-radius);
      overflow: hidden;
      box-shadow: var(--ll-shadow-lg);
      border: 2px solid var(--ll-color-border);
    }

    .dashboard-img {
      width: 100%;
      height: auto;
      display: block;
    }

    .sidebar-col {
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: sticky;
      top: 80px;
    }

    .calc-card {
      background: var(--ll-color-card-bg);
      border-radius: var(--ll-radius);
      box-shadow: var(--ll-shadow-md);
      overflow: hidden;
    }

    .calc-header {
      background: var(--ll-color-dark);
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .calc-header-icon {
      width: 22px;
      height: 22px;
    }

    .calc-header-text {
      color: #ffffff;
      font-weight: 700;
      font-size: 0.95rem;
    }

    .calc-body {
      padding: 20px;
    }

    .calc-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--ll-color-text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }

    .calc-amount {
      font-size: 2rem;
      font-weight: 700;
      color: var(--ll-color-text-primary);
      text-align: center;
      margin-bottom: 8px;
    }

    .calc-range {
      width: 100%;
      -webkit-appearance: none;
      appearance: none;
      height: 6px;
      background: var(--ll-color-border);
      border-radius: 3px;
      outline: none;
      margin-bottom: 6px;
    }

    .calc-range::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 22px;
      height: 22px;
      background: var(--ll-color-primary);
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(26, 86, 219, 0.4);
    }

    .calc-range::-moz-range-thumb {
      width: 22px;
      height: 22px;
      background: var(--ll-color-primary);
      border-radius: 50%;
      cursor: pointer;
      border: none;
    }

    .calc-range-labels {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: #9ca3af;
      margin-bottom: 20px;
    }

    .calc-result-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--ll-color-text-secondary);
      text-align: center;
      margin-bottom: 4px;
      font-weight: 600;
    }

    .calc-result {
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--ll-color-accent);
      text-align: center;
      margin-bottom: 20px;
    }

    .calc-cta-wrap {
      background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
      padding: 16px;
      border-radius: var(--ll-radius);
      text-align: center;
      margin-bottom: 16px;
    }

    .calc-cta-title {
      font-weight: 700;
      font-size: 1rem;
      color: var(--ll-color-text-primary);
      margin-bottom: 4px;
    }

    .calc-cta-sub {
      font-size: 0.8rem;
      color: var(--ll-color-text-secondary);
      margin-bottom: 12px;
    }

    .calc-cta-btn {
      display: block;
      width: 100%;
      text-align: center;
      padding: 14px;
      background: var(--ll-color-accent);
      color: #ffffff;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      border-radius: var(--ll-radius);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
      animation: ctaPulseNav 2s infinite;
    }

    .calc-cta-btn::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      animation: ctaShimmer 2.5s infinite;
    }

    .calc-cta-btn:hover {
      background: #15803d;
      transform: translateY(-1px);
    }

    .calc-note {
      font-size: 0.75rem;
      color: #9ca3af;
      text-align: center;
    }

    .live-card {
      background: var(--ll-color-card-bg);
      border-radius: var(--ll-radius);
      box-shadow: var(--ll-shadow-md);
      overflow: hidden;
    }

    .live-header {
      background: var(--ll-color-dark);
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .live-header-left {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .live-header-text {
      color: #ffffff;
      font-weight: 700;
      font-size: 0.9rem;
    }

    .live-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: #dc2626;
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 999px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .live-dot {
      width: 6px;
      height: 6px;
      background: #fff;
      border-radius: 50%;
      animation: livePulse 1.5s infinite;
    }

    .live-today {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      background: #f0fdf4;
      border-bottom: 1px solid var(--ll-color-border);
    }

    .live-today-label {
      font-size: 0.8rem;
      color: var(--ll-color-text-secondary);
      font-weight: 500;
    }

    .live-today-amount {
      font-size: 1rem;
      font-weight: 700;
      color: var(--ll-color-accent);
    }

    .live-list {
      max-height: 320px;
      overflow-y: auto;
    }

    .live-item {
      display: grid;
      grid-template-columns: 36px 1fr auto;
      gap: 10px;
      padding: 10px 20px;
      align-items: center;
      border-bottom: 1px solid #f3f4f6;
      transition: background 0.2s;
    }

    .live-item:hover {
      background: #f9fafb;
    }

    .live-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--ll-color-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.75rem;
      color: var(--ll-color-text-secondary);
    }

    .live-user-name {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--ll-color-text-primary);
    }

    .live-user-detail {
      font-size: 0.75rem;
      color: #9ca3af;
    }

    .live-profit {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--ll-color-accent);
    }

    .live-ai-badge {
      font-size: 0.65rem;
      font-weight: 600;
      background: #dbeafe;
      color: var(--ll-color-primary);
      padding: 2px 6px;
      border-radius: 4px;
      margin-left: 6px;
    }

    .live-footer {
      padding: 14px 20px;
      text-align: center;
      background: #f8fafc;
      border-top: 1px solid var(--ll-color-border);
    }

    .live-footer-text {
      font-size: 0.8rem;
      color: var(--ll-color-text-secondary);
      font-weight: 500;
    }

    .live-users-count {
      font-weight: 700;
      color: var(--ll-color-primary);
    }

    .live-sidebar-cta {
      display: block;
      text-align: center;
      padding: 14px;
      background: var(--ll-color-accent);
      color: #fff;
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .live-sidebar-cta::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      animation: ctaShimmer 2.5s infinite;
    }

    .live-sidebar-cta:hover {
      background: #15803d;
    }

    .cta-section {
      background: linear-gradient(135deg, var(--ll-color-primary) 0%, var(--ll-color-secondary) 100%);
      padding: 48px 36px;
      border-radius: var(--ll-radius);
      box-shadow: var(--ll-shadow-md);
      margin-top: 8px;
      text-align: center;
    }

    .cta-section-icon {
      width: 56px;
      height: 56px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .cta-section-title {
      font-family: var(--ll-font-heading);
      font-size: 1.6rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .cta-section-sub {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 28px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .cta-section-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--ll-color-accent);
      color: #ffffff;
      padding: 20px 48px;
      border-radius: var(--ll-radius);
      font-weight: 700;
      font-size: 1.2rem;
      text-decoration: none;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
      animation: ctaPulseBig 2s infinite;
    }

    .cta-section-btn::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      animation: ctaShimmer 2.5s infinite;
    }

    .cta-section-btn:hover {
      background: #15803d;
      transform: translateY(-2px);
    }

    .cta-section-note {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.65);
      margin-top: 16px;
    }

    .cta-section-badges {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .cta-section-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 500;
    }

    .comments-section {
      background: var(--ll-color-card-bg);
      padding: 36px;
      border-radius: var(--ll-radius);
      box-shadow: var(--ll-shadow-sm);
      margin-top: 8px;
    }

    .comments-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
    }

    .comments-title {
      font-family: var(--ll-font-heading);
      font-size: 1.2rem;
      font-weight: 700;
    }

    .comments-count {
      font-size: 0.8rem;
      font-weight: 600;
      background: var(--ll-color-primary);
      color: #fff;
      padding: 2px 10px;
      border-radius: 999px;
    }

    .comment-item {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 14px;
      padding: 18px 0;
      border-bottom: 1px solid #f3f4f6;
    }

    .comment-item:last-child {
      border-bottom: none;
    }

    .comment-avatar-img {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
    }

    .comment-name {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--ll-color-text-primary);
    }

    .comment-time {
      font-size: 0.75rem;
      color: #9ca3af;
      margin-left: 8px;
      font-weight: 400;
    }

    .comment-text {
      font-size: 0.95rem;
      color: #4b5563;
      margin-top: 4px;
      line-height: 1.6;
    }

    .comment-actions {
      display: flex;
      gap: 16px;
      margin-top: 8px;
    }

    .comment-action {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.8rem;
      color: #9ca3af;
      text-decoration: none;
      transition: color 0.2s;
    }

    .comment-action:hover {
      color: var(--ll-color-primary);
    }

    .comment-action-icon {
      width: 14px;
      height: 14px;
    }

    .footer-wrap {
      background: var(--ll-color-dark);
      padding: 40px 20px;
      margin-top: 40px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 20px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-logo {
      font-family: var(--ll-font-heading);
      font-size: 1.2rem;
      font-weight: 900;
      color: #ffffff;
      text-decoration: none;
    }

    .footer-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-link {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.2s;
    }

    .footer-link:hover {
      color: #ffffff;
    }

    .footer-disclaimer {
      font-size: 0.72rem;
      color: #64748b;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .footer-copyright {
      font-size: 0.72rem;
      color: #475569;
    }

    .floating-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--ll-color-card-bg);
      padding: 12px 20px;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
      z-index: 99;
    }

    .floating-cta-btn {
      display: block;
      width: 100%;
      text-align: center;
      padding: 14px;
      background: var(--ll-color-accent);
      color: #ffffff;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      border-radius: var(--ll-radius);
      position: relative;
      overflow: hidden;
      animation: ctaPulseNav 2s infinite;
    }

    .floating-cta-btn::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      animation: ctaShimmer 2.5s infinite;
    }

    .anim-in {
      animation: fadeInUp 0.6s ease-out both;
    }

    #ct2tt {
      color: var(--ll-color-background);
    }

    #ct3sb {
      color: var(--ll-color-background);
    }

    @keyframes ctaPulseNav {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
      }

      50% {
        box-shadow: 0 0 12px 4px rgba(22, 163, 74, 0.35);
      }
    }

    @keyframes ctaShimmer {
      0% {
        left: -100%;
      }

      50%,
      100% {
        left: 100%;
      }
    }

    @keyframes ctaPulseMain {

      0%,
      100% {
        box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
      }

      50% {
        box-shadow: 0 4px 30px rgba(22, 163, 74, 0.7), 0 0 60px rgba(22, 163, 74, 0.2);
      }
    }

    @keyframes ctaPulseBig {

      0%,
      100% {
        box-shadow: 0 4px 20px rgba(22, 163, 74, 0.5);
      }

      50% {
        box-shadow: 0 6px 40px rgba(22, 163, 74, 0.8), 0 0 80px rgba(22, 163, 74, 0.25);
      }
    }

    @keyframes livePulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 1024px) {
      .main-wrap {
        grid-template-columns: 1fr;
      }

      .sidebar-col {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
    }

    @media (max-width: 768px) {
      .article-title {
        font-size: 1.6rem;
      }

      .article-body {
        padding: 24px 20px;
      }

      .article-body h2 {
        font-size: 1.25rem;
      }

      .sidebar-col {
        grid-template-columns: 1fr;
      }

      .compare-table {
        font-size: 0.85rem;
      }

      .compare-table thead th,
      .compare-table tbody td {
        padding: 10px 8px;
      }

      .floating-cta {
        display: block;
      }

      .reg-section {
        padding: 24px 20px;
      }

      .comments-section {
        padding: 24px 20px;
      }

      .nav-links {
        gap: 10px;
      }

      .nav-link:not(.nav-link-cta) {
        display: none;
      }
    }

    @media (max-width: 576px) {
      .article-title {
        font-size: 1.4rem;
      }

      .calc-result {
        font-size: 1.8rem;
      }

      .cta-inline {
        padding: 24px 18px;
      }
    }

.iti { width: 100% !important; }
.iti__country-name { color: #000; }
.iti__search-input { color: #000 !important; }
.iti--allow-dropdown input.iti__tel-input,
.iti--allow-dropdown input.iti__tel-input[type="tel"],
.iti--allow-dropdown input.iti__tel-input[type="text"] {
  padding-left: 94px !important;
}

.form-error { color: #dc2626; font-size: 13px; margin-top: 6px; }

.cta-form {
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}
.cta-form-row { margin-bottom: 16px; }
.cta-input {
  width: 100%;
  height: 54px;
  border: 1px solid #d7dde7;
  border-radius: 8px;
  background: #fff;
  padding: 0 18px;
  font-size: 16px;
  color: #1d2939;
  outline: none;
  transition: .2s;
  box-sizing: border-box;
}
.cta-input::placeholder { color: #98a2b3; }
.cta-input:focus {
  border-color: #1a56db;
  box-shadow: 0 0 0 4px rgba(26,86,219,.12);
}
.cta-submit {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 8px;
  background: #16a34a;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s;
}
.cta-submit:hover {
  background: #15803d;
  transform: translateY(-1px);
}
.cta-agree-label {
  display: flex;
  cursor: pointer;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}
.cta-agree-label input { margin-top: 2px; flex-shrink: 0; cursor: pointer; }

.main-footer {
  background: #f8f8f8;
  color: #333;
  padding: 25px 0;
  border-top: 1px solid #e0e0e0;
  margin: auto;
}
.main-footer a { color: #555; text-decoration: underline; }
.main-footer .footer-nav a { color: #ff8b1f; font-size: 16px; text-decoration: none; }

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.6);
  overflow-y: auto;
  padding: 2rem;
}
.modal.modal-open { display: flex; align-items: flex-start; justify-content: center; }
.modal-content {
  background: #fff;
  border-radius: 8px;
  max-width: 640px;
  width: 100%;
  padding: 2rem;
  position: relative;
  margin-top: 4rem;
}
.modal-content h2 { margin-bottom: 1rem; font-size: 1.5rem; font-weight: 700; }
.modal-content h3 { margin-top: 1rem; font-weight: 600; }
.modal-content p, .modal-content li { font-size: 0.9rem; line-height: 1.6; color: #444; }
.modal-content ul { padding-left: 1.25rem; list-style: disc; }
.modal-content a { color: #0f766e; }
.modal-content a:hover { text-decoration: underline; }
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}
.modal-close:hover { color: #000; }

#cookie-modal {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 50;
  margin: 0 auto;
  display: flex;
  width: fit-content;
  max-width: 40rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  background: #fff;
}
#cookie-modal .cookie-inner {
  position: relative;
  padding: 1rem 1.5rem;
}
#cookie-modal .cookie-close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
#cookie-modal .cookie-text {
  text-align: center;
  font-size: 0.875rem;
  color: #666;
}
#cookie-modal .cookie-actions {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-top: 0.25rem;
}
#cookie-modal .cookie-actions button {
  background: none;
  border: none;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: underline;
}
#cookie-modal .cookie-accept { color: #3b82f6; }
#cookie-modal .cookie-decline { color: #666; }
