 :root {
     --primary-teal: #31adad;
     --teal: #31adad;
     --teal-2: #0b7e7e;
     --teal-light: rgba(49, 173, 173, 0.08);
     --pink: #ff2d8d;
     --pink-2: #ff4c9a;
     --pink-light: rgba(255, 45, 134, 0.08);
     --dark: #0f172a;
     --muted: #64748b;
     --bg: #ffffff;
     --card: #ffffff;
     --line: #e9edf3;
     --border: #e6edf2;
     --grad: linear-gradient(135deg, #31adad, #ff2d8d);
     --radius: 20px;
     --radius-sm: 14px;
     --shadow: 0 10px 40px rgba(11, 19, 32, .06);
     --shadow-soft: 0 6px 24px rgba(11, 19, 32, .05);
     --shadow-hover: 0 16px 48px rgba(11, 19, 32, .10);
     --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
 }

 body {
     font-family: 'Poppins', sans-serif;
     color: var(--text-dark);
     overflow-x: hidden;
     padding-top: 36px;
 }


 /* Top Bar */
 .top-bar {
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     color: white;
     padding: 0.5rem 0;
     font-size: 0.85rem;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 10000;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }


 .top-bar-links {
     display: flex;
     justify-content: flex-end;
     gap: 1.5rem;
 }

 .top-bar-links a {
     color: white;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 0.3rem;
     font-weight: 500;
     transition: opacity 0.3s;
 }

 .top-bar-links a:hover {
     opacity: 0.8;
 }

 /* ─── SCROLL PROGRESS TOP BAR ─── */
 #scrollProgressBar {
     position: fixed;
     top: 0;
     left: 0;
     height: 3px;
     background: var(--grad);
     width: 0%;
     z-index: 9999;
     transition: width .1s;
 }


 /* ============================================================
   MAIN NAVBAR — your existing base styles
============================================================ */
 .main-navbar {
     background: white;
     box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
     position: sticky;
     z-index: 1000;
     padding: 0.8rem 0;
     padding-top: 0px;
 }

 .pt-2rem {
     padding-top: 0;
 }

 /* removed extra top padding that caused layout shift */

 .navbar-brand-custom {
     font-weight: 800;
     font-size: 1.4rem;
     background: var(--grad);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 0.4rem;
     flex-shrink: 0;
 }

 .navbar-brand-custom img {
     width: 32px !important;
     height: 32px;
     object-fit: contain;
     /* fix: image must not be text-fill:transparent */
     -webkit-text-fill-color: initial;
 }

 .nav-menu {
     display: flex;
     align-items: center;
     gap: 30px;
     list-style: none;
     margin: 0;
     padding: 0;
     flex-wrap: nowrap;
 }

 /* ============================================================
   WRITE BTN — your existing
============================================================ */
 .write-btn {
     background: var(--grad);
     color: white;
     padding: 0.6rem 2.5rem;
     border-radius: 30px;
     text-decoration: none;
     font-weight: 700;
     font-size: 17px;
     transition: all .3s;
     white-space: nowrap;
     flex-shrink: 0;
 }

 .write-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(255, 45, 141, .4);
     color: white;
 }

 /* ============================================================
   HAMBURGER
============================================================ */
 .hamburger-menu {
     display: none;
     flex-direction: column;
     /* gap: 5px; */
     background: none;
     border: none;
     cursor: pointer;
     padding: 4px;
 }

 .hamburger-menu span {
     display: block;
     width: 24px;
     height: 2.5px;
     background: var(--text-dark);
     border-radius: 2px;
     transition: all .3s;
 }

 /* ============================================================
   ── NEW/FIXED nav-link-custom ──
   Your existing class, hover gap fixed via height trick
============================================================ */
 .nav-link-custom {
     color: var(--text-dark);
     text-decoration: none;
     font-weight: 600;
     font-size: .9rem;
     padding: 0.6rem 0.8rem;
     display: flex;
     align-items: center;
     gap: 0.3rem;
     transition: color .3s;
     white-space: nowrap;
     /* stretch full navbar height → no gap between link & dropdown */
     height: 56px;
     cursor: pointer;
 }

 .nav-link-custom i {
     font-size: 0.72rem;
     transition: transform .3s ease;
 }

 .nav-link-custom:hover {
     color: var(--primary-pink);
 }

 .nav-item-custom:hover .nav-link-custom i {
     transform: rotate(180deg);
 }

 /* ============================================================
   ── FIXED: nav-item-custom wrapper ──
   KEY: position relative + z-index context
============================================================ */
 .nav-item-custom {
     position: relative;
     white-space: nowrap;
     /* Extend hover zone downward to bridge gap to dropdown */
     padding-bottom: 0;
 }

 /*
  HOVER GAP FIX — invisible pseudo bridge:
  Extends the hover area of each nav-item so mouse can travel
  from nav-link down into dropdown without gap-close.
*/
 .nav-item-custom::after {
     content: '';
     position: absolute;
     bottom: -8px;
     /* covers the dropdown margin-top */
     left: 0;
     right: 0;
     height: 10px;
     background: transparent;
 }

 /* ============================================================
   ── FIXED: dropdown-menu-custom ──

   THE BIG FIX:
   Old code used display:none → display:block which cannot
   be CSS-transitioned and causes hover flicker.

   NEW: use visibility + opacity + pointer-events.
   This allows smooth transitions AND proper hover detection.
============================================================ */
 .dropdown-menu-custom {
     position: absolute;
     top: calc(100% + 2px);
     /* 2px gap only, was 10px before */
     left: 0;
     background: white;
     box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
     border-radius: 12px;
     padding: 8px 0;
     min-width: 230px;
     z-index: 9999;

     /* FIXED: visibility transition instead of display */
     display: block !important;
     /* always in DOM */
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transform: translateY(8px);
     transition: opacity .22s ease, transform .22s ease, visibility .22s;
 }

 /* Show on hover */
 .nav-item-custom:hover .dropdown-menu-custom {
     opacity: 1;
     visibility: visible;
     pointer-events: all;
     transform: translateY(0);
 }

 /* ============================================================
   ── FIXED: dropdown-item-custom ──
   Full-width rows, proper hover with gradient highlight
============================================================ */
 .dropdown-item-custom {
     padding: 9px 16px;
     color: var(--text-dark);
     text-decoration: none;
     display: block;
     border-radius: 7px;
     margin: 1px 6px;
     transition: background .18s, color .18s, padding-left .18s;
     font-size: .85rem;
     font-weight: 500;
     cursor: pointer;
     /* KEY: extend hover zone to right for sub-menu gap */
     padding-right: 24px;
 }

 .dropdown-item-custom:hover {
     background: linear-gradient(135deg, rgba(49, 173, 173, .1), rgba(255, 45, 141, .1));
     color: var(--primary-pink);
     padding-left: 20px;
 }

 /* ============================================================
   ── THE 3-LEVEL DROPDOWN (ni / dd1 / di1 / dd2 / di2 / dd3)
   These use your NEW class names from the fixed navbar code.
   They COEXIST with the old nav-item-custom system.
============================================================ */

 /* Level-1 parent li */
 .ni {
     position: relative;
     white-space: nowrap;
 }

 /* Same height-gap bridge for .ni */
 .ni::after {
     content: '';
     position: absolute;
     bottom: -8px;
     left: 0;
     right: 0;
     height: 10px;
     background: transparent;
 }

 /* Top-level link for .ni */
 .ni>a.nl {
     color: var(--text-dark);
     font-weight: 600;
     font-size: 18px;
     padding: 0.6rem 0.8rem;
     display: flex;
     align-items: center;
     gap: 0.3rem;
     height: 56px;
     white-space: nowrap;
     cursor: pointer;
     transition: color .25s;
     letter-spacing: 0.052rem;
 }

 .ni>a.nl .ci {
     font-size: .68rem;
     transition: transform .25s ease;
 }

 .ni>a.nl:hover {
     color: var(--primary-pink);
 }

 .ni:hover>a.nl .ci {
     transform: rotate(180deg);
 }

 /* L1 Dropdown panel */
 .dd1 {
     position: absolute;
     top: calc(100% + 2px);
     left: 0;
     background: white;
     box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
     border-radius: 12px;
     padding: 8px 0;
     min-width: 220px;
     z-index: 9999;

     display: block !important;
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transform: translateY(8px);
     transition: opacity .22s ease, transform .22s ease, visibility .22s;
 }

 .ni:hover>.dd1 {
     opacity: 1;
     visibility: visible;
     pointer-events: all;
     transform: translateY(0);
 }

 /* L1 item row */
 .di1 {
     position: relative;
 }

 /* Bridge: fills gap between L1 row and L2 panel */
 .di1::after {
     content: '';
     position: absolute;
     top: 0;
     bottom: 0;
     right: -10px;
     width: 12px;
     z-index: 1;
 }

 .di1>a {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 9px 16px;
     padding-right: 24px;
     font-size: .85rem;
     font-weight: 500;
     color: var(--text-dark);
     border-radius: 7px;
     margin: 1px 6px;
     cursor: pointer;
     transition: background .18s, color .18s, padding-left .18s;
     white-space: nowrap;
 }

 .di1>a .ar {
     font-size: .6rem;
     color: #323131;
     transition: color .2s;
     flex-shrink: 0;
 }

 .di1:hover>a {
     background: linear-gradient(135deg, rgba(49, 173, 173, .1), rgba(255, 45, 141, .1));
     color: var(--primary-pink);
     padding-left: 20px;
 }

 .di1:hover>a .ar {
     color: var(--primary-pink);
 }

 /* L2 Submenu panel */
 .dd2 {
     position: absolute;
     top: -8px;
     left: calc(100% + 4px);
     background: white;
     box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
     border-radius: 12px;
     padding: 8px 0;
     min-width: 220px;
     z-index: 9999;

     display: block !important;
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transform: translateX(8px);
     transition: opacity .22s ease, transform .22s ease, visibility .22s;
 }

 .di1:hover>.dd2 {
     opacity: 1;
     visibility: visible;
     pointer-events: all;
     transform: translateX(0);
 }

 /* Flat links inside dd2 */
 .dd2>a {
     display: block;
     padding: 9px 16px;
     font-size: .83rem;
     font-weight: 500;
     color: var(--text-dark);
     border-radius: 7px;
     margin: 1px 6px;
     cursor: pointer;
     transition: background .18s, color .18s, padding-left .18s;
     white-space: nowrap;
 }

 .dd2>a:hover {
     background: linear-gradient(135deg, rgba(49, 173, 173, .1), rgba(255, 45, 141, .1));
     color: var(--primary-pink);
     padding-left: 20px;
 }

 /* L2 item row (has L3) */
 .di2 {
     position: relative;
 }

 /* Bridge for L2→L3 */
 .di2::after {
     content: '';
     position: absolute;
     top: 0;
     bottom: 0;
     right: -10px;
     width: 12px;
     z-index: 1;
 }

 .di2>a {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 9px 16px;
     padding-right: 24px;
     font-size: .83rem;
     font-weight: 500;
     color: var(--text-dark);
     border-radius: 7px;
     margin: 1px 6px;
     cursor: pointer;
     transition: background .18s, color .18s, padding-left .18s;
     white-space: nowrap;
 }

 .di2>a .ar {
     font-size: .6rem;
     color: #ccc;
     transition: color .2s;
     flex-shrink: 0;
 }

 .di2:hover>a {
     background: linear-gradient(135deg, rgba(49, 173, 173, .1), rgba(255, 45, 141, .1));
     color: var(--primary-pink);
     padding-left: 20px;
 }

 .di2:hover>a .ar {
     color: var(--primary-pink);
 }

 /* L3 panel */
 .dd3 {
     position: absolute;
     top: -8px;
     left: calc(100% + 4px);
     background: white;
     box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
     border-radius: 12px;
     padding: 8px 0;
     min-width: 200px;
     z-index: 9999;

     display: block !important;
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transform: translateX(8px);
     transition: opacity .22s ease, transform .22s ease, visibility .22s;
 }

 .di2:hover>.dd3 {
     opacity: 1;
     visibility: visible;
     pointer-events: all;
     transform: translateX(0);
 }

 .dd3>a {
     display: block;
     padding: 9px 16px;
     font-size: .81rem;
     font-weight: 500;
     color: var(--text-dark);
     border-radius: 7px;
     margin: 1px 6px;
     cursor: pointer;
     transition: background .18s, color .18s, padding-left .18s;
     white-space: nowrap;
 }

 .dd3>a:hover {
     background: linear-gradient(135deg, rgba(49, 173, 173, .1), rgba(255, 45, 141, .1));
     color: var(--primary-pink);
     padding-left: 20px;
 }

 /* Divider */
 .dv {
     height: 1px;
     background: #f2f2f2;
     margin: 4px 12px;
 }

 /* =================== QUIZ SECTION - ENHANCED =================== */
 .quiz-section {
     background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
     /* border-top: 1px solid var(--line); */
     border-bottom: 1px solid var(--line);
     padding: 2rem 0;
     /* margin-top: -40px; */
     /* margin: 40px 0; */
     /* margin-top: 40px; */
     z-index: 1;
     /* Lower z-index to keep quiz section behind */
     position: relative;
 }

 .quiz-section-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .quiz-section-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 8px 16px;
     background: var(--teal-light);
     border: 1px solid rgba(49, 173, 173, .2);
     border-radius: 999px;
     color: var(--teal-2);
     font-weight: 700;
     font-size: 13px;
     margin-bottom: 16px;
 }

 .quiz-section-title {
     font-size: clamp(28px, 4vw, 42px);
     font-weight: 900;
     color: var(--dark);
     margin: 0 0 12px;
     letter-spacing: -0.5px;
 }

 .quiz-section-title .highlight {
     color: var(--pink);
 }

 .quiz-section-sub {
     color: var(--muted);
     font-size: 16px;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 /* Quiz Category Tabs */
 .quiz-tabs {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 10px;
     margin-bottom: 30px;
 }

 .quiz-tab {
     padding: 10px 20px;
     border-radius: 999px;
     font-weight: 700;
     font-size: 14px;
     border: 2px solid var(--border);
     background: #fff;
     color: var(--muted);
     cursor: pointer;
     transition: var(--transition);
 }

 .quiz-tab:hover {
     border-color: var(--teal);
     color: var(--teal);
 }

 .quiz-tab.active {
     background: linear-gradient(135deg, var(--teal), var(--pink));
     border-color: transparent;
     color: #fff;
     box-shadow: 0 8px 20px rgba(49, 173, 173, .25);
 }

 /* Quiz Cards Grid */
 .quiz-cards-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 20px;
 }

 .quiz-card {
     background: #fff;
     border: 1px solid var(--border);
     border-radius: var(--radius);
     overflow: hidden;
     transition: var(--transition);
     cursor: pointer;
     position: relative;
 }

 .quiz-card:hover {
     transform: translateY(-6px);
     box-shadow: var(--shadow-hover);
     border-color: rgba(49, 173, 173, .3);
 }

 .quiz-card-badge {
     position: absolute;
     top: 12px;
     left: 12px;
     padding: 6px 12px;
     border-radius: 6px;
     font-weight: 800;
     font-size: 11px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     z-index: 2;
 }

 .quiz-card-badge.gaming {
     background: linear-gradient(135deg, #8b5cf6, #a78bfa);
     color: #fff;
 }

 .quiz-card-badge.office {
     background: linear-gradient(135deg, var(--teal), #0fc1b8);
     color: #fff;
 }

 .quiz-card-badge.ergonomic {
     background: linear-gradient(135deg, var(--pink), var(--pink-2));
     color: #fff;
 }

 .quiz-card-badge.home {
     background: linear-gradient(135deg, #f59e0b, #fbbf24);
     color: #fff;
 }

 .quiz-card-badge.budget {
     background: linear-gradient(135deg, #10b981, #34d399);
     color: #fff;
 }

 .quiz-card-badge.desk {
     background: linear-gradient(135deg, #3b82f6, #60a5fa);
     color: #fff;
 }

 .quiz-card-img {
     height: 160px;
     background: linear-gradient(135deg, #f8fafc, #f1f5f9);
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     position: relative;
 }

 .quiz-card-img img {
     max-height: 140px;
     max-width: 90%;
     object-fit: contain;
     transition: var(--transition);
 }

 .quiz-card:hover .quiz-card-img img {
     transform: scale(1.08);
 }

 .quiz-card-body {
     padding: 20px;
 }

 .quiz-card-title {
     font-weight: 800;
     font-size: 1.05rem;
     color: var(--dark);
     margin: 0 0 8px;
 }

 .quiz-card-desc {
     color: var(--muted);
     font-size: 14px;
     line-height: 1.5;
     margin: 0 0 16px;
 }

 .quiz-card-btn {
     width: 100%;
     padding: 12px 20px;
     border-radius: 10px;
     font-weight: 700;
     font-size: 14px;
     border: none;
     background: linear-gradient(135deg, var(--teal), #0fc1b8);
     color: #fff;
     text-decoration: none !important;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     transition: var(--transition);
     box-shadow: 0 4px 14px rgba(49, 173, 173, .2);
 }

 .quiz-card-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 24px rgba(49, 173, 173, .3);
     color: #fff;
 }

 /* Quiz CTA Banner */
 .quiz-cta-banner {
     margin-top: 40px;
     background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
     border-radius: var(--radius);
     padding: 40px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 30px;
     flex-wrap: wrap;
     position: relative;
     overflow: hidden;
 }

 .quiz-cta-banner::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -20%;
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(49, 173, 173, .15), transparent 70%);
     pointer-events: none;
 }

 .quiz-cta-banner::after {
     content: '';
     position: absolute;
     bottom: -50%;
     left: -10%;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, rgba(255, 45, 141, .1), transparent 70%);
     pointer-events: none;
 }

 .quiz-cta-content {
     position: relative;
     z-index: 1;
 }

 .quiz-cta-title {
     font-weight: 900;
     font-size: clamp(22px, 3vw, 28px);
     color: #fff;
     margin: 0 0 8px;
 }

 .quiz-cta-sub {
     color: rgba(255, 255, 255, .7);
     font-size: 15px;
     margin: 0;
 }

 .quiz-cta-btn {
     position: relative;
     z-index: 1;
     padding: 16px 32px;
     border-radius: 12px;
     font-weight: 800;
     font-size: 16px;
     border: none;
     background: linear-gradient(135deg, var(--pink), var(--pink-2));
     color: #fff;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     box-shadow: 0 14px 28px rgba(255, 45, 141, .3);
     transition: var(--transition);
     text-decoration: none !important;
 }

 .quiz-cta-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 18px 36px rgba(255, 45, 141, .4);
     color: #fff;
 }

 @media (max-width: 768px) {
     .quiz-cta-banner {
         padding: 30px 24px;
         text-align: center;
         justify-content: center;
     }

     .quiz-cta-content {
         text-align: center;
     }
 }



 /* Utility */
 .muted {
     color: var(--muted);
 }

 .divider {
     height: 1px;
     background: var(--border);
 }

 .scroll-mt {
     scroll-margin-top: 100px;
 }


 /* =================== COMPARISON SECTION =================== */
 .comparison-section {
     background: linear-gradient(180deg, #ffffff 0%, rgba(49, 173, 173, .03) 50%, #ffffff 100%);
     position: relative;
     overflow: hidden;
     padding: 2rem 0;
 }

 .comparison-section::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(255, 45, 141, .08), transparent 70%);
     pointer-events: none;
 }

 .comparison-section::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(49, 173, 173, .08), transparent 70%);
     pointer-events: none;
 }

 .section-header {
     margin-bottom: 30px;
     position: relative;
     z-index: 1;
 }

 .comparison-section-header {
     margin-bottom: 30px;
     position: relative;
     z-index: 1;
 }

 .section-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: linear-gradient(135deg, rgba(49, 173, 173, .12), rgba(255, 45, 141, .12));
     color: var(--teal);
     padding: 8px 20px;
     border-radius: 999px;
     font-weight: 700;
     font-size: 13px;
     margin-bottom: 16px;
     border: 1px solid rgba(49, 173, 173, .20);
 }

 .section-title {
     font-weight: 900;
     font-size: clamp(36px, 4vw, 56px);
     line-height: 1.1;
     margin: 0 0 20px;
 }

 .section-title .pink {
     background: linear-gradient(135deg, var(--pink), #ff6b9d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .section-subtitle {
     font-size: clamp(16px, 1.3vw, 20px);
     color: var(--muted);
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .comparison-section-title {
     font-weight: 900;
     font-size: clamp(36px, 4vw, 56px);
     line-height: 1.1;
     margin: 0 0 20px;
 }

 .comparison-section-title .pink {
     background: linear-gradient(135deg, var(--pink), #ff6b9d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .comparison-section-subtitle {
     font-size: clamp(16px, 1.3vw, 20px);
     color: var(--muted);
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .comparison-wrapper {
     position: relative;
     z-index: 1;
 }

 .comparison-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 28px;
     margin-bottom: 50px;
 }

 .comparison-card {
     background: #fff;
     border: 2px solid transparent;
     border-radius: 24px;
     padding: 40px 28px;
     text-align: center;
     transition: .3s ease;
     box-shadow: 0 8px 30px rgba(15, 23, 42, .08);
     position: relative;
     overflow: hidden;
 }

 .comparison-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, var(--teal), var(--pink));
     opacity: 0;
     transition: .3s ease;
 }

 .comparison-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 50px rgba(15, 23, 42, .15);
     border-color: rgba(49, 173, 173, .20);
 }

 .comparison-card:hover::before {
     opacity: 1;
 }

 .comparison-icon {
     width: 90px;
     height: 90px;
     margin: 0 auto 24px;
     background: linear-gradient(135deg, rgba(49, 173, 173, .10), rgba(255, 45, 141, .10));
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--pink);
     position: relative;
     transition: .3s ease;
 }

 .comparison-card:hover .comparison-icon {
     background: linear-gradient(135deg, var(--teal), var(--pink));
     color: #fff;
     transform: scale(1.05) rotate(5deg);
 }

 .comparison-card h3 {
     font-weight: 900;
     font-size: 24px;
     margin-bottom: 14px;
     color: var(--dark);
 }

 .comparison-card p {
     color: var(--muted);
     font-size: 15px;
     line-height: 1.7;
     margin-bottom: 24px;
     min-height: 50px;
 }

 .comparison-stats {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-bottom: 24px;
     padding: 16px;
     background: rgba(49, 173, 173, .04);
     border-radius: 12px;
 }

 .comparison-stat {
     text-align: center;
 }

 .comparison-stat-number {
     font-size: 24px;
     font-weight: 900;
     color: var(--teal);
     display: block;
 }

 .comparison-stat-label {
     font-size: 11px;
     color: var(--muted);
     text-transform: uppercase;
     font-weight: 700;
     letter-spacing: .5px;
 }

 .comparison-link {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     color: #fff;
     background: linear-gradient(135deg, var(--teal), var(--pink));
     padding: 12px 24px;
     border-radius: 10px;
     font-weight: 700;
     font-size: 15px;
     text-decoration: none;
     transition: .2s ease;
     box-shadow: 0 8px 16px rgba(49, 173, 173, .20);
 }

 .comparison-link:hover {
     transform: translateY(-2px);
     box-shadow: 0 12px 24px rgba(49, 173, 173, .30);
     color: #fff;
 }

 .comparison-cta {
     text-align: center;
     background: linear-gradient(135deg, rgba(49, 173, 173, .08), rgba(255, 45, 141, .08));
     border-radius: 20px;
     padding: 40px 40px;
     margin-top: 50px;
 }

 .comparison-cta h3 {
     font-size: 28px;
     font-weight: 900;
     margin-bottom: 12px;
 }

 .comparison-cta p {
     color: var(--muted);
     font-size: 16px;
     margin-bottom: 28px;
 }

 .comparison-cta-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 16px 40px;
     background: linear-gradient(135deg, var(--teal), var(--pink));
     color: #fff;
     border-radius: 12px;
     font-weight: 800;
     font-size: 18px;
     text-decoration: none;
     box-shadow: 0 12px 28px rgba(49, 173, 173, .25);
     transition: .2s ease;
 }

 .comparison-cta-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 16px 36px rgba(49, 173, 173, .35);
     color: #fff;
 }

 /* =================== DEALS SECTION =================== */
 .deals-section {
     background: linear-gradient(135deg, rgba(49, 173, 173, 0.05), rgba(255, 45, 141, 0.05));
     padding: 2rem 0;
 }

 .deals-header {
     text-align: center;
     margin-bottom: 3rem;
 }

 .deals-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     color: white;
     padding: 0.5rem 1.5rem;
     border-radius: 30px;
     font-weight: 700;
     font-size: 0.9rem;
     margin-bottom: 1rem;
 }

 .deals-title {
     font-size: 3rem;
     font-weight: 900;
     margin-bottom: 1rem;
 }

 .deals-title .highlight {
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .deals-subtitle {
     color: var(--text-gray);
     font-size: 1.2rem;
     max-width: 700px;
     margin: 0 auto 2rem;
     line-height: 1.6;
 }

 .deals-content {
     display: grid;
     grid-template-columns: 1fr 400px;
     gap: 3rem;
     align-items: start;
 }

 .deals-left {
     background: white;
     border-radius: 20px;
     padding: 3rem;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
 }

 .deals-list {
     display: flex;
     flex-direction: column;
     gap: 2rem;
 }

 .deal-item {
     display: flex;
     gap: 1.5rem;
     align-items: start;
 }

 .deal-icon {
     width: 60px;
     height: 60px;
     border-radius: 15px;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
     flex-shrink: 0;
 }

 .deal-content h3 {
     font-size: 1.3rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
 }

 .deal-content p {
     color: var(--text-gray);
     line-height: 1.6;
     margin: 0;
 }

 .deals-cta-box {
     position: sticky;
     top: 100px;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     border-radius: 20px;
     padding: 2.5rem;
     color: white;
     text-align: center;
     box-shadow: 0 15px 45px rgba(255, 45, 141, 0.3);
 }

 .deals-cta-icon {
     width: 80px;
     height: 80px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     margin: 0 auto 1.5rem;
 }

 .deals-cta-box h3 {
     font-size: 1.8rem;
     font-weight: 800;
     margin-bottom: 1rem;
 }

 .deals-cta-box p {
     opacity: 0.95;
     margin-bottom: 2rem;
     line-height: 1.6;
 }

 .deals-cta-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.8rem;
     background: white;
     color: var(--primary-teal);
     padding: 1rem 2rem;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     font-size: 1.1rem;
     transition: all 0.3s;
 }

 .deals-cta-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     color: var(--primary-teal);
 }

 .deals-note {
     margin-top: 1.5rem;
     font-size: 0.85rem;
     opacity: 0.9;
 }

 /* =================== REVIEWS SECTION =================== */
 .reviews-testimonials-section {
     background: white;
     padding: 5rem 0;
 }

 .reviews-testimonials-header {
     text-align: center;
     margin-bottom: 3rem;
 }

 .reviews-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     color: white;
     padding: 0.5rem 1.5rem;
     border-radius: 30px;
     font-weight: 700;
     font-size: 0.9rem;
     margin-bottom: 1rem;
 }

 .reviews-title {
     font-size: 3rem;
     font-weight: 900;
     margin-bottom: 1rem;
 }

 .reviews-title .highlight {
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .reviews-subtitle {
     color: var(--text-gray);
     font-size: 1.2rem;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .reviews-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
 }

 .review-card {
     background: white;
     border-radius: 20px;
     padding: 2rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     transition: all 0.3s;
     border: 1px solid rgba(0, 0, 0, 0.06);
 }

 .review-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
 }

 .review-header {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1.5rem;
 }

 .review-avatar {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     object-fit: cover;
 }

 .review-user-info h4 {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 0.2rem;
 }

 .review-stars {
     color: #ffc107;
     font-size: 1rem;
 }

 .review-text {
     color: var(--text-gray);
     line-height: 1.8;
     margin-bottom: 1.5rem;
     font-style: italic;
 }

 .review-product {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     color: var(--primary-teal);
     font-size: 0.9rem;
     font-weight: 600;
 }

 .review-verified {
     display: inline-flex;
     align-items: center;
     gap: 0.4rem;
     background: rgba(49, 173, 173, 0.1);
     color: var(--primary-teal);
     padding: 0.3rem 0.8rem;
     border-radius: 20px;
     font-size: 0.85rem;
     font-weight: 600;
     margin-top: 1rem;
 }

 .reviews-cta {
     text-align: center;
     margin-top: 3rem;
 }

 .reviews-cta-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.8rem;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     color: white;
     padding: 1rem 2.5rem;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     font-size: 1.1rem;
     transition: all 0.3s;
 }

 .reviews-cta-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(255, 45, 141, 0.4);
     color: white;
 }

 /* Responsive */
 @media (max-width: 1200px) {
     .deals-content {
         grid-template-columns: 1fr;
     }

     .deals-cta-box {
         position: relative;
         top: 0;
     }

     .reviews-grid {
         grid-template-columns: repeat(2, 1fr);
     }

 }

 @media (max-width: 768px) {

     .deals-title,
     .reviews-title {
         font-size: 2rem;
     }

     .deals-left {
         padding: 1rem;
     }

     .reviews-grid {
         grid-template-columns: 1fr;
     }

     .nav-menu {
         flex-wrap: wrap;
     }
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 .section-card {
     background: var(--card);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     box-shadow: var(--shadow-soft);
     overflow: hidden;
 }

 /* FAQ */
 .accordion-button {
     font-weight: 700;
     font-size: .98rem;
     padding: 18px 20px;
 }

 .accordion-button:not(.collapsed) {
     color: var(--teal-2);
     background: var(--teal-light);
     box-shadow: none;
 }

 .accordion-button:focus {
     box-shadow: none;
     border-color: var(--border);
 }

 .accordion-body {
     padding: 16px 20px;
     color: var(--muted);
     line-height: 1.6;
 }

 .section-head {
     padding: 20px 22px 0;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px;
 }

 /* Article Card */
 .article-card {
     background: white;
     border-radius: 18px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     text-decoration: none;
     color: inherit;
     display: flex;
     flex-direction: column;
     height: 100%;
     border: 3px solid transparent;
 }

 .article-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(49, 173, 173, 0.25);
     border-color: var(--primary-teal);
 }

 .article-image-wrapper {
     position: relative;
     height: 220px;
     overflow: hidden;
 }

 .article-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .article-card:hover .article-image {
     transform: scale(1.08);
 }

 .article-badge {
     position: absolute;
     top: 1rem;
     left: 1rem;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     color: white;
     padding: 0.4rem 1rem;
     border-radius: 50px;
     font-size: 0.75rem;
     font-weight: 700;
 }

 .article-content {
     padding: 1.5rem;
     display: flex;
     flex-direction: column;
     flex: 1;
 }

 .article-title {
     font-size: 1.15rem;
     font-weight: 700;
     margin-bottom: 0.8rem;
     line-height: 1.4;
     transition: all 0.3s ease;
 }

 .article-card:hover .article-title {
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .article-excerpt {
     font-size: 0.9rem;
     color: var(--text-gray);
     line-height: 1.6;
     margin-bottom: auto;
 }

 .article-meta {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 1rem;
     margin-top: 1.2rem;
     padding-top: 1rem;
     border-top: 1px solid #e5e5e5;
 }

 .article-author {
     display: flex;
     align-items: center;
     gap: 0.8rem;
 }

 .author-avatar {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     object-fit: cover;
 }

 .author-info {
     display: flex;
     flex-direction: column;
     gap: 0.2rem;
 }

 .author-name {
     font-size: 0.85rem;
     font-weight: 600;
     line-height: 1;
 }

 .article-date {
     font-size: 0.75rem;
     color: var(--text-gray);
     line-height: 1;
 }

 .article-stats {
     display: flex;
     gap: 0.8rem;
     align-items: center;
 }

 .read-time {
     font-size: 0.85rem;
     color: var(--text-gray);
     display: flex;
     align-items: center;
     gap: 0.3rem;
 }

 .arrow-btn {
     width: 36px;
     height: 36px;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     transition: all 0.3s ease;
 }

 .article-card:hover .arrow-btn {
     transform: scale(1.1);
 }

 /* =================== REVIEWS SECTION =================== */
 .reviews-section {
     background: linear-gradient(135deg, rgba(49, 173, 173, 0.08), rgba(255, 45, 141, 0.08));
     padding: 2rem 0;
 }

 .reviews-header {
     text-align: center;
     margin-bottom: 4rem;
 }

 .reviews-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: white;
     color: var(--primary-teal);
     padding: 0.5rem 1.5rem;
     border-radius: 30px;
     font-weight: 700;
     font-size: 0.9rem;
     margin-bottom: 1rem;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .reviews-title {
     font-size: 3rem;
     font-weight: 900;
     margin-bottom: 1rem;
 }

 .reviews-title .highlight {
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .reviews-subtitle {
     color: var(--text-gray);
     font-size: 1.2rem;
     max-width: 800px;
     margin: 0 auto 2rem;
     line-height: 1.6;
 }

 /* Main Rating Content - 2 Column Layout */
 .rating-main-content {
     display: grid;
     grid-template-columns: 400px 1fr;
     gap: 3rem;
     margin-bottom: 2rem;
     align-items: start;
 }

 /* Left: Rating Categories List */
 .rating-categories-section {
     background: white;
     border-radius: 20px;
     padding: 2.5rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     position: sticky;
     top: 100px;
 }

 .section-subtitle {
     font-size: 1.3rem;
     font-weight: 800;
     margin-bottom: 2rem;
     color: var(--text-dark);
 }

 .rating-categories-list {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .rating-category-item {
     display: flex;
     align-items: center;
     gap: 1.2rem;
     padding: 1.2rem;
     background: linear-gradient(135deg, rgba(49, 173, 173, 0.05), rgba(255, 45, 141, 0.05));
     border-radius: 12px;
     border: 1px solid rgba(49, 173, 173, 0.1);
     transition: all 0.3s ease;
 }

 .rating-category-item:hover {
     transform: translateX(5px);
     border-color: var(--primary-teal);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
 }

 .category-icon-small {
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, rgba(49, 173, 173, 0.15), rgba(255, 45, 141, 0.15));
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .category-icon-small i {
     font-size: 1.4rem;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .category-info h4 {
     font-size: 1.05rem;
     font-weight: 700;
     margin-bottom: 0.3rem;
     color: var(--text-dark);
 }

 .category-info p {
     font-size: 0.85rem;
     color: var(--text-gray);
     margin: 0;
     line-height: 1.4;
 }

 /* Right: Example Rating Card */
 .example-rating-section {
     background: white;
     border-radius: 20px;
     padding: 2.5rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }

 .example-rating-card {
     /* Content wrapper */
 }

 .product-example-header {
     display: flex;
     align-items: center;
     gap: 1.2rem;
     padding-bottom: 2rem;
     margin-bottom: 2rem;
     border-bottom: 2px solid rgba(0, 0, 0, 0.08);
 }

 .product-example-icon {
     width: 70px;
     height: 70px;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 2rem;
     flex-shrink: 0;
 }

 .product-example-name h4 {
     font-size: 1.6rem;
     font-weight: 800;
     margin-bottom: 0.3rem;
     color: var(--text-dark);
 }

 .product-example-name p {
     font-size: 1rem;
     color: var(--text-gray);
     margin: 0;
 }

 /* Rating Bars */
 .rating-bars {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
     margin-bottom: 2rem;
 }

 .rating-bar-item {
     display: flex;
     flex-direction: column;
     gap: 0.6rem;
 }

 .bar-label {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 1rem;
     font-weight: 600;
     color: var(--text-dark);
 }

 .bar-score {
     font-weight: 800;
     font-size: 1.1rem;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .bar-track {
     height: 14px;
     background: #f0f0f0;
     border-radius: 10px;
     overflow: hidden;
 }

 .bar-fill {
     height: 100%;
     background: linear-gradient(90deg, #31adad, #ff2d8d);
     border-radius: 10px;
     transition: width 1s ease;
 }

 .overall-rating {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1.8rem;
     background: linear-gradient(135deg, rgba(49, 173, 173, 0.12), rgba(255, 45, 141, 0.12));
     border-radius: 16px;
     margin-top: 1.5rem;
 }

 .overall-label {
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--text-dark);
 }

 .overall-score {
     font-size: 3rem;
     font-weight: 900;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 /* Rating Methodology Section */
 .rating-methodology-section {
     margin-bottom: 2rem;
 }

 .methodology-title {
     text-align: center;
     font-size: 2rem;
     font-weight: 800;
     margin-bottom: 2.5rem;
     color: var(--text-dark);
 }

 .methodology-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 2rem;
 }

 .methodology-card {
     background: white;
     border-radius: 16px;
     padding: 2rem 1.5rem;
     text-align: center;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     border: 2px solid transparent;
 }

 .methodology-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
     border-color: var(--primary-teal);
 }

 .methodology-card .method-icon {
     width: 60px;
     height: 60px;
     margin: 0 auto 1.2rem;
     background: linear-gradient(135deg, rgba(49, 173, 173, 0.1), rgba(255, 45, 141, 0.1));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .methodology-card .method-icon i {
     font-size: 1.8rem;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .methodology-card h5 {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 0.8rem;
     color: var(--text-dark);
 }

 .methodology-card p {
     font-size: 0.9rem;
     color: var(--text-gray);
     margin: 0;
     line-height: 1.5;
 }

 /* CTA Banner */
 .reviews-cta-banner {
     background: white;
     border-radius: 20px;
     padding: 2rem;
     text-align: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     border: 2px solid transparent;
     background-image:
         linear-gradient(white, white),
         linear-gradient(135deg, #31adad, #ff2d8d);
     background-origin: border-box;
     background-clip: padding-box, border-box;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 2rem;
 }

 .cta-content {
     text-align: left;
     flex: 1;
 }

 .reviews-cta-banner h3 {
     font-size: 2rem;
     font-weight: 900;
     margin-bottom: 0.5rem;
 }

 .reviews-cta-banner p {
     color: var(--text-gray);
     font-size: 1.05rem;
     margin: 0;
 }

 .reviews-cta-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.8rem;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     color: white;
     padding: 1.2rem 2.5rem;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     font-size: 1.1rem;
     transition: all 0.3s;
     white-space: nowrap;
 }

 .reviews-cta-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(255, 45, 141, 0.4);
     color: white;
 }

 /* =================== RATING BAR ANIMATIONS =================== */
 /* Animation for Progress Bars */
 .bar-fill {
     width: 0 !important;
     transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1) !important;
 }

 .bar-fill.animate {
     width: var(--target-width) !important;
 }

 /* Fade in animation for rating bars */
 .rating-bar-item {
     opacity: 0;
     transform: translateX(-20px);
     transition: all 0.6s ease;
 }

 .rating-bar-item.fade-in {
     opacity: 1;
     transform: translateX(0);
 }

 /* Stagger animation delays */
 .rating-bar-item:nth-child(1) {
     transition-delay: 0.1s;
 }

 .rating-bar-item:nth-child(2) {
     transition-delay: 0.2s;
 }

 .rating-bar-item:nth-child(3) {
     transition-delay: 0.3s;
 }

 .rating-bar-item:nth-child(4) {
     transition-delay: 0.4s;
 }

 .rating-bar-item:nth-child(5) {
     transition-delay: 0.5s;
 }

 .rating-bar-item:nth-child(6) {
     transition-delay: 0.6s;
 }

 /* Overall rating scale animation */
 .overall-rating {
     opacity: 0;
     transform: scale(0.9);
     transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
     transition-delay: 0.8s;
 }

 .overall-rating.fade-in {
     opacity: 1;
     transform: scale(1);
 }


 /* Responsive */
 @media (max-width: 1200px) {
     .deals-content {
         grid-template-columns: 1fr;
     }

     .deals-cta-box {
         position: relative;
         top: 0;
     }

     .rating-main-content {
         grid-template-columns: 1fr;
     }

     .rating-categories-section {
         position: relative;
         top: 0;
     }

     .methodology-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 768px) {

     .deals-title,
     .reviews-title {
         font-size: 2rem;
     }

     .deals-left {
         padding: 1rem;
     }

     .methodology-grid {
         grid-template-columns: 1fr;
     }

     .reviews-cta-banner {
         padding: 2rem;
         flex-direction: column;
         text-align: center;
     }

     .cta-content {
         text-align: center;
     }

     .nav-menu {
         flex-wrap: wrap;
     }
 }

 /* Coffee Support Box */
 .coffee-support-box {
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     border-radius: 20px;
     padding: 2.2rem 2rem;
     color: #fff;
     text-align: center;
     box-shadow: 0 18px 45px rgba(128, 192, 218, 0.3);
     position: relative;
     overflow: hidden;
 }

 .coffee-support-box::before {
     content: '';
     position: absolute;
     top: -50%;
     right: -50%;
     width: 200px;
     height: 200px;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     border-radius: 50%;
 }

 .coffee-icon-wrapper {
     width: 70px;
     height: 70px;
     margin: 0 auto 1.5rem;
     border-radius: 50%;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     z-index: 1;
 }

 .coffee-icon-wrapper i {
     font-size: 2rem;
     color: #fff;
 }

 .coffee-title {
     font-size: 1.75rem;
     font-weight: 900;
     line-height: 1.25;
     margin: 0 0 1rem;
     color: #fff;
 }

 .coffee-text {
     margin: 0 0 1.5rem;
     color: #fff;
     line-height: 1.6;
     font-size: .95rem;
     font-weight: 500;
 }

 /* Coffee Amount Options */
 .coffee-amount-options {
     display: flex;
     gap: 0.8rem;
     margin-bottom: 1.2rem;
     justify-content: center;
 }

 .coffee-amount-btn {
     flex: 1;
     padding: 0.9rem 0.5rem;
     border-radius: 12px;
     border: 2px solid rgba(45, 45, 45, 0.2);
     background: rgba(255, 255, 255, 0.3);
     color: #fff;
     font-weight: 700;
     font-size: 1rem;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 0.4rem;
 }

 .coffee-amount-btn i {
     font-size: 1.1rem;
     color: #fff;
 }

 .coffee-amount-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(45, 45, 45, 0.15);
     background: rgba(255, 255, 255, 0.5);
 }

 .coffee-amount-btn.active {
     background: #31adad;
     color: #fff;
     border-color: #31adad;
     box-shadow: 0 8px 20px #ff2d8d;
 }

 .coffee-amount-btn.active i {
     color: #fff;
 }

 /* Supporter Name Input */
 .supporter-name-input {
     width: 100%;
     padding: 1rem 1.1rem;
     border-radius: 14px;
     border: 2px solid rgba(45, 45, 45, 0.15);
     background: rgba(255, 255, 255, 0.6);
     color: #2d2d2d;
     outline: none;
     margin-bottom: 1rem;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .supporter-name-input::placeholder {
     color: rgba(45, 45, 45, 0.5);
 }

 .supporter-name-input:focus {
     border-color: #2d2d2d;
     background: rgba(255, 255, 255, 0.8);
 }

 /* Buy Coffee Button */
 .buy-coffee-button {
     width: 100%;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     color: #fff;
     padding: 1.1rem;
     border-radius: 14px;
     border: none;
     font-weight: 700;
     font-size: 1.05rem;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.6rem;
     box-shadow: 0 14px 30px rgba(45, 45, 45, 0.3);
     transition: all 0.3s ease;
 }

 .buy-coffee-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 18px 40px rgba(45, 45, 45, 0.4);
     background: #ff2d8d;
 }

 .buy-coffee-button i {
     font-size: 1.2rem;
     animation: heartbeat 1.5s ease-in-out infinite;
 }

 @keyframes heartbeat {

     0%,
     100% {
         transform: scale(1);
     }

     10%,
     30% {
         transform: scale(1.1);
     }

     20%,
     40% {
         transform: scale(1);
     }
 }

 .coffee-note {
     margin: 1rem 0 0;
     font-size: .85rem;
     color: #4a4a4a;
     font-weight: 600;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
 }

 .coffee-note i {
     color: #27ae60;
 }

 /* Write for Us Box */
 .write-for-us-box {
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     border-radius: 20px;
     padding: 2.2rem 2rem;
     color: #fff;
     text-align: center;
     box-shadow: 0 18px 45px rgba(127, 151, 255, 0.4);
     position: relative;
     overflow: hidden;
 }

 .write-for-us-box::before {
     content: '';
     position: absolute;
     top: -30%;
     right: -30%;
     width: 250px;
     height: 250px;
     background: rgba(255, 255, 255, 0.08);
     border-radius: 50%;
     pointer-events: none;
 }

 .write-for-us-box::after {
     content: '';
     position: absolute;
     bottom: -40%;
     left: -40%;
     width: 300px;
     height: 300px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 50%;
     pointer-events: none;
 }

 .write-icon-wrapper {
     width: 70px;
     height: 70px;
     margin: 0 auto 1.5rem;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(10px);
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     z-index: 1;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .write-icon-wrapper i {
     font-size: 1.8rem;
     color: #fff;
 }

 .write-title {
     font-size: 1.85rem;
     font-weight: 900;
     line-height: 1.25;
     margin: 0 0 1rem;
     color: #fff;
     position: relative;
     z-index: 1;
 }

 .write-text {
     margin: 0 0 1.8rem;
     color: rgba(255, 255, 255, 0.95);
     line-height: 1.6;
     font-size: .95rem;
     font-weight: 500;
     position: relative;
     z-index: 1;
 }

 /* Write Benefits */
 .write-benefits {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1rem;
     margin-bottom: 1.5rem;
     position: relative;
     z-index: 1;
 }

 .benefit-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 0.5rem;
     padding: 1rem 0.5rem;
     background: rgba(255, 255, 255, 0.15);
     backdrop-filter: blur(10px);
     border-radius: 12px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     transition: all 0.3s ease;
 }

 .benefit-item:hover {
     transform: translateY(-3px);
     background: rgba(255, 255, 255, 0.25);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 .benefit-item i {
     font-size: 1.5rem;
     color: #fff;
 }

 .benefit-item span {
     font-size: 0.8rem;
     font-weight: 700;
     text-align: center;
     line-height: 1.2;
 }

 /* Write Topics */
 .write-topics {
     display: flex;
     flex-wrap: wrap;
     gap: 0.6rem;
     justify-content: center;
     margin-bottom: 1.5rem;
     position: relative;
     z-index: 1;
 }

 .topic-tag {
     padding: 0.5rem 1rem;
     background: rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.3);
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
     color: #fff;
     transition: all 0.3s ease;
 }

 .topic-tag:hover {
     background: rgba(255, 255, 255, 0.3);
     transform: translateY(-2px);
 }

 /* Apply Writer Button */
 .apply-writer-button {
     width: 100%;
     background: #fff;
     color: #31adad;
     padding: 1.1rem;
     border-radius: 14px;
     border: none;
     font-weight: 800;
     font-size: 1.05rem;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.7rem;
     box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
     text-decoration: none;
     position: relative;
     z-index: 1;
 }

 .apply-writer-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     color: #fff;
 }

 .apply-writer-button i {
     font-size: 1.1rem;
     transition: transform 0.3s ease;
 }

 .apply-writer-button:hover i {
     transform: translateX(3px);
 }

 .write-note {
     margin: 1rem 0 0;
     font-size: .85rem;
     color: rgba(255, 255, 255, 0.9);
     font-weight: 600;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
     position: relative;
     z-index: 1;
 }

 .write-note i {
     color: #fff;
     font-size: 1rem;
 }

 /* Responsive adjustments */
 @media (max-width: 768px) {
     .write-benefits {
         grid-template-columns: 1fr;
         gap: 0.8rem;
     }

     .benefit-item {
         flex-direction: row;
         justify-content: center;
         padding: 0.8rem 1rem;
     }
 }

 /* Swiper Navigation Button Styling */
 .swiper-button-prev,
 .swiper-button-next {
     width: 50px !important;
     height: 50px !important;
     border-radius: 50% !important;
     background: #fff !important;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
     transition: all 0.3s ease !important;
 }

 .swiper-button-prev:hover,
 .swiper-button-next:hover {
     background: linear-gradient(135deg, #31adad, #ff2d8d) !important;
     transform: scale(1.1) !important;
 }

 .swiper-button-prev:after,
 .swiper-button-next:after {
     font-size: 18px !important;
     font-weight: 900 !important;
     color: var(--text-dark) !important;
 }

 .swiper-button-prev:hover:after,
 .swiper-button-next:hover:after {
     color: #fff !important;
 }

 .swiper-button-prev {
     left: 10px !important;
 }

 .swiper-button-next {
     right: 10px !important;
 }

 /* Tips specific buttons */
 .tips-prev,
 .tips-next {
     width: 50px !important;
     height: 50px !important;
     border-radius: 50% !important;
     background: #fff !important;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
     transition: all 0.3s ease !important;
 }

 .tips-prev:hover,
 .tips-next:hover {
     background: linear-gradient(135deg, #31adad, #ff2d8d) !important;
     transform: scale(1.1) !important;
 }

 .tips-prev:after,
 .tips-next:after {
     font-size: 18px !important;
     font-weight: 900 !important;
     color: var(--text-dark) !important;
 }

 .tips-prev:hover:after,
 .tips-next:hover:after {
     color: #fff !important;
 }

 .tips-prev {
     left: 10px !important;
 }

 .tips-next {
     right: 10px !important;
 }

 .view-all-btn {
     display: inline-block;
     background: linear-gradient(135deg, #31adad, #ff2d8d);
     color: white;
     padding: 1rem 2.5rem;
     border-radius: 30px;
     text-decoration: none;
     font-weight: 700;
     transition: all 0.3s;
 }

 .view-all-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(255, 45, 141, 0.4);
     color: white;
 }


 /* Footer */
 .footer-v2 {
     background: linear-gradient(135deg, #090a0d 0%, #0a1428 100%);
     color: #e5e7eb;
     padding: 3.5rem 0 1.3rem;
 }

 .footer-top-v2 {
     padding-bottom: 1.2rem;
 }

 .footer-brand-head-v2 {
     display: flex;
     align-items: center;
     gap: 0.9rem;
     margin-bottom: 1rem;
 }

 .footer-badge-v2 {
     width: 44px;
     height: 44px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 900;
     color: #fff;
     background: linear-gradient(135deg, rgba(49, 173, 173, 0.85), rgba(255, 45, 141, 0.85));
     box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
 }

 .footer-logo-v2 {
     margin: 0;
     font-size: 1.55rem;
     font-weight: 900;
     color: #fff;
 }

 .footer-text-v2 {
     margin: 0 0 1.4rem;
     color: rgba(226, 232, 240, 0.75);
     line-height: 1.7;
     max-width: 320px;
 }

 .footer-social-v2 {
     display: flex;
     gap: 0.75rem;
     flex-wrap: wrap;
 }

 .footer-social-btn {
     width: 44px;
     height: 44px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     color: rgba(255, 255, 255, 0.9);
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.08);
     transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
 }

 .footer-social-btn:hover {
     transform: translateY(-3px);
     background: rgba(255, 255, 255, 0.10);
     border-color: rgba(255, 255, 255, 0.14);
 }

 .footer-title-v2 {
     font-size: 1.05rem;
     font-weight: 800;
     color: #fff;
     margin: 0.4rem 0 1.1rem;
 }

 .footer-links-v2 {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links-v2 li {
     margin-bottom: 0.9rem;
 }

 .footer-links-v2 a {
     color: rgba(226, 232, 240, 0.70);
     text-decoration: none;
     font-weight: 500;
     transition: color 0.2s ease, transform 0.2s ease;
     display: inline-block;
 }

 .footer-links-v2 a:hover {
     color: #fff;
     transform: translateX(3px);
 }

 .footer-contact-v2 {
     display: flex;
     flex-direction: column;
     gap: 1.1rem;
 }

 .footer-contact-item {
     display: flex;
     gap: 0.9rem;
     align-items: flex-start;
 }

 .footer-contact-ico {
     width: 44px;
     height: 44px;
     border-radius: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     background: linear-gradient(135deg, rgba(49, 173, 173, 0.85), rgba(255, 45, 141, 0.85));
     box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
     flex: 0 0 auto;
 }

 .footer-contact-text span {
     display: block;
     font-size: 0.85rem;
     color: rgba(226, 232, 240, 0.70);
     margin-bottom: 0.15rem;
 }

 .footer-contact-text strong {
     display: block;
     font-weight: 600;
     color: #fff;
     line-height: 1.4;
 }

 .footer-divider-v2 {
     height: 1px;
     background: rgba(255, 255, 255, 0.08);
     margin: 1.6rem 0 1.6rem;
 }

 .footer-cats-v2 {
     padding: 0.2rem 0 1.4rem;
 }

 .footer-cats-title {
     margin: 0 0 1rem;
     font-size: 1.05rem;
     font-weight: 900;
     color: #fff;
 }

 .footer-chips-v2 {
     display: flex;
     flex-wrap: wrap;
     gap: 0.9rem;
 }

 .footer-chip-v2 {
     padding: 0.55rem 1.05rem;
     border-radius: 14px;
     text-decoration: none;
     color: rgba(255, 255, 255, 0.92);
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.08);
     font-weight: 600;
     font-size: 0.92rem;
     transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
 }

 .footer-chip-v2:hover {
     transform: translateY(-2px);
     background: rgba(255, 255, 255, 0.10);
     border-color: rgba(255, 255, 255, 0.14);
 }

 .footer-bottom-v2 {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 1rem;
     padding-top: 1rem;
     border-top: 1px solid rgba(255, 255, 255, 0.08);
 }

 .footer-copy-v2 {
     margin: 0;
     color: rgba(226, 232, 240, 0.60);
     font-size: 0.92rem;
 }

 .footer-bottom-links-v2 {
     display: flex;
     gap: 1.6rem;
 }

 .footer-bottom-links-v2 a {
     color: rgba(226, 232, 240, 0.70);
     text-decoration: none;
     font-weight: 600;
     font-size: 0.92rem;
     transition: color 0.2s ease;
 }

 .footer-bottom-links-v2 a:hover {
     color: #fff;
 }

 /* Responsive */
 @media (max-width: 992px) {
     .product-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .category-title {
         font-size: 2.5rem;
     }

     .footer-bottom-v2 {
         flex-direction: column;
         align-items: flex-start;
     }
 }

 /* ── 2. ALL CONTAINERS ─────────────────────────────────────────── */
 .jump-to-top-btn {
     position: fixed;
     bottom: 20px;
     right: 28px;
     background-color: #ff2d8d;
     color: white;
     border: none;
     padding: 4px 10px;
     border-radius: 50%;
     font-size: 20px;
     cursor: pointer;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
     display: none;
     transition: opacity 0.3s ease-in-out;
 }

 /* Show the button when scrolling down */
 .jump-to-top-btn.show {
     display: block;
 }

 .jump-to-top-btn:hover {
     background-color: #ff2d8d;
     transform: translateY(-2px);
 }

 /* CTA Button — Equal Width, Content Independent */
 .cta-card .cta-button {
     width: 100% !important;
     min-height: 44px !important;
     display: flex !important;
     align-items: center !important;
     justify-content: center !important;
     box-sizing: border-box !important;
     white-space: nowrap !important;
     padding: 0.7rem 1rem !important;
 }

 .chair-article-image-wrapper {
     position: relative;
     height: 350px;
     overflow: hidden;
 }