:root{--ccf-primary:#059669;--ccf-primary-dark:#047857;--ccf-primary-darker:#064e3b;--ccf-primary-light:#d1fae5;--ccf-primary-lighter:#ecfdf5;--ccf-secondary:#10b981;--ccf-accent:#f59e0b;--ccf-text-dark:#111827;--ccf-text-body:#4b5563;--ccf-text-muted:#6b7280;--ccf-text-light:#9ca3af;--ccf-bg:#FFFFFF;--ccf-bg-alt:#f9fafb;--ccf-bg-dark:#111827;--ccf-border:#e5e7eb;--ccf-border-light:#f3f4f6;--ccf-error:#dc2626;--ccf-error-bg:#fef2f2;--ccf-error-border:#fca5a5;--ccf-success:#10b981;--ccf-success-bg:#ecfdf5;--ccf-warning-bg:#fffbeb;--ccf-warning-border:#fcd34d;--ccf-warning-text:#92400e;--ccf-font:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;--ccf-font-mono:ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;--ccf-radius:0.5rem;--ccf-radius-lg:0.75rem;--ccf-radius-xl:1rem;--ccf-radius-full:9999px;--ccf-shadow-sm:0 1px 2px 0 rgba(0, 0, 0, .05);--ccf-shadow:0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);--ccf-shadow-md:0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);--ccf-shadow-lg:0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)}*,*::before,*::after{box-sizing:border-box}html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}body{margin:0;font-family:var(--ccf-font);font-size:16px;line-height:1.5;color:var(--ccf-text-body);background:var(--ccf-bg);-webkit-font-smoothing:antialiased;overflow-x:hidden}img{max-width:100%;height:auto}a{color:var(--ccf-primary);text-decoration:none;transition:color 0.2s}a:hover{color:var(--ccf-primary-dark);text-decoration:none}*:focus-visible{outline:2px solid var(--ccf-primary);outline-offset:2px}button{cursor:pointer;font-family:inherit;border:none;background:none;padding:0}input,select,textarea{font-family:inherit}::selection{background:var(--ccf-primary-light);color:var(--ccf-primary-darker)}.ccf-page-wrapper{min-height:100vh;display:flex;flex-direction:column}.ccf-container{max-width:72rem;margin-left:auto;margin-right:auto;padding-left:1rem;padding-right:1rem}.ccf-container--narrow{max-width:52rem}.ccf-py-10{padding-top:2.5rem;padding-bottom:2.5rem}.ccf-py-16{padding-top:4rem;padding-bottom:4rem}.ccf-mt-8{margin-top:2rem}.ccf-mb-3{margin-bottom:.75rem}.ccf-mb-8{margin-bottom:2rem}.ccf-grid{display:grid;gap:1.5rem}.ccf-grid--2{grid-template-columns:repeat(2,1fr)}.ccf-grid--3{grid-template-columns:repeat(3,1fr)}.ccf-grid--4{grid-template-columns:repeat(4,1fr)}.ccf-grid--sidebar{grid-template-columns:1fr 340px;align-items:start}.ccf-grid--hero{grid-template-columns:1.2fr 1fr;align-items:center;gap:4rem}.ccf-header{position:sticky;top:0;z-index:1000;background:#fff;border-bottom:1px solid var(--ccf-border-light);height:4.5rem;transition:box-shadow 0.3s ease}.ccf-header__inner{display:flex;align-items:center;justify-content:space-between;height:4.5rem}.ccf-header__logo{display:flex;align-items:center;gap:.75rem;text-decoration:none;flex-shrink:0}.ccf-header__logo-icon{width:2.5rem;height:2.5rem;border-radius:.5rem;display:flex;align-items:center;justify-content:center;color:#fff;background:var(--ccf-primary)}.ccf-header__logo-icon svg{width:1.25rem;height:1.25rem}.ccf-header__logo-text{display:flex;flex-direction:column;line-height:1.1}.ccf-header__logo-name{font-weight:800;font-size:1.125rem;color:var(--ccf-text-dark)}.ccf-header__logo-tagline{font-size:.75rem;color:var(--ccf-text-muted)}.ccf-header__nav{display:none}@media (min-width:1024px){.ccf-header__nav{display:block;margin:0 2rem}}.ccf-nav-list{list-style:none;margin:0;padding:0;display:flex;align-items:center;gap:.5rem;flex-direction:row}.ccf-mobile-nav-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.5rem;padding-top:19px}.ccf-nav-link{display:inline-flex;align-items:center;gap:.25rem;padding:.5rem .75rem;border-radius:.375rem;font-size:.9375rem;font-weight:600;color:var(--ccf-text-body);transition:all 0.2s}.ccf-nav-link:hover{color:var(--ccf-primary)}.ccf-nav-link--active{color:var(--ccf-primary);background:var(--ccf-primary-lighter)}.ccf-nav-item{position:relative}.ccf-nav-link__icon{margin-left:4px;transition:transform 0.2s;opacity:.6}.ccf-nav-item:hover>.ccf-nav-link .ccf-nav-link__icon{transform:rotate(180deg)}.ccf-dropdown-menu{position:absolute;top:100%;left:0;min-width:180px;background:#fff;border:1px solid var(--ccf-border);border-radius:.5rem;box-shadow:var(--ccf-shadow-lg);padding:.5rem;list-style:none;margin:0;opacity:0;visibility:hidden;transform:translateY(10px);transition:all 0.2s ease;z-index:1001}.ccf-nav-item:hover>.ccf-dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}.ccf-dropdown-menu .ccf-nav-item{width:100%}.ccf-dropdown-menu .ccf-nav-link{display:flex;width:100%;padding:.625rem .75rem;white-space:nowrap}.ccf-dropdown-menu .ccf-nav-link:hover{background:var(--ccf-bg-alt)}.ccf-nav-link img{border-radius:2px;vertical-align:middle}@media (max-width:1023px){.ccf-dropdown-menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;padding-left:1rem;padding-top:0;display:flex}}.ccf-header__controls{display:flex;align-items:center;gap:1rem}@media (max-width:830px){.ccf-header .ccf-btn{display:none!important}}.ccf-footer{background:var(--ccf-bg-dark);color:#9ca3af;padding-top:15px}.ccf-footer__main{padding-bottom:10px;font-size:12px}.ccf-footer__brand{margin-bottom:1.5rem}.ccf-footer__brand-icon{width:2.25rem;height:2.25rem;border-radius:.5rem;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:.875rem;background:var(--ccf-primary);margin-bottom:1rem}.ccf-footer__brand-name{font-weight:800;color:#fff;font-size:1.125rem;margin-bottom:.25rem;display:block}.ccf-footer_brand-tagline{font-size:.75rem;color:#6b7280;display:block;margin-bottom:1.5rem}.ccf-footer__desc{font-size:.875rem;line-height:1.6;color:#9ca3af;margin-bottom:1.5rem;max-width:20rem}.ccf-footer__social{display:flex;gap:.75rem}.ccf-footer__social-link{width:2.25rem;height:2.25rem;border-radius:.375rem;display:flex;align-items:center;justify-content:center;background:#1f2937;color:#fff;transition:all 0.2s}.ccf-footer__social-link:hover{background:var(--ccf-primary);color:#fff;transform:translateY(-2px)}.ccf-footer__heading{font-weight:700;color:#fff;margin:0 0 1.5rem;font-size:.875rem;text-transform:uppercase;letter-spacing:.05em}.ccf-footer__links{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.75rem}.ccf-footer__links a{font-size:.9375rem;color:#9ca3af;transition:color 0.2s}.ccf-footer__links a:hover{color:#fff}.ccf-footer__bottom{border-top:1px solid #1f2937;padding:8px;font-size:.875rem}.ccf-footer__bottom-inner{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem}.ccf-footer__disclaimer{border-top:1px solid #1f2937;font-size:.75rem;color:#6b7280;line-height:1.5;text-align:center}.ccf-footer__heart{color:#ef4444}.ccf-breadcrumb{display:flex;align-items:center;gap:.5rem;font-size:.875rem;margin-bottom:1.5rem}.ccf-breadcrumb__link{color:var(--ccf-primary);text-decoration:none}.ccf-breadcrumb__link:hover{text-decoration:underline}.ccf-breadcrumb__sep{color:var(--ccf-text-light)}.ccf-breadcrumb__current{color:var(--ccf-text-muted)}.ccf-btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.625rem 1.25rem;border-radius:.5rem;font-weight:600;font-size:.875rem;transition:all 0.2s;text-decoration:none;cursor:pointer;border:1px solid #fff0}.ccf-btn--primary{background:var(--ccf-primary);color:#fff}.ccf-btn--primary:hover{background:var(--ccf-primary-dark);color:#fff}.ccf-btn--secondary{background:var(--ccf-secondary);color:#fff}.ccf-btn--secondary:hover{opacity:.9;color:#fff}.ccf-btn--outline{border:1px solid var(--ccf-border);color:var(--ccf-text-dark);background:#fff}.ccf-btn--outline:hover{background:var(--ccf-bg-alt);color:var(--ccf-primary);border-color:var(--ccf-primary)}.ccf-btn--full{width:100%}.ccf-btn--lg{padding:.875rem 1.5rem;font-size:1rem}.ccf-card{background:#fff;border-radius:var(--ccf-radius-xl);border:1px solid var(--ccf-border);box-shadow:var(--ccf-shadow-sm);overflow:hidden;margin-bottom:10px;margin-top:10px}.ccf-card__body{padding:15px}.ccf-card-header-row{display:flex;align-items:center;gap:1rem;margin-bottom:2rem}.ccf-card-header-icon{width:2.75rem;height:2.75rem;border-radius:.625rem;display:flex;align-items:center;justify-content:center;font-weight:700;color:#fff}.ccf-card-header-icon--green{background:#dcfce7;color:#059669}.ccf-card-header-icon--purple{background:#f3e8ff;color:#7c3aed}.ccf-card-header-title{font-size:1.25rem;font-weight:800;color:var(--ccf-text-dark);margin:0}.ccf-card-header-subtitle{font-size:.875rem;color:var(--ccf-text-muted);margin:0}.ccf-hero{position:relative;overflow:hidden;background:-webkit-gradient(linear,left top,right top,color-stop(0%,#70e0a2),color-stop(21%,#8fd3b0),color-stop(37%,#bbeae7),color-stop(53%,#d6ffdc),color-stop(63%,#b9e0e8),color-stop(84%,#77d6c9),color-stop(100%,#869daa));padding:10px}.ccf-hero__inner{position:relative}.ccf-hero__content{color:#064e3b}.ccf-hero__badge{display:inline-flex;align-items:center;gap:.5rem;padding:.375rem .875rem;border-radius:var(--ccf-radius-full);font-size:.75rem;font-weight:600;background:rgb(255 255 255 / .5);margin-bottom:2rem;color:#064e3b}.ccf-hero__badge-emoji{color:var(--ccf-accent)}.ccf-hero__title{font-size:3rem;font-weight:800;line-height:1.1;margin:0 0 1.5rem;max-width:24rem}@media (max-width:768px){.ccf-hero__title{font-size:2.25rem}}.ccf-hero__title span{color:#064e3b}.ccf-hero__desc{font-size:1.125rem;color:#064e3b;line-height:1.6;margin-bottom:2.5rem}.ccf-hero__stats{display:grid;grid-template-columns:repeat(4,1fr);gap:.75rem}.ccf-stat-card{background:rgb(255 255 255 / .4);backdrop-filter:blur(8px);border:1px solid rgb(255 255 255 / .5);padding:1rem;border-radius:.75rem;text-align:center}.ccf-stat-card__value{font-size:1.125rem;font-weight:800;color:#064e3b;display:block}.ccf-stat-card__label{font-size:.625rem;color:#047857;margin-top:.25rem;text-transform:uppercase;letter-spacing:.05em;font-weight:600}.ccf-hero__menu{background:rgb(255 255 255 / .1);border:1px solid rgb(255 255 255 / .1);border-radius:1rem;padding:1.5rem}.ccf-hero-menu-item{background:#fff;color:var(--ccf-text-dark);display:flex;align-items:center;justify-content:space-between;padding:1rem;border-radius:.75rem;margin-bottom:.75rem;text-decoration:none;transition:transform 0.2s}.ccf-hero-menu-item:last-child{margin-bottom:0}.ccf-hero-menu-item:hover{transform:translateX(4px)}.ccf-hero-menu-icon{width:2.5rem;height:2.5rem;border-radius:.5rem;display:flex;align-items:center;justify-content:center}.ccf-hero-menu-text{flex:1;padding-left:1rem}.ccf-hero-menu-title{font-weight:700;font-size:.875rem;display:block;margin-bottom:.125rem}.ccf-hero-menu-desc{font-size:.75rem;color:var(--ccf-text-muted)}.ccf-hero-menu-arrow{color:var(--ccf-text-light);font-size:1.25rem}.ccf-section{padding:15px}.ccf-section__header{text-align:center;margin-bottom:4rem}.ccf-section__title{font-size:2.25rem;font-weight:800;color:var(--ccf-text-dark);margin:0 0 1rem}.ccf-section__subtitle{font-size:1.125rem;color:var(--ccf-text-muted);max-width:42rem;margin:0 auto}.ccf-feature-card{background:#fff;padding:2rem;border-radius:1rem;border:1px solid var(--ccf-border-light);transition:all 0.3s}.ccf-feature-card:hover{border-color:var(--ccf-primary-light);background:var(--ccf-primary-lighter)}.ccf-feature-icon{width:3rem;height:3rem;border-radius:.75rem;display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem;font-size:1.25rem}.ccf-feature-title{font-weight:700;font-size:1.125rem;color:var(--ccf-text-dark);margin-bottom:.75rem}.ccf-feature-text{font-size:.9375rem;color:var(--ccf-text-muted);line-height:1.6}.ccf-structure-card{background:#fff;border:1px solid var(--ccf-border);border-radius:1rem;padding:2.5rem;display:grid;grid-template-columns:1fr 1.2fr;gap:4rem;align-items:center}@media (max-width:1024px){.ccf-structure-card{grid-template-columns:1fr;gap:3rem;padding:2rem}}@media (max-width:640px){.ccf-structure-card{padding:1.5rem;gap:2rem}}.ccf-structure-list{display:flex;flex-direction:column;gap:1rem}.ccf-structure-item{display:flex;align-items:center;gap:1rem;font-size:.875rem}.ccf-structure-tag{min-width:3rem;height:1.625rem;border-radius:.375rem;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.75rem;color:#fff;flex-shrink:0}.ccf-structure-cta-wrap{margin-top:2rem}.ccf-btn--mobile-full{width:auto}@media (max-width:640px){.ccf-btn--mobile-full{width:100%}}.ccf-structure-visual{background:#fff;border-radius:1rem;padding:2rem;box-shadow:0 0 0 1px rgb(0 0 0 / .05),var(--ccf-shadow-md);width:100%;max-width:100%;overflow-x:hidden}@media (max-width:640px){.ccf-structure-visual{padding:1.5rem 1rem}}.ccf-structure-code-row{display:flex;gap:.25rem;justify-content:center;margin-bottom:2rem;flex-wrap:wrap}.ccf-code-char{width:1.75rem;height:2.25rem;border-radius:.25rem;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.875rem;flex-shrink:0}@media (max-width:480px){.ccf-code-char{width:1.5rem;height:2rem;font-size:.75rem}}.ccf-structure-legend{display:grid;grid-template-columns:1fr 1fr;gap:.75rem;font-size:.625rem;font-weight:700}@media (max-width:480px){.ccf-structure-legend{grid-template-columns:1fr}}.ccf-sidebar-title{font-weight:800;font-size:1rem;color:var(--ccf-text-dark);margin:0 0 1.25rem}.ccf-steps{display:flex;flex-direction:column;gap:1.25rem}.ccf-step{display:flex;gap:1rem}.ccf-step__num{width:1.75rem;height:1.75rem;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--ccf-primary-lighter);color:var(--ccf-primary);font-size:.875rem;font-weight:800;flex-shrink:0}.ccf-step__label{font-weight:600;font-size:.9375rem;color:var(--ccf-text-dark)}.ccf-info-box{border-radius:1rem;padding:1.5rem}.ccf-info-box--warning{background:#fff7ed;border:1px solid #ffedd5}.ccf-info-box--green{background:#ecfdf5;border:1px solid #d1fae5}.ccf-info-box__title{font-weight:700;font-size:.875rem;margin:0 0 .75rem;display:flex;align-items:center;gap:.5rem}.ccf-info-box__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.5rem;font-size:.875rem;color:var(--ccf-text-body)}.ccf-faq-accordion{display:flex;flex-direction:column;gap:.75rem}.ccf-accordion{background:#fff;border:1px solid var(--ccf-border);border-radius:.75rem;overflow:hidden;transition:all 0.2s}.ccf-accordion:hover{border-color:var(--ccf-primary-light)}.ccf-accordion__trigger{width:100%;display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;text-align:left;font-weight:700;color:var(--ccf-text-dark);font-size:1rem}.ccf-accordion__icon{width:1.5rem;height:1.5rem;border-radius:.375rem;display:flex;align-items:center;justify-content:center;background:var(--ccf-bg-alt);color:var(--ccf-text-muted);transition:transform 0.2s}.ccf-accordion__trigger[aria-expanded="true"] .ccf-accordion__icon{background:var(--ccf-primary-lighter);color:var(--ccf-primary);transform:rotate(180deg)}.ccf-accordion__content{padding:1px;font-size:.9375rem;color:var(--ccf-text-muted);line-height:1.6}.ccf-mobile-menu{position:fixed;inset:0;z-index:100;background:#fff;transform:translateX(100%);transition:transform 0.3s ease-in-out}.ccf-mobile-menu.is-active{transform:translateX(0)}.ccf-mobile-menu__header{height:4.5rem;display:flex;align-items:center;justify-content:space-between;padding:0 1rem;border-bottom:1px solid var(--ccf-border-light)}@keyframes ccf-pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.95)}}.ccf-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.ccf-text-center{text-align:center}.ccf-font-bold{font-weight:700}.ccf-font-extrabold{font-weight:800}@media (max-width:768px){.ccf-grid--sidebar,.ccf-grid--hero,.ccf-grid--4,.ccf-grid--3{grid-template-columns:1fr}}@keyframes ccf-spin{to{transform:rotate(360deg)}}@keyframes ccf-pulse{0%,100%{opacity:1}50%{opacity:.5}}.ccf-spinner{animation:ccf-spin 1s linear infinite}.ccf-spinner__track{opacity:.25}.ccf-spinner__head{opacity:.75}.ccf-privacy-section{margin-bottom:2rem}.ccf-privacy-section:last-of-type{margin-bottom:0}.ccf-privacy-section__title{font-size:1.125rem;font-weight:700;color:var(--ccf-text-dark);margin:0 0 .75rem}.ccf-privacy-section__content{font-size:.875rem;line-height:1.6;color:var(--ccf-text-muted);white-space:pre-line}.ccf-privacy-footer{margin-top:2rem;padding-top:1.5rem;border-top:1px solid var(--ccf-border)}.ccf-privacy-footer p{font-size:.75rem;color:var(--ccf-text-light);margin:0}.ccf-contact-info__title{font-size:1.5rem;font-weight:700;color:var(--ccf-text-dark);margin:0 0 .5rem}.ccf-contact-info__desc{font-size:.875rem;line-height:1.6;color:var(--ccf-text-muted);margin:0 0 1.5rem}.ccf-contact-items{display:flex;flex-direction:column;gap:1rem;margin-bottom:1.5rem}.ccf-contact-item{display:flex;align-items:flex-start;gap:.75rem;padding:1rem;border-radius:var(--ccf-radius);border:1px solid var(--ccf-border)}.ccf-contact-item__icon{color:var(--ccf-primary);margin-top:.125rem;flex-shrink:0}.ccf-contact-item__label{font-size:.75rem;font-weight:500;color:var(--ccf-text-light);margin:0}.ccf-contact-item__value{font-size:.875rem;font-weight:500;color:var(--ccf-text-dark);margin:0}.ccf-contact-faq-cta{padding:1rem;border-radius:var(--ccf-radius);background:var(--ccf-primary-light);border:1px solid #a7f3d0}.ccf-contact-faq-cta__title{font-size:.875rem;font-weight:500;color:var(--ccf-primary);margin:0 0 .25rem}.ccf-contact-faq-cta__desc{font-size:.75rem;color:var(--ccf-text-body);margin:0 0 .75rem}.ccf-contact-faq-cta__link{font-size:.75rem;font-weight:500;color:var(--ccf-primary)}.ccf-contact-success{text-align:center;padding:2rem}.ccf-contact-success__icon{width:4rem;height:4rem;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--ccf-primary);color:#fff;font-size:1.5rem;margin:0 auto 1rem}.ccf-contact-success__title{font-size:1.25rem;font-weight:700;color:var(--ccf-text-dark);margin:0 0 .5rem}.ccf-contact-success__desc{font-size:.875rem;color:var(--ccf-text-muted);margin:0 0 1.5rem}.ccf-faq-search{position:relative;margin-bottom:1.5rem}.ccf-faq-search__icon{position:absolute;left:1rem;top:50%;transform:translateY(-50%)}.ccf-faq-search__input{width:100%;padding:.875rem 1rem .875rem 3rem;border:1px solid var(--ccf-border);border-radius:var(--ccf-radius);font-size:.875rem;color:var(--ccf-text-dark);transition:all 0.2s}.ccf-faq-search__input:focus{outline:none;box-shadow:0 0 0 2px rgb(30 127 79 / .2)}.ccf-faq-filters{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:2rem}.ccf-filter-btn{padding:.5rem 1rem;border-radius:var(--ccf-radius-full);font-size:.875rem;font-weight:500;transition:all 0.2s;cursor:pointer;background:#f3f4f6;color:var(--ccf-text-muted);border:none}.ccf-filter-btn--active{background:var(--ccf-primary);color:#fff}.ccf-faq-accordion{display:flex;flex-direction:column;gap:.75rem}.ccf-accordion{border:1px solid var(--ccf-border);border-radius:var(--ccf-radius);overflow:hidden;transition:box-shadow 0.2s}.ccf-accordion:hover{box-shadow:var(--ccf-shadow-sm)}.ccf-accordion__trigger{width:100%;display:flex;align-items:center;justify-content:space-between;padding:1rem 1.25rem;text-align:left;cursor:pointer;background:#fff;transition:background 0.2s;border:none;font-family:inherit}.ccf-accordion__trigger[aria-expanded="true"]{background:var(--ccf-primary-light)}.ccf-accordion__title{font-weight:500;font-size:.875rem;color:var(--ccf-text-dark);padding-right:1rem}.ccf-accordion__icon{width:1.5rem;height:1.5rem;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all 0.2s;background:var(--ccf-border)}.ccf-accordion__trigger[aria-expanded="true"] .ccf-accordion__icon{background:var(--ccf-primary)}.ccf-accordion__trigger[aria-expanded="true"] .ccf-accordion__icon svg{stroke:#fff;transform:rotate(180deg)}.ccf-accordion__content{font-size:.875rem;line-height:1.6;color:var(--ccf-text-muted);background:#FAFAFA}.ccf-accordion__content p{margin:0}.ccf-faq-cta{margin-top:3rem;padding:1.5rem;border-radius:var(--ccf-radius-lg);text-align:center;background:var(--ccf-primary-light);border:1px solid #a7f3d0}.ccf-faq-cta__title{font-weight:700;font-size:1.125rem;color:var(--ccf-primary);margin:0 0 .5rem}.ccf-faq-cta__desc{font-size:.875rem;color:var(--ccf-text-body);margin:0 0 1rem}.ccf-article{max-width:48rem}.ccf-article__header{margin-bottom:2rem}.ccf-article__title{font-size:2rem;font-weight:700;color:var(--ccf-text-dark);margin:0 0 .75rem}.ccf-article__meta{font-size:.875rem;color:var(--ccf-text-muted)}.ccf-article__sep{margin:0 .5rem}.ccf-article__image{margin-bottom:2rem;border-radius:var(--ccf-radius-lg);overflow:hidden}.ccf-article__content{line-height:1.8}.ccf-article__content h2{font-size:1.5rem;margin-top:2rem}.ccf-article__content h3{font-size:1.25rem;margin-top:1.5rem}.ccf-article__content p{margin-bottom:1rem}.ccf-article__tags{margin-top:2rem;display:flex;flex-wrap:wrap;gap:.5rem}.ccf-tag{font-size:.75rem;padding:.25rem .75rem;background:var(--ccf-bg-alt);border-radius:var(--ccf-radius-full);color:var(--ccf-text-muted)}.ccf-article__nav{margin-top:2rem;padding-top:2rem;border-top:1px solid var(--ccf-border);display:flex;justify-content:space-between;gap:1rem}.ccf-article__nav-link{font-size:.875rem;color:var(--ccf-primary)}.ccf-posts-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem}.ccf-card__image{overflow:hidden}.ccf-card__image img{width:100%;display:block;transition:transform 0.3s}.ccf-card:hover .ccf-card__image img{transform:scale(1.02)}.ccf-card__title{font-size:1.125rem;font-weight:600;margin:0 0 .5rem}.ccf-card__title a{color:var(--ccf-text-dark);text-decoration:none}.ccf-card__title a:hover{color:var(--ccf-primary)}.ccf-card__excerpt{font-size:.875rem;color:var(--ccf-text-muted);margin-bottom:1rem}.ccf-pagination{margin-top:2rem;text-align:center}.ccf-archive-header{margin-bottom:2rem}.ccf-archive-header__title{font-size:1.75rem;font-weight:700;color:var(--ccf-text-dark);margin:0 0 .5rem}.ccf-archive-header__desc{font-size:.875rem;color:var(--ccf-text-muted)}.ccf-entry-content{color:var(--ccf-text-body);font-size:1.125rem;line-height:1.8}.ccf-entry-content h1,.ccf-entry-content h2,.ccf-entry-content h3,.ccf-entry-content h4{color:var(--ccf-text-dark);margin-top:2.5rem;margin-bottom:1.25rem;font-weight:700}.ccf-entry-content h1{font-size:2.5rem}.ccf-entry-content h2{font-size:1.5rem;border-bottom:1px solid var(--ccf-border-light);padding-bottom:.75rem}.ccf-entry-content h3{font-size:1.3rem}.ccf-entry-content h4{font-size:1.25rem}.ccf-entry-content p{margin-bottom:1.125rem}.ccf-entry-content ul,.ccf-entry-content ol{margin-bottom:1.5rem;padding-left:2rem}.ccf-entry-content li{margin-bottom:.75rem}.ccf-entry-content blockquote{border-left:4px solid var(--ccf-primary);padding:1.25rem 2rem;margin:2rem 0;background:var(--ccf-primary-lighter);font-style:italic;border-radius:0 var(--ccf-radius) var(--ccf-radius) 0}.ccf-entry-content img{border-radius:var(--ccf-radius-lg);margin:2rem auto;display:block;box-shadow:var(--ccf-shadow-lg)}.ccf-entry-content a{color:var(--ccf-primary);text-decoration:underline;font-weight:600}.ccf-entry-content a:hover{color:var(--ccf-primary-dark);text-decoration:none}.ccf-post-boxed{background:#fff;border:1px solid var(--ccf-border);border-radius:var(--ccf-radius-lg);box-shadow:var(--ccf-shadow-sm);overflow:hidden;margin-bottom:3rem}.ccf-post-header-img{width:100%;height:auto;max-height:414px;object-fit:cover;display:block;border-bottom:1px solid var(--ccf-border-light)}.ccf-post-body{padding:14px}.ccf-post-meta-top{display:flex;flex-wrap:wrap;gap:1rem;font-size:.875rem;color:var(--ccf-text-muted);margin-bottom:1.5rem;align-items:center}.ccf-post-meta-item{display:flex;align-items:center;gap:.375rem}.ccf-post-title{font-size:2.5rem;font-weight:800;color:var(--ccf-text-dark);margin-bottom:2rem;line-height:1.2}@media (max-width:767px){.ccf-post-body{padding:8px}.ccf-post-title{font-size:1.75rem}}.ccf-post-body .schema-faq.wp-block-yoast-faq-block{display:flex;flex-direction:column;gap:1rem;margin:2rem 0}.ccf-post-body .schema-faq-section{border:1px solid var(--ccf-border);border-radius:var(--ccf-radius-lg);background:#fff;overflow:hidden;transition:all 0.3s cubic-bezier(.4,0,.2,1);box-shadow:var(--ccf-shadow-sm)}.ccf-post-body .schema-faq-section:hover{border-color:var(--ccf-primary);box-shadow:0 4px 12px rgb(30 127 79 / .08)}.ccf-post-body .schema-faq-question{display:block;width:100%;padding:9px;margin:0;font-size:16px;font-weight:500;color:var(--ccf-text-dark);cursor:pointer;position:relative;background:#fff;transition:background-color 0.2s;user-select:none}.ccf-post-body .schema-faq-question::after{content:'';position:absolute;right:1.5rem;top:50%;width:12px;height:12px;border-right:2px solid var(--ccf-text-muted);border-bottom:2px solid var(--ccf-text-muted);transform:translateY(-70%) rotate(45deg);transition:transform 0.3s ease}.ccf-post-body .schema-faq-section.is-active .schema-faq-question{background-color:var(--ccf-primary-lighter);color:var(--ccf-primary-dark)}.ccf-post-body .schema-faq-section.is-active .schema-faq-question::after{transform:translateY(-30%) rotate(-135deg);border-color:var(--ccf-primary)}.ccf-post-body .schema-faq-answer{padding:0;margin:0;max-height:0;overflow:hidden;background:#FAFAFA;border-top:0 solid var(--ccf-border-light);font-size:1rem;line-height:1.6;color:var(--ccf-text-body)}.ccf-post-body .schema-faq-section.is-active .schema-faq-answer{padding:1.25rem 1.5rem;max-height:1000px;border-top-width:1px}.ccf-post-body .schema-faq-answer p:last-child{margin-bottom:0}.ccf-comments{margin-top:3rem;max-width:48rem;margin-left:auto;margin-right:auto}#reply-title,.comments-title,.comment-reply-title{font-size:1.5rem;font-weight:700;color:var(--ccf-text-dark);margin-bottom:1.5rem}.comment-respond{background:#fff;border:1px solid var(--ccf-border);border-radius:var(--ccf-radius-lg);padding:2rem;box-shadow:var(--ccf-shadow-sm);margin-bottom:2rem}.ccf-comment-form{display:flex;flex-direction:column;gap:1.25rem}.ccf-comment-form p{margin:0}.ccf-comment-form label{display:block;font-weight:600;font-size:.875rem;color:var(--ccf-text-dark);margin-bottom:.5rem}.ccf-comment-form input[type="text"],.ccf-comment-form input[type="email"],.ccf-comment-form input[type="url"],.ccf-comment-form textarea{width:100%;padding:.875rem 1rem;border:1px solid var(--ccf-border);border-radius:var(--ccf-radius);font-size:.875rem;background:#F9FAFB;transition:all 0.2s;font-family:inherit}.ccf-comment-form textarea{min-height:150px;resize:vertical}.ccf-comment-form input:focus,.ccf-comment-form textarea:focus{outline:none;border-color:var(--ccf-primary);background:#fff;box-shadow:0 0 0 3px rgb(30 127 79 / .1)}.ccf-comment-form .submit{background:linear-gradient(135deg,#1E7F4F,#166B42);color:#fff;border:none;padding:.875rem 2rem;border-radius:var(--ccf-radius);font-weight:700;cursor:pointer;transition:transform 0.2s,box-shadow 0.2s;width:fit-content}.ccf-comment-form .submit:hover{transform:translateY(-1px);box-shadow:0 4px 12px rgb(30 127 79 / .2)}.logged-in-as{font-size:.75rem;color:var(--ccf-text-muted);margin-bottom:1rem!important}.logged-in-as a{color:var(--ccf-primary);font-weight:600}.comment-list{list-style:none;padding:0;margin:3rem 0}.comment-body{background:#fff;border:1px solid var(--ccf-border);border-radius:var(--ccf-radius-lg);padding:1.5rem;margin-bottom:1.5rem}.ccf-home-link-widget{margin-bottom:2rem}.ccf-home-link-btn{display:flex;align-items:center;justify-content:center;gap:.625rem;padding:.75rem 1.25rem;border-radius:var(--ccf-radius);background:var(--ccf-primary-light);color:var(--ccf-primary-dark);font-weight:600;font-size:.875rem;text-decoration:none;transition:all 0.2s;border:1px solid rgb(16 185 129 / .2)}.ccf-home-link-btn:hover{background:var(--ccf-primary);color:#fff;transform:translateY(-1px);box-shadow:var(--ccf-shadow-sm)}@media print{.ccf-header,.ccf-footer,.ccf-cookie-banner,.ccf-skip-link,.ccf-history,.ccf-share,.ccf-breadcrumb,.ccf-sidebar-title,.ccf-info-box,.ccf-grid__sidebar,.ccf-calculator__form,.ccf-result-box__actions,nav,button{display:none!important}body{background:#fff!important;print-color-adjust:exact;-webkit-print-color-adjust:exact}.ccf-main{margin:0!important;padding:0!important}.ccf-calculator__result{display:block!important;padding:0!important}.ccf-card{border:none!important;box-shadow:none!important}.ccf-card__body{padding:0!important;margin:0!important}.ccf-calculator__result *{visibility:visible}}@media (prefers-contrast:high){:root{--ccf-primary:#005f38;--ccf-border:#000}}@media (prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:0.01ms!important;animation-iteration-count:1!important;transition-duration:0.01ms!important}html{scroll-behavior:auto}}.ccf-blog-header{background:#fff;border-bottom:1px solid var(--ccf-border-light);padding:3rem 0;margin-bottom:3rem}.ccf-blog-header__inner{display:flex;align-items:center;gap:1.5rem}.ccf-blog-header__icon{width:3.5rem;height:3.5rem;border-radius:.75rem;background:var(--ccf-primary-light);color:var(--ccf-primary);display:flex;align-items:center;justify-content:center;font-size:1.5rem;flex-shrink:0}.ccf-blog-header__title{font-size:2.25rem;font-weight:800;color:var(--ccf-text-dark);margin:0 0 .25rem}.ccf-blog-header__subtitle{color:var(--ccf-text-muted);font-size:1rem;margin:0}.ccf-blog-grid{display:grid;grid-template-columns:2fr 1fr;gap:2rem}.ccf-featured-section{margin-bottom:3.5rem}.ccf-section-label{font-size:1.125rem;font-weight:700;color:var(--ccf-text-dark);margin-bottom:1.5rem;display:block}.ccf-featured-posts{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}.ccf-post-featured{background:#fff;border:1px solid var(--ccf-border);border-radius:var(--ccf-radius-xl);overflow:hidden;transition:transform 0.2s,box-shadow 0.2s}.ccf-post-featured:hover{transform:translateY(-4px);box-shadow:var(--ccf-shadow-lg)}.ccf-post-featured__img-wrap{height:180px;position:relative;overflow:hidden;background:var(--ccf-primary-lighter);display:flex;align-items:center;justify-content:center}.ccf-post-featured__img-wrap img{height:auto;opacity:.8}.ccf-post-featured__body{padding:1.5rem}.ccf-post-featured__meta{display:flex;align-items:center;gap:1rem;margin-bottom:1rem}.ccf-post-featured__title{font-size:1.125rem;font-weight:700;color:var(--ccf-text-dark);margin:0 0 .75rem;line-height:1.4;height:3.125rem;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.ccf-post-featured__excerpt{font-size:.875rem;color:var(--ccf-text-muted);margin-bottom:1.5rem;line-height:1.6;height:4.375rem;overflow:hidden}.ccf-post-featured__footer{display:flex;align-items:center;justify-content:space-between;border-top:1px solid var(--ccf-border-light);padding-top:1rem;font-size:.75rem;color:var(--ccf-text-light)}.ccf-post-list{display:flex;flex-direction:column;gap:1rem}.ccf-post-row{background:#fff;border:1px solid var(--ccf-border);border-radius:var(--ccf-radius-lg);display:flex;align-items:stretch;transition:border-color 0.2s;overflow:hidden}.ccf-post-row:hover{border-color:var(--ccf-primary)}.ccf-post-row__img-wrap{width:6rem;background:var(--ccf-primary-lighter);display:flex;align-items:center;justify-content:center;flex-shrink:0}.ccf-post-row__img-wrap img{width:1.5rem;opacity:.6}.ccf-post-row__body{padding:1.25rem 1.5rem;flex-grow:1}.ccf-post-row__meta{display:flex;gap:1rem;align-items:center;margin-bottom:.5rem;font-size:.75rem;color:var(--ccf-text-light)}.ccf-post-row__title{font-size:1rem;font-weight:700;color:var(--ccf-text-dark);margin:0 0 .5rem}.ccf-post-row__excerpt{font-size:.875rem;color:var(--ccf-text-muted);margin-bottom:1rem;line-height:1.5}.ccf-post-row__tags{display:flex;flex-wrap:wrap;gap:.5rem}.ccf-blog-sidebar{display:flex;flex-direction:column;gap:1.5rem}.ccf-widget{background:#fff;border:1px solid var(--ccf-border);border-radius:var(--ccf-radius-lg);padding:1.5rem}.ccf-widget__title{font-size:1rem;font-weight:700;color:var(--ccf-text-dark);margin:0 0 1.25rem}.ccf-category-list{list-style:none;padding:0;margin:0}.ccf-category-list li{margin-bottom:.75rem}.ccf-category-list a{display:flex;justify-content:space-between;align-items:center;font-size:.875rem;color:var(--ccf-text-muted);text-decoration:none;transition:color 0.2s}.ccf-category-list a:hover{color:var(--ccf-primary)}.ccf-category-count{background:var(--ccf-primary-lighter);color:var(--ccf-primary);font-size:.7rem;font-weight:700;padding:.125rem .5rem;border-radius:1rem;min-width:1.5rem;text-align:center}.ccf-tag-cloud{display:flex;flex-wrap:wrap;gap:.5rem}.ccf-tag-pill{font-size:.75rem;padding:.375rem .75rem;background:#f3f4f6;color:var(--ccf-text-muted);border-radius:var(--ccf-radius);text-decoration:none;transition:all 0.2s}.ccf-tag-pill:hover{background:var(--ccf-primary);color:#fff}.ccf-cta-box{border-color:#a7f3d0;text-align:left}.ccf-cta-box__title{display:flex;align-items:center;gap:.5rem;font-size:1rem;font-weight:700;color:var(--ccf-primary-dark);margin-bottom:.75rem}.ccf-cta-box__desc{font-size:.8rem;color:var(--ccf-primary-dark);opacity:.8;margin-bottom:1.25rem;line-height:1.5}.ccf-badge{padding:.25rem .625rem;border-radius:.375rem;font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:.025em}.ccf-badge--blue{background:#eff6ff;color:#1d4ed8}.ccf-badge--emerald{background:#ecfdf5;color:#047857}.ccf-badge--purple{background:#f5f3ff;color:#6d28d9}.ccf-badge--orange{background:#fff7ed;color:#c2410c}.ccf-badge--pink{background:#fdf2f8;color:#be185d}.ccf-meta-item{display:inline-flex;align-items:center;gap:.375rem;color:var(--ccf-text-light)}.ccf-meta-item svg{width:14px;height:14px}@media (max-width:1024px){.ccf-blog-grid{grid-template-columns:1fr}.ccf-featured-posts{grid-template-columns:1fr}}@media (max-width:640px){.ccf-blog-header__title{font-size:1.75rem}.ccf-post-row{flex-direction:column}.ccf-post-row__img-wrap{width:100%;height:80px}}.ccf-policy-header{padding:4rem 0 3rem;text-align:center}.ccf-policy-header__icon{width:4rem;height:4rem;border-radius:1rem;background:#ecfdf5;color:#10b981;display:inline-flex;align-items:center;justify-content:center;margin-bottom:1.5rem;font-size:1.75rem}.ccf-policy-header__title{font-size:2.5rem;font-weight:800;color:var(--ccf-text-dark);margin-bottom:.5rem}.ccf-policy-header__subtitle{color:var(--ccf-text-muted);font-size:.875rem}.ccf-policy-container{max-width:56rem;margin:0 auto;padding-bottom:5rem}.ccf-gdPR-banner{background:#eff6ff;border:1px solid #bfdbfe;border-radius:.75rem;padding:1.25rem 1.5rem;margin-bottom:2rem;display:flex;gap:1rem;align-items:flex-start}.ccf-gdPR-banner__icon{color:#3b82f6;flex-shrink:0;margin-top:.125rem}.ccf-gdPR-banner__content{font-size:.875rem;color:#1e40af;line-height:1.5}.ccf-gdPR-banner__title{font-weight:700;display:block;margin-bottom:.25rem}.ccf-policy-card{background:#fff;border:1px solid var(--ccf-border);border-radius:var(--ccf-radius-xl);padding:2rem;margin-bottom:1.5rem}.ccf-policy-card__header{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem}.ccf-policy-card__icon{width:2.5rem;height:2.5rem;border-radius:.5rem;background:#f8fafc;border:1px solid var(--ccf-border);display:flex;align-items:center;justify-content:center;color:var(--ccf-primary)}.ccf-policy-card__title{font-size:1.125rem;font-weight:700;color:var(--ccf-text-dark);margin:0}.ccf-policy-card__content{font-size:.875rem;color:var(--ccf-text-muted);line-height:1.6}.ccf-rights-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem;margin-top:1.5rem}.ccf-right-box{display:flex;align-items:center;gap:1rem;padding:1rem;background:#f8fafc;border-radius:.5rem;border:1px solid var(--ccf-border-light)}.ccf-right-box__icon{width:2.25rem;height:2.25rem;border-radius:.375rem;background:#fff;box-shadow:var(--ccf-shadow-sm);display:flex;align-items:center;justify-content:center;flex-shrink:0}.ccf-right-box__name{font-size:.8rem;font-weight:700;color:var(--ccf-text-dark);margin:0}.ccf-right-box__desc{font-size:.7rem;color:var(--ccf-text-light);margin:0}.ccf-policy-table{width:100%;border-collapse:collapse;margin-top:1rem;border-radius:.5rem;overflow:hidden;border:1px solid var(--ccf-border-light)}.ccf-policy-table th{background:#f8fafc;text-align:left;padding:.75rem 1rem;font-size:.75rem;font-weight:700;color:var(--ccf-text-dark);border-bottom:1px solid var(--ccf-border-light)}.ccf-policy-table td{padding:.75rem 1rem;font-size:.75rem;color:var(--ccf-text-muted);border-bottom:1px solid var(--ccf-border-light)}.ccf-policy-table tr:last-child td{border-bottom:none}@media (max-width:640px){.ccf-rights-grid{grid-template-columns:1fr}.ccf-policy-card{padding:1.5rem}.ccf-policy-header__title{font-size:1.75rem}}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgb(0 0 0 / .6);clip:auto!important;clip-path:none;color:#21759b;display:block;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.ccf-cookie-banner{position:fixed;bottom:2rem;left:2rem;right:2rem;z-index:10000;animation:ccf-slide-up 0.5s cubic-bezier(.16,1,.3,1)}@keyframes ccf-slide-up{from{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}.ccf-cookie-banner__inner{max-width:480px;margin:0 auto;background:rgb(255 255 255 / .95);backdrop-filter:blur(8px);border:1px solid var(--ccf-border);border-radius:1.25rem;padding:1.5rem;box-shadow:0 20px 25px -5px rgb(0 0 0 / .1),0 10px 10px -5px rgb(0 0 0 / .04)}.ccf-cookie-banner__content{display:flex;gap:1.25rem;margin-bottom:1.5rem}.ccf-cookie-banner__icon{font-size:2rem;flex-shrink:0}.ccf-cookie-banner__text{flex-grow:1}.ccf-cookie-banner__title{font-size:1.125rem;font-weight:700;color:var(--ccf-text-dark);margin:0 0 .25rem}.ccf-cookie-banner__desc{font-size:.875rem;line-height:1.5;color:var(--ccf-text-muted);margin:0}.ccf-cookie-banner__link{color:var(--ccf-primary);font-weight:600;text-decoration:underline}.ccf-cookie-banner__actions{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}@media (min-width:641px){.ccf-cookie-banner{left:auto;right:2rem;width:420px}}.ccf-404-container{min-height:80vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:4rem 1rem;background:radial-gradient(circle at center,rgb(16 185 129 / .05) 0%,transparent 70%)}.ccf-404__code{font-size:clamp(6rem, 20vw, 10rem);font-weight:900;line-height:1;background:linear-gradient(135deg,#10B981 0%,#059669 100%);-webkit-background-clip:text;-webkit-text-fill-color:#fff0;margin-bottom:1rem;filter:drop-shadow(0 10px 20px rgb(16 185 129 / .2))}.ccf-404__title{font-size:2.25rem;font-weight:800;color:var(--ccf-text-dark);margin:0 0 1rem}.ccf-404__desc{font-size:1.125rem;color:var(--ccf-text-muted);max-width:32rem;margin:0 auto 2.5rem}.ccf-accordion-list{display:flex;flex-direction:column;gap:.75rem}.ccf-faq-accordion-item{border:1px solid var(--ccf-border);border-radius:.75rem;background:#fff;overflow:hidden;transition:all 0.2s cubic-bezier(.16,1,.3,1)}.ccf-faq-accordion-item:hover{border-color:var(--ccf-primary)}.ccf-faq-accordion-item.active{border-color:var(--ccf-primary);box-shadow:0 4px 6px -1px rgb(0 0 0 / .05)}.ccf-faq-accordion-header{width:100%;display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;background:none;border:none;text-align:left;cursor:pointer;font-family:inherit;transition:background 0.2s}.ccf-faq-accordion-header:hover{background:var(--ccf-primary-light)}.ccf-faq-accordion-question{font-size:1rem;font-weight:600;color:var(--ccf-text-dark)}.ccf-faq-accordion-icon{width:1.5rem;height:1.5rem;background:#f8fafc;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--ccf-text-light);transition:transform 0.3s cubic-bezier(.16,1,.3,1)}.active .ccf-faq-accordion-icon{transform:rotate(180deg);background:var(--ccf-primary);color:#fff}.ccf-faq-accordion-item.active .ccf-faq-accordion-header{background:var(--ccf-primary-light);border-bottom:1px solid var(--ccf-border-light)}.ccf-faq-accordion-content{max-height:0;overflow:hidden;transition:max-height 0.3s cubic-bezier(.16,1,.3,1)}.ccf-faq-accordion-body{padding:1.25rem 1.5rem;font-size:.875rem;line-height:1.6;color:var(--ccf-text-muted)}.ccf-mobile-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgb(0 0 0 / .5);backdrop-filter:blur(4px);z-index:10000;display:none;opacity:0;transition:opacity 0.3s ease}.ccf-mobile-overlay.is-active{display:block;opacity:1}@media (min-width:1024px){.ccf-mobile-overlay{display:none!important}}.ccf-mobile-menu{position:fixed;top:0;right:0;height:100vh;background:#fff;z-index:10001;box-shadow:-10px 0 25px rgb(0 0 0 / .1);transform:translateX(100%);transition:transform 0.3s cubic-bezier(.16,1,.3,1),visibility 0s linear 0.3s;display:flex;flex-direction:column;visibility:hidden;pointer-events:none}.ccf-mobile-menu.is-active{transform:translateX(0);visibility:visible;pointer-events:auto;transition:transform 0.3s cubic-bezier(.16,1,.3,1),visibility 0s linear 0s}@media (min-width:768px){.ccf-mobile-menu{display:none!important}.ccf-mobile-overlay{display:none!important}}.ccf-mobile-menu__header{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;border-bottom:1px solid var(--ccf-border-light)}.ccf-mobile-menu__nav{flex-grow:1;padding:1rem 0;overflow-y:auto}.ccf-mobile-menu .ccf-header__logo-icon{background:var(--ccf-primary);color:#fff;width:32px;height:32px;border-radius:6px;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.75rem}.ccf-mobile-menu .ccf-mobile-nav-list{display:flex;flex-direction:column;padding:0 1rem;gap:.5rem}.ccf-mobile-menu .ccf-nav-link{width:100%;padding:.75rem 1rem;justify-content:flex-start}.ccf-breakdown-title{font-size:1.125rem;font-weight:700;color:var(--ccf-text-dark);margin-bottom:1.5rem;text-align:center}.ccf-decomp-grid{display:grid;grid-template-columns:repeat(16,1fr);gap:2px;margin-bottom:2.5rem}.ccf-decomp-char{aspect-ratio:1;background:var(--ccf-bg-alt);border:1px solid var(--ccf-border);display:flex;align-items:center;justify-content:center;font-family:var(--ccf-font-mono);font-weight:700;font-size:1.125rem;color:var(--ccf-primary-dark);border-radius:4px}.ccf-decomp-label{font-size:.625rem;color:var(--ccf-text-muted);text-align:center;padding-top:.5rem;text-transform:uppercase;letter-spacing:.025em;line-height:1.2}.ccf-reverse-summary{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem}.ccf-summary-card{background:#fff;border:1px solid var(--ccf-border);border-radius:var(--ccf-radius-lg);padding:1.25rem;display:flex;align-items:center;gap:1rem}.ccf-summary-card span{font-size:1.5rem;filter:grayscale(1);opacity:.7}.ccf-summary-card strong{display:block;font-size:.75rem;color:var(--ccf-text-muted);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.25rem}.ccf-summary-card p{margin:0;font-weight:700;color:var(--ccf-text-dark);font-size:1rem}.ccf-segment-table-wrap{background:#fff;border:1px solid var(--ccf-border);border-radius:var(--ccf-radius-lg);overflow:hidden}.ccf-segment-table{width:100%;border-collapse:collapse;font-size:.875rem}.ccf-segment-table th{background:var(--ccf-bg-alt);padding:1rem;text-align:left;font-weight:700;color:var(--ccf-text-dark);border-bottom:1px solid var(--ccf-border)}.ccf-segment-table td{padding:1rem;border-bottom:1px solid var(--ccf-border-light);color:var(--ccf-text-body)}.ccf-segment-table tr:last-child td{border-bottom:none}.ccf-segment-table code{background:var(--ccf-bg-alt);padding:.2rem .4rem;border-radius:4px;color:var(--ccf-primary-dark)}.ccf-details-title{font-size:.875rem;font-weight:700;color:var(--ccf-text-dark);margin-bottom:1.25rem;text-transform:uppercase;letter-spacing:.05em}.ccf-check-row{display:flex;gap:1rem;padding:1rem 0;border-bottom:1px solid var(--ccf-border-light)}.ccf-check-row:last-child{border-bottom:none}.ccf-check-row__status{width:1.5rem;height:1.5rem;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.75rem;flex-shrink:0}.ccf-check-row__status.is-ok{background:#dcfce7;color:#059669}.ccf-check-row__status.is-err{background:#fee2e2;color:#dc2626}.ccf-check-row__label{font-weight:700;font-size:.9375rem;color:var(--ccf-text-dark);margin-bottom:.25rem}.ccf-check-row__desc{font-size:.8125rem;color:var(--ccf-text-muted)}.ccf-summary-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:1rem;background:var(--ccf-bg-alt);padding:1.5rem;border-radius:var(--ccf-radius-lg)}.ccf-summary-item{display:flex;flex-direction:column}.ccf-summary-label{font-size:.75rem;color:var(--ccf-text-muted);margin-bottom:.25rem}.ccf-summary-value{font-weight:700;color:var(--ccf-text-dark)}.ccf-note{font-size:.8125rem;color:var(--ccf-text-muted);line-height:1.6}@media (max-width:640px){.ccf-decomp-grid{grid-template-columns:repeat(8,1fr)}.ccf-decomp-label{display:none}}