/*-------------------------------------------------
                   ROOT VARIABLES
  ------------------------------------------------*/
  :root {
    --primary-blue: #0052cc;
    --hero-gradient: linear-gradient(135deg, #0061ff 0%, #0033aa 100%);
    --bg-light: #f8fafc;
    --white: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
  }
  
   /*-------------------------------------------------
                      RESET & GLOBAL
    ------------------------------------------------*/
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* This stops the horizontal scroll */
    position: relative;
  }
  
  section {
    scroll-margin-top: 80px; 
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
  }
  
  h1, h2, h3, h4, p {
    word-wrap: break-word;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  a { text-decoration: none; color: inherit; transition: var(--transition); }
  ul { list-style: none; }
  img { max-width: 100%; }
  
  .section-padding { padding: 80px 0; }
  .bg-light { background-color: var(--bg-light); }
  
   /*-------------------------------------------------
          reserve header space to reduce CLS
    ------------------------------------------------*/
  #header {
    min-height: 70px;
  }
  
  #footer {
    min-height: 320px;
  }
  
   /*-------------------------------------------------
                        NAVBAR
    ------------------------------------------------*/
  .navbar {
    height: 70px;
    display: flex;
    align-items: center;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
   /*-------------------------------------------------
                        LOGO
    ------------------------------------------------*/
  .header-logo {
    display: flex;
    align-items: center;
  }
  
  .header-logo img {
    max-height: 60px;
    height: 50px;
    width: auto;
  }
  
  .footer-logo {
    display: flex;
  }
  
  .footer-logo img {
    height: 90px;
    width: auto;
    margin-bottom: 16px;
  }
   /*-------------------------------------------------
                      NAV LINKS
    ------------------------------------------------*/
  .nav-links {
    display: flex;
    gap: 32px;
    position: static;
    flex-direction: row;
    width: auto;
    padding: 0;
    box-shadow: none;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
  }
  
  .nav-links a:hover, .nav-links a.active {
    color: var(--primary-blue);
  }
   /*-------------------------------------------------
                    MOBILE MENU BUTTON
    ------------------------------------------------*/
  .mobile-menu-btn {
    display: none; 
    font-size: 1.5rem; 
    cursor: pointer; 
  }
  
  /*-------------------------------------------------
                    HOMEPAGE HERO
    ------------------------------------------------*/
  .homepage .homepage-hero {
    background: var(--hero-gradient);
    color: var(--white);
    padding: 80px 16px 120px;
    text-align: center;
  }
  
  .homepage .homepage-hero-content {
    max-width: 850px;
    margin: 0 auto;
  }
  
  .homepage .homepage-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .homepage .homepage-hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .homepage .homepage-hero p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    padding: 0 10px;
  }
  
  .homepage .homepage-search-container {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
  }
  
  .homepage .homepage-search-box {
    position: relative;
    background: var(--white);
    padding: 12px 16px;
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  .homepage .homepage-search-box i { 
    color: var(--text-muted); 
  }
  
  .homepage .homepage-search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
  }
  
  .homepage .homepage-search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    display: none;
    z-index: 50;
  }
  
  .homepage .homepage-search-results.show {
    display: block;
  }
  
  .homepage .homepage-search-result-item {
    display: block;
    padding: 14px 16px;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    text-align: left;
  }
  
  .homepage .homepage-search-result-item:last-child {
    border-bottom: none;
  }
  
  .homepage .homepage-search-result-item:hover {
    background: #f8fafc;
    color: var(--primary-blue);
  }
  
  .homepage .homepage-search-result-item.no-result {
    color: var(--text-muted);
    cursor: default;
  }
  
  .homepage .homepage-popular-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.85rem;
  }
  
  .homepage .homepage-popular-tags a {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
  }
  
  .homepage .homepage-popular-tags a:hover { 
    background: rgba(255, 255, 255, 0.25); 
  }
  
  /*-------------------------------------------------
                    HOMEPAGE STATS
    ------------------------------------------------*/
  .homepage .homepage-stats {
    margin-top: -50px;
  }
  
  .homepage .homepage-stats-grid {
    background: var(--white);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
  }
  
  .homepage .homepage-stat-item h3 { 
    font-size: 1.8rem; 
    color: var(--primary-blue); 
    margin-bottom: 4px; 
  }
  
  .homepage .homepage-stat-item p { 
    color: var(--text-muted); 
    font-size: 0.9rem; 
  }
  
  /*-------------------------------------------------
                    HOMEPAGE SECTION HEADERS
    ------------------------------------------------*/
  .homepage .homepage-section-header { 
    text-align: center; 
    margin-bottom: 50px; 
  }
  
  .homepage .homepage-section-header h2 { 
    font-size: 2rem; 
    margin-bottom: 10px; 
  }
  
  .homepage .homepage-section-header p { 
    color: var(--text-muted); 
  }
  
  /*-------------------------------------------------
                    HOMEPAGE CATEGORIES
    ------------------------------------------------*/
  .homepage .homepage-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    overflow: hidden;
    margin: auto 10px;
  }
  
  .homepage .homepage-category-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    width: 100%;
    min-width: 0;
  }
  
  .homepage .homepage-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
  }
  
  .homepage .homepage-cat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 16px;
  }
  
  .homepage .homepage-category-card h4 { 
    margin-bottom: 4px; 
    font-size: 1rem; 
    word-break: break-word;
  }
  
  .homepage .homepage-category-card span { 
    font-size: 0.8rem; 
    color: var(--text-muted); 
  }
  
  /* Category Icon Colors */
  .blue-bg { background: #e0f2fe; color: #0ea5e9; }
  .purple-bg { background: #f3e8ff; color: #a855f7; }
  .pink-bg { background: #fce7f3; color: #ec4899; }
  .green-bg { background: #dcfce7; color: #22c55e; }
  .red-bg { background: #fee2e2; color: #ef4444; }
  .teal-bg { background: #ccfbf1; color: #14b8a6; }
  .leaf-bg { background: #f0fdf4; color: #16a34a; }
  .ai-bg { background: #eef2ff; color: #6366f1; }
  .orange-bg { background: #ffedd5; color: #f97316; }
  .chart-bg { background: #ecfeff; color: #06b6d4; }
  .heart-bg { background: #fff1f2; color: #fb7185; }
  .gold-bg { background: #fefce8; color: #ca8a04; }
  .cart-bg { background: #f0f9ff; color: #0ea5e9; }
  .clock-bg { background: #f8fafc; color: #64748b; }
  
  /*-------------------------------------------------
                    HOMEPAGE MOST USED TOOLS
    ------------------------------------------------*/
  .homepage .homepage-section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
  }
  
  .homepage .homepage-star-icon, 
  .homepage .homepage-trend-icon { 
    color: #f59e0b; 
    font-size: 1.5rem; 
  }
  
  .homepage .homepage-trend-icon { 
    color: #10b981; 
  }
  
  .homepage .homepage-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: auto 10px;
  }
  
  .homepage .homepage-tool-card {
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    flex-wrap: wrap;
  }
  
  .homepage .homepage-tool-icon-small {
    width: 45px;
    height: 45px;
    background: #eff6ff;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
  }
  
  .homepage .homepage-tool-card h4 { 
    font-size: 0.95rem; 
    line-height: 1.3; 
  }
  
  .homepage .homepage-tool-card p { 
    font-size: 0.75rem; 
    color: var(--text-muted); 
    margin-top: 4px; 
  }
  
  /*-------------------------------------------------
                    HOMEPAGE GUIDES
    ------------------------------------------------*/
  .homepage .homepage-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: auto 10px;
  }
  
  .homepage .homepage-guide-card {
    padding: 30px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
    cursor: pointer;
  }
  
  .homepage .homepage-guide-card:hover { 
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  
  .homepage .homepage-guide-tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 20px;
  }
  
  .homepage .homepage-popular-tag { background: #fef3c7; color: #92400e; }
  .homepage .homepage-new-tag { background: #dcfce7; color: #166534; }
  .homepage .homepage-featured-tag { background: #e0f2fe; color: #075985; }
  
  .homepage .homepage-guide-card h3 { 
    margin-bottom: 12px; 
    font-size: 1.2rem; 
  }
  
  .homepage .homepage-guide-card p { 
    color: var(--text-muted); 
    font-size: 0.9rem; 
    margin-bottom: 20px; 
  }
  
  .homepage .homepage-guide-footer { 
    font-size: 0.8rem; 
    color: var(--text-muted); 
    border-top: 1px solid var(--border-color); 
    padding-top: 15px; 
  }
  
  .homepage .homepage-guide-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  /*-------------------------------------------------
                    CTA SECTION
    ------------------------------------------------*/
  .homepage .cta-box {
    background: var(--hero-gradient);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
  }
  
  .homepage .cta-box h2 { 
    font-size: 2rem; 
    margin-bottom: 15px;
  }
  
  .homepage .cta-box p { 
    margin-bottom: 30px; 
    opacity: 0.9; 
    padding: 0 10px;
  }
  
  .homepage .btn-white {
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .homepage .btn-white:hover { 
    transform: scale(1.05); 
  }
  
  /* =========================================
     ENHANCED HOMEPAGE CONTENT SECTION
  ========================================= */
  .homepage .homepage-enhanced-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 36px;
  }
  
  .homepage .homepage-featured-content-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .homepage .homepage-featured-content-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.04), rgba(0, 97, 255, 0.01));
    pointer-events: none;
  }
  
  .homepage .homepage-featured-content-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    border-color: rgba(0, 82, 204, 0.18);
  }
  
  .homepage .homepage-content-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
  }
  
  .homepage .homepage-finance-icon {
    background: rgba(124, 58, 237, 0.10);
    color: #7c3aed;
  }
  
  .homepage .homepage-health-icon {
    background: rgba(236, 72, 153, 0.10);
    color: #ec4899;
  }
  
  .homepage .homepage-utility-icon {
    background: rgba(14, 165, 233, 0.10);
    color: #0ea5e9;
  }
  
  .homepage .homepage-content-text {
    position: relative;
    z-index: 1;
  }
  
  .homepage .homepage-content-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-blue);
    background: rgba(0, 82, 204, 0.08);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
  }
  
  .homepage .homepage-featured-content-card h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--text-main);
  }
  
  .homepage .homepage-featured-content-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
  }
  
  .homepage .homepage-featured-content-card a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
  }
  
  .homepage .homepage-featured-content-card a:hover {
    text-decoration: underline;
  }
  
  .homepage .homepage-wide-card {
    grid-column: 1 / -1;
  }
  
  /* =========================================
     INTERNAL LINKS - ENHANCED
  ========================================= */
  .homepage .homepage-internal-links-wrapper {
    margin-top: 32px;
  }
  
  /*-----------------------------------------------
    SECTION HEADER (UPGRADED ONLY)
  -----------------------------------------------*/
  .homepage .homepage-internal-links .homepage-section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 24px;
  }
  
  .homepage .homepage-internal-links .homepage-section-header h2 {
    font-size: clamp(2.1rem, 4vw, 2.7rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-main);
  }
  
  .homepage .homepage-internal-links .homepage-section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0 auto;
  }
  
  /*-----------------------------------------------
    INTRO TEXT
  -----------------------------------------------*/
  .homepage .homepage-internal-links-intro {
    max-width: 820px;
    margin: 0 auto 32px;
    text-align: center;
  }
  
  .homepage .homepage-internal-links-intro p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin: 0;
  }
  
  .homepage .homepage-internal-links-intro::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 24px auto 0;
    background: var(--hero-gradient);
    border-radius: 999px;
  }
  
  .homepage .homepage-internal-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .homepage .homepage-internal-link-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: all 0.25s ease;
  }
  
  .homepage .homepage-internal-link-card i {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-top: 4px;
  }
  
  .homepage .homepage-internal-link-card h4 {
    margin: 0 0 6px;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.4;
  }
  
  .homepage .homepage-internal-link-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  .homepage .homepage-internal-link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 82, 204, 0.2);
  }
  
  /* =========================================
     ENHANCED FAQ SECTION
  ========================================= */
  .homepage .homepage-enhanced-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 36px;
  }
  
  .homepage .homepage-enhanced-faq-card {
    padding: 28px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .homepage .homepage-enhanced-faq-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.04), rgba(0, 97, 255, 0.01));
    pointer-events: none;
  }
  
  .homepage .homepage-enhanced-faq-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    border-color: rgba(0, 82, 204, 0.18);
  }
  
  .homepage .homepage-faq-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }
  
  .homepage .homepage-faq-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 82, 204, 0.10);
    color: var(--primary-blue);
    font-size: 1.15rem;
  }
  
  .homepage .homepage-faq-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-blue);
    background: rgba(0, 82, 204, 0.08);
    padding: 6px 10px;
    border-radius: 999px;
    white-space: nowrap;
  }
  
  .homepage .homepage-enhanced-faq-card h3 {
    margin: 0 0 12px;
    font-size: 1.15rem;
    line-height: 1.45;
    color: var(--text-main);
    position: relative;
    z-index: 1;
  }
  
  .homepage .homepage-enhanced-faq-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
    position: relative;
    z-index: 1;
  }
  
   /*-------------------------------------------------
                        FOOTER
    ------------------------------------------------*/
  .footer {
    padding: 80px 0 40px;
    background: var(--white);
    border-top: 1px solid var(--border-color);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-brand p { 
    color: var(--text-muted); 
    font-size: 0.9rem; 
    margin: 20px 0; 
    max-width: 350px; 
  }
  
  .copyright { 
    font-size: 0.8rem !important; 
    margin-top: 40px !important; 
  }
  
  .footer-links h4 { margin-bottom: 20px; font-size: 1rem; }
  .footer-links ul li { margin-bottom: 12px; }
  .footer-links ul li a { color: var(--text-muted); font-size: 0.9rem; }
  .footer-links ul li a:hover { color: var(--primary-blue); }
  
  /*-------------------------------------------------
                HOMEPAGE TRUST SECTION
--------------------------------------------------*/
.homepage .homepage-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: auto 10px;
}

.homepage .homepage-trust-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.homepage .homepage-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.homepage .homepage-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 82, 204, 0.08);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.homepage .homepage-trust-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.homepage .homepage-trust-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/*-------------------------------------------------
                HOMEPAGE USE CASES
--------------------------------------------------*/
.homepage .homepage-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: auto 10px;
}

.homepage .homepage-use-case-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.homepage .homepage-use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 82, 204, 0.2);
}

.homepage .homepage-use-case-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(0, 82, 204, 0.08);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.homepage .homepage-use-case-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.homepage .homepage-use-case-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/*-------------------------------------------------
                HOMEPAGE SEO CONTENT
--------------------------------------------------*/
.homepage .homepage-seo-content-box {
  max-width: 900px;
  margin: 0 auto;
}

.homepage .homepage-seo-content-box p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.homepage .homepage-seo-content-box a {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
}

.homepage .homepage-seo-content-box a:hover {
  text-decoration: underline;
}

  /* --------------------------------------RESPONSIVE---------------------------------------- */
  
  @media (min-width: 1200px) {
    .homepage .homepage-category-grid {
      grid-template-columns: repeat(5, 1fr);
    }
  }
  
  @media (max-width: 1024px) {
    .homepage .homepage-internal-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .homepage .homepage-stats-grid { 
      grid-template-columns: repeat(2, 1fr); 
      gap: 20px; 
      padding: 20px;
    }
  
    .homepage .homepage-guides-grid { 
      grid-template-columns: 1fr; 
    }
  
    .footer-grid { 
      grid-template-columns: 1fr 1fr; 
    }
  
    .homepage .cta-box {
      margin: auto 10px;
    }
  
    .homepage .homepage-stats-grid {
      margin: auto 10px;
    }
  }
  
  @media (max-width: 768px) {
  
    .homepage .homepage-hero h1 { 
      font-size: 2.2rem; 
    }

    .homepage .homepage-trust-grid,
    .homepage .homepage-use-cases-grid {
      grid-template-columns: 1fr;
    }
  
  /*----------------HEADER----------------*/
  
    .container {
      margin: 0 20px;
    }
  
    .nav-links {
      position: absolute;
      top: 70px;
      right: -100%;
      background: white;
      flex-direction: column;
      width: 220px;
      padding: 20px;
      transition: 0.3s ease;
      box-shadow: var(--shadow-md);
    }
  
    .nav-links.active {
      right: 0;
    }
  
    .mobile-menu-btn {
      display: block;
    }
  /*----------------------------------------*/
  
    .homepage .homepage-search-results {
      max-width: 100%;
    }
  
    .homepage .homepage-category-grid {
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
  
    .homepage .homepage-enhanced-content-grid {
      grid-template-columns: 1fr;
    }
  
    .homepage .homepage-featured-content-card,
    .homepage .homepage-wide-card {
      grid-column: auto;
    }
  
    .homepage .homepage-featured-content-card {
      padding: 22px;
      gap: 16px;
    }
  
    .homepage .homepage-content-icon {
      width: 50px;
      height: 50px;
      min-width: 50px;
      font-size: 1.1rem;
    }
  
    .homepage .homepage-internal-links-grid {
      grid-template-columns: 1fr;
    }
  
    .homepage .homepage-internal-link-card {
      padding: 18px;
    }
  
    .homepage .homepage-enhanced-faq-grid {
      grid-template-columns: 1fr;
    }
  
    .homepage .homepage-enhanced-faq-card {
      padding: 22px;
    }
  
    .homepage .homepage-faq-top {
      align-items: flex-start;
      flex-wrap: wrap;
    }
  
    .homepage .homepage-faq-icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      font-size: 1rem;
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 20px 0;
    }
  
    .homepage .homepage-stats-grid {
      padding: 20px;
    }
  }