/* Pricing-specific styles */

    .page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 800; margin-bottom: .5rem; }
    .page-hero p { color: #9ca3af; max-width: 760px; margin: 0 auto; }
    
    .section-header { margin: 2rem auto 3rem; max-width: 900px; padding: 0 1rem; }
    .section-title { font-size: 2.2rem; }
    .section-subtitle { font-size: 1.05rem; }

    /* Pricing Tabs + Content (structure from ./price.html) */
    .pricing-wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem 3rem; }
    .pricing-tabs { display: flex; justify-content: center; gap: 6px; width: fit-content; max-width: 100%; margin: 24px auto 34px; padding: 6px; background: rgba(255,255,255,.045); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 14px; flex-wrap: wrap; }
    .pricing-tab { min-width: 150px; padding: 12px 18px; background: transparent; border: 1px solid transparent; color: #9ca3af; cursor: pointer; transition: all .25s ease; font-weight: 800; border-radius: 10px; }
    .pricing-tab:hover { color: #fff; background: rgba(255,255,255,.035); }
    .pricing-tab.active { color: #fff; background: rgba(238, 90, 36, .22); box-shadow: inset 0 0 0 1px rgba(255, 107, 107, 0.32); border-color: rgba(255, 107, 107, 0.42); }

    .pricing-content { display: none; }
    .pricing-content.active { display: block; animation: fadeIn .4s ease; }

    /* Plan cards */
    .plan-cta { text-align: center; }
    .btn-plan { display: inline-block; padding: 12px 26px; background: linear-gradient(135deg, rgba(255,107,107,0.14), rgba(238,90,36,0.34)); border: 1px solid rgba(255,255,255,0.28); border-radius: 10px; color: #fff; text-decoration: none; transition: all .2s ease; font-weight: 700; }
    .btn-plan:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,107,107,0.28); }

    /* Calculator (from price.html content, styled like index) */
    .calculator-container { max-width: none; margin: 0 auto; padding: 30px; background: rgba(255,255,255,0.04); border-radius: 12px; backdrop-filter: blur(15px); box-shadow: 0 8px 32px rgba(0,0,0,.45), 0 0 30px rgba(255, 107, 107, 0.12), inset 0 0 20px rgba(255, 107, 107, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); transition: all 0.3s ease; }
    .calculator-container:hover { box-shadow: 0 12px 40px rgba(2, 4, 20, 0.5), 0 0 40px rgba(255, 107, 107, 0.18), inset 0 0 25px rgba(255, 107, 107, 0.1); border-color: rgba(255, 255, 255, 0.18); transform: translateY(-2px); }
    #unlimited-content .calculator-container,
    #unlimited-content .calculator-container:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,.35);
      border-color: rgba(255, 255, 255, 0.12);
      transform: none;
    }
    #unlimited-content .comparison-table tr:hover,
    #unlimited-content .comparison-table td:hover {
      background: transparent;
    }
    .calculator-header { position: relative; text-align: center; }

    /* Notices */
    .notice { margin: 16px 0; padding: 14px 16px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 12px; color: rgba(255,255,255,0.92); display:flex; align-items:center; gap:10px; }

    /* Table + FAQ */
    .features-comparison { background: rgba(255,255,255,0.04); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 26px; margin-top: 36px; box-shadow: 0 8px 32px rgba(0,0,0,.35); backdrop-filter: blur(12px); }
    .features-comparison h3 { text-align: center; font-size: 28px; margin-bottom: 16px; background: linear-gradient(135deg, #ff6b6b, #ee5a24, #feca57); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
    .table-responsive { max-height: 480px; overflow-y: auto; overflow-x: auto; border-radius: 10px; -webkit-overflow-scrolling: touch; }
    .comparison-table { width: 100%; min-width: 760px; border-collapse: collapse; overflow: hidden; border-radius: 10px; }
    .comparison-table th, .comparison-table td { padding: 14px 12px; line-height: 1.4; text-align: center; border-bottom: 1px solid rgba(255, 255, 255, 0.12); word-break: break-word; }
    .comparison-table th { background: rgba(255,255,255,.08); font-weight: 700; }
    /* sticky header for better readability while scrolling */
    .comparison-table thead th { position: sticky; top: 0; z-index: 1; }
    /* in case markup lacks thead */
    .comparison-table tr:first-child th { position: sticky; top: 0; z-index: 1; }
    .comparison-table td:first-child, .comparison-table th:first-child { text-align: left; }

    @media (max-width: 640px) {
      .table-responsive { max-height: 60vh; }
      .comparison-table { min-width: 640px; }
      .pricing-decision-layout .comparison-table { min-width: 0; }
      .pricing-decision-layout .features-comparison,
      .pricing-decision-layout .plan-recommendation { padding: 18px; }
      .pricing-decision-layout .features-comparison h3,
      .pricing-decision-layout .plan-recommendation h3 { font-size: 26px; }
      .decision-item { padding: 16px; }
    }

    /* Plan recommendation */
    .plan-recommendation { margin-top: 40px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 26px; box-shadow: 0 8px 32px rgba(0,0,0,.35); backdrop-filter: blur(12px); }
    .plan-recommendation h3 { font-size: 26px; margin-bottom: 20px; text-align: center; background: linear-gradient(135deg, #ff6b6b, #ee5a24, #feca57); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
    .recommendations { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-bottom: 16px; }
    .recommendation-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 16px; }
    .recommendation-item h4 { font-size: 16px; margin-bottom: 6px; background: linear-gradient(135deg, #ff6b6b, #ee5a24, #feca57); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
    .cta-container { text-align:center; margin-top: 10px; }
    .cta-container p { color: #d1d5db; margin-bottom: 12px; }

    .pricing-decision-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(340px, .9fr);
      gap: 24px;
      align-items: stretch;
      margin-top: 46px;
    }

    .pricing-decision-layout .reveal,
    .pricing-decision-layout .features-comparison,
    .pricing-decision-layout .plan-recommendation {
      opacity: 1 !important;
      transform: none !important;
    }

    .pricing-decision-layout .features-comparison,
    .pricing-decision-layout .plan-recommendation {
      margin-top: 0;
      border-radius: 20px;
      padding: 30px;
    }

    .pricing-decision-layout .features-comparison h3,
    .pricing-decision-layout .plan-recommendation h3 {
      text-align: left;
      font-size: 30px;
      margin-bottom: 22px;
      background: none;
      -webkit-text-fill-color: initial;
      color: #fff;
    }

    .pricing-decision-layout .features-comparison h3 .gradient-text,
    .pricing-decision-layout .plan-recommendation h3 .gradient-text {
      background: linear-gradient(135deg, #ff6b6b, #ee5a24, #feca57);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .pricing-decision-layout .table-responsive {
      max-height: none;
      overflow: auto;
    }

    .pricing-decision-layout .comparison-table {
      min-width: 560px;
    }

    .pricing-decision-layout .comparison-table th,
    .pricing-decision-layout .comparison-table td {
      text-align: left;
      padding: 14px 16px;
    }

    .pricing-decision-layout .comparison-table th {
      background: rgba(255,255,255,.08);
    }

    .plan-recommendation.decision-guide {
      background:
        radial-gradient(circle at 10% 0, rgba(255, 90, 42, .12), transparent 34%),
        rgba(255,255,255,0.04);
      box-shadow: 0 18px 54px rgba(0,0,0,.36), 0 24px 70px rgba(255, 90, 42, .08);
    }

    .decision-items {
      display: grid;
      gap: 14px;
      margin-bottom: 24px;
    }

    .decision-item {
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px;
      padding: 18px;
    }

    .decision-item h4 {
      color: #ff765d;
      font-size: 16px;
      margin-bottom: 8px;
      font-weight: 800;
    }

    .decision-item p {
      color: #aeb5c1;
      line-height: 1.5;
      margin: 0;
      overflow-wrap: anywhere;
    }

    .decision-guide .btn-plan {
      display: flex;
      justify-content: center;
      width: 100%;
      background: linear-gradient(135deg, #ff6b6b, #ee5a24);
      border-color: rgba(255,255,255,.16);
      box-shadow: 0 18px 44px rgba(255, 90, 42, .22);
    }

    .faq-section { margin-top: 40px; }
    .faq-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; margin-top: 14px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.35); transition: all .2s ease; }
    .faq-question { padding: 18px 22px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255, 255, 255, 0.12); font-weight: 600; }
    .faq-question:hover { background: rgba(255, 255, 255, 0.05); }
    .faq-question i { transition: transform 0.3s ease; color: #ff6b6b; }
    .faq-item.active .faq-question i { transform: rotate(180deg); }
    .faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; color: #d1d5db; }
    .faq-item.active .faq-answer { padding: 18px 22px !important; max-height: 800px !important; }

    /* Brands */
    .btn-telegram { background: linear-gradient(135deg, #37aee2, #1e96c8); color: #fff; padding: 1rem 1.25rem; border-radius: 12px; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: .5rem; box-shadow: 0 6px 18px rgba(30,150,200,.35); border: 1px solid rgba(255,255,255,.15); transition: transform .2s ease, box-shadow .2s ease; }
    .btn-telegram:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(30,150,200,.45); }
    .btn-discord { background: linear-gradient(135deg, #5865F2, #404EED); color: #fff; padding: 1rem 1.25rem; border-radius: 12px; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: .5rem; box-shadow: 0 6px 18px rgba(88,101,242,.35); border: 1px solid rgba(255,255,255,.15); transition: transform .2s ease, box-shadow .2s ease; }
    .btn-discord:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(88,101,242,.45); }
    .btn-linkedin { background: linear-gradient(135deg, #0a66c2, #004182); color: #fff; padding: 1rem 1.25rem; border-radius: 12px; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: .5rem; box-shadow: 0 6px 18px rgba(10,102,194,.28); border: 1px solid rgba(255,255,255,.15); transition: transform .2s ease, box-shadow .2s ease; }
    .btn-linkedin:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(10,102,194,.38); color: #fff; text-decoration: none; }
    .btn-icon { display:inline-flex; width:20px; height:20px; align-items:center; justify-content:center; }

    /* Contact */
    .contact { padding: 6rem 2rem; }
    .contact-container { max-width: 900px; margin: 0 auto; text-align: center; }
    .contact-links { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.25rem; }
    .contact-links a { text-decoration: none; color: #ffffff; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; padding: .6rem 1rem; background: rgba(255,255,255,.05); }
    .contact-links a:hover { background: rgba(255,255,255,.1); }

    /* Contact card styling */
    .contact-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 1.5rem; backdrop-filter: blur(12px); }
    .contact-cta { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1rem; }
    .contact-info-list { display: grid; gap: .4rem; justify-items: center; color: #e5e7eb; }
    .contact-info-list .muted { color:#9ca3af; text-align:center; }
    .contact-info-list a { color: #fff; text-decoration: none; }
    .contact-info-list a:hover { text-decoration: underline; }

    /* Footer */
    .footer { background: rgba(0, 0, 0, 0.5); border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 3rem 2rem 2rem; text-align: center; margin-top: 3rem; }
    .footer-container { max-width: 1400px; margin: 0 auto; }
    .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
    .footer-links a { color: #9ca3af; text-decoration: none; transition: color 0.3s ease; }
    .footer-links a:hover { color: #ff6b6b; }

    .gradient-text { background: linear-gradient(135deg, #ff6b6b, #ee5a24, #feca57); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

    /* Reveal animations */
    .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.show { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    }

    @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
    @media (max-width: 1024px) {
      .pricing-decision-layout {
        grid-template-columns: 1fr;
      }

      .pricing-decision-layout .comparison-table {
        min-width: 0;
        table-layout: fixed;
      }

      .pricing-decision-layout .comparison-table th,
      .pricing-decision-layout .comparison-table td {
        white-space: normal;
        overflow-wrap: anywhere;
      }

      .pricing-decision-layout .features-comparison,
      .pricing-decision-layout .plan-recommendation {
        padding: 24px;
      }

      .nav { position: relative; }
      .nav-toggle { display: inline-block; }
      .nav-links {
        display: none; position: absolute; top: 100%; right: 0;
        width: 280px; max-width: calc(100vw - 2rem); flex-direction: column; gap: .25rem;
        background: rgba(23,25,32,.96);
        border: 1px solid rgba(255,255,255,.12); border-radius: 12px; 
        padding: .5rem; z-index: 3001; 
      }
      .nav-links.open { display: flex; }
      .nav-links > li > a { width: 100%; }
    }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(12px);} to { opacity: 1; transform: translateY(0);} }
  

    /* Reduced spacing after Get in touch */
    .contact.contact--spacious { padding-bottom: 2rem; margin-bottom: 1.5rem; }
    @media (max-width: 600px) { .contact.contact--spacious { padding-bottom: 1.5rem; margin-bottom: 1rem; } }
/* Theme switcher */
.theme-toggle {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 3200;
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    min-height: 48px;
    padding: .75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(15, 18, 27, .88);
    color: #fff;
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .34);
    backdrop-filter: blur(18px);
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
}

.theme-toggle:focus-visible {
    outline: 3px solid rgba(255, 107, 107, .35);
    outline-offset: 3px;
}

.theme-toggle-icon {
    width: 26px;
    height: 26px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: #0b0c10;
    background: linear-gradient(135deg, #feca57, #ff9f2d);
    box-shadow: 0 6px 16px rgba(255, 159, 45, .28);
}

.theme-toggle-text {
    white-space: nowrap;
}

@media (max-width: 640px) {
    .theme-toggle {
        right: .85rem;
        bottom: .85rem;
        min-height: 44px;
        padding: .65rem .8rem;
        font-size: .92rem;
    }

    .theme-toggle-icon {
        width: 24px;
        height: 24px;
    }
}

/* Shared theme motion and mobile navigation */
html[data-theme] body,
html[data-theme] .header,
html[data-theme] .footer,
html[data-theme] .nav-links,
html[data-theme] .dropdown-menu,
html[data-theme] .theme-toggle,
html[data-theme] .theme-toggle-icon,
html[data-theme] .pricing-tabs,
html[data-theme] .calculator-container,
html[data-theme] .features-comparison,
html[data-theme] .plan-recommendation,
html[data-theme] .contact-card,
html[data-theme] .notice,
html[data-theme] .faq-item {
    transition: background-color .28s ease, background .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease, opacity .28s ease;
}

html.theme-view-transition::view-transition-old(root),
html.theme-view-transition::view-transition-new(root) {
    animation: none;
    mix-blend-mode: normal;
}

html.theme-view-transition::view-transition-new(root) {
    animation: themeCornerWipe 1.15s cubic-bezier(.2, .75, .18, 1) both;
}

@keyframes themeCornerWipe {
    0% { clip-path: circle(0 at calc(100% - 48px) calc(100% - 42px)); }
    100% { clip-path: circle(150vmax at calc(100% - 48px) calc(100% - 42px)); }
}

@media (prefers-reduced-motion: reduce) {
    html.theme-view-transition::view-transition-new(root) { animation: none; }
    html[data-theme] body,
    html[data-theme] .header,
    html[data-theme] .footer,
    html[data-theme] .nav-links,
    html[data-theme] .dropdown-menu,
    html[data-theme] .theme-toggle,
    html[data-theme] .theme-toggle-icon,
    html[data-theme] .pricing-tabs,
    html[data-theme] .calculator-container,
    html[data-theme] .features-comparison,
    html[data-theme] .plan-recommendation,
    html[data-theme] .contact-card,
    html[data-theme] .notice,
    html[data-theme] .faq-item { transition: none; }
}

@media (max-width: 1024px) {
    .nav { min-height: 68px; }
    .nav-toggle { width: 44px; height: 44px; padding: 0; display: inline-grid; place-items: center; }
    .nav-toggle .bar { width: 22px; margin: 3px 0; }
    .nav-links {
        right: 1rem;
        top: calc(100% + .6rem);
        width: min(320px, calc(100vw - 2rem));
        padding: .65rem;
        gap: .35rem;
        border-radius: 16px;
        box-shadow: 0 24px 60px rgba(15, 23, 42, .18);
    }
    .nav-links > li,
    .nav-links > li > a { width: 100%; }
    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 44px;
        padding: .7rem .85rem;
        border-radius: 11px;
    }
    .nav-links .only-mobile .cta-button { justify-content: center; margin-top: .25rem; }
    .nav-links .dropdown.open > .dropdown-menu {
        display: flex !important;
        flex-direction: column !important;
        position: static !important;
        width: 100% !important;
        margin: .35rem 0 0 !important;
        padding: .35rem !important;
        box-shadow: none !important;
    }
}
