/* Sharp Premium Style - Auto-themed */
/* Unique class prefix: sp- */
/* Style: Sharp, Clean, Premium, High-contrast */

:root {
    --ahfk-black: #0d0d0d;
    --ahfk-charcoal: #1f121f;
    --ahfk-slate: #282924;
    --ahfk-graphite: #48403c;
    --ahfk-gold-primary: #21c85f;
    --ahfk-gold-bright: #efcd4d;
    --ahfk-gold-muted: #987218;
    --ahfk-gold-pale: #ece1b6;
    --ahfk-white: #ffffff;
    --ahfk-off-white: #f7f7f7;
    --ahfk-light-gray: #e9f0e8;
    --ahfk-medium-gray: #83818e;
    --ahfk-text-primary: #0C200E;
    --ahfk-text-secondary: #635a86;
    --ahfk-text-muted: #6e5e88;
    --ahfk-success: #168e54;
    --ahfk-danger: #ca153f;
    --ahfk-shadow-soft: 0 2px 15px rgba(0, 0, 0, 0.08);
    --ahfk-shadow-medium: 0 4px 25px rgba(0, 0, 0, 0.12);
    --ahfk-shadow-strong: 0 8px 40px rgba(0, 0, 0, 0.18);
    --ahfk-shadow-gold: 0 4px 20px rgba(195,166,89,0.25);
    --ahfk-transition-fast: 0.2s ease;
    --ahfk-transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --ahfk-radius-sm: 1px;
    --ahfk-radius-md: 5px;
    --ahfk-radius-lg: 7px;
    --ahfk-font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ahfk-font-heading: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ahfk-font-primary);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ahfk-text-primary);
    background-color: var(--ahfk-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ahfk-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ========================================
   HEADER - Sharp Premium Navigation
======================================== */
.ahfk-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--ahfk-white);
    border-bottom: 1px solid var(--ahfk-light-gray);
    box-shadow: var(--ahfk-shadow-soft);
}

.ahfk-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.ahfk-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: var(--ahfk-black);
}

.ahfk-brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(145deg, var(--ahfk-gold-primary) 0%, var(--ahfk-gold-muted) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--ahfk-black);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.ahfk-brand-name {
    font-family: var(--ahfk-font-heading);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ahfk-brand-name em {
    font-style: normal;
    color: var(--ahfk-gold-primary);
}

.ahfk-navigation {
    display: flex;
    align-items: center;
    gap: 39px;
}

.ahfk-nav-item {
    text-decoration: none;
    color: var(--ahfk-text-secondary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    transition: var(--ahfk-transition-fast);
    position: relative;
    padding: 7px 0;
}

.ahfk-nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--ahfk-gold-primary);
    transition: width var(--ahfk-transition-normal);
}

.ahfk-nav-item:hover {
    color: var(--ahfk-black);
}

.ahfk-nav-item:hover::after,
.ahfk-nav-item.active::after {
    width: 100%;
}

.ahfk-header-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 24px;
    background: var(--ahfk-black);
    color: var(--ahfk-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: var(--ahfk-transition-normal);
}

.ahfk-header-action:hover {
    background: var(--ahfk-gold-primary);
    color: var(--ahfk-black);
}

/* Mobile Menu Toggle */
.ahfk-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 11px;
    background: none;
    border: none;
    cursor: pointer;
}

.ahfk-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--ahfk-black);
    transition: var(--ahfk-transition-fast);
}

.ahfk-mobile-toggle.open .ahfk-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ahfk-mobile-toggle.open .ahfk-toggle-bar:nth-child(2) {
    opacity: 0;
}

.ahfk-mobile-toggle.open .ahfk-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.ahfk-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--ahfk-white);
    padding: 27px;
    border-bottom: 1px solid var(--ahfk-light-gray);
    box-shadow: var(--ahfk-shadow-medium);
    flex-direction: column;
    gap: 14px;
}

.ahfk-mobile-menu.visible {
    display: flex;
}

.ahfk-mobile-link {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--ahfk-light-gray);
    text-decoration: none;
    color: var(--ahfk-text-primary);
    font-size: 15px;
    font-weight: 500;
}

.ahfk-mobile-link:last-child {
    border-bottom: none;
}

/* ========================================
   HERO SECTION - Sharp Premium
======================================== */
.ahfk-hero {
    background: linear-gradient(165deg, var(--ahfk-black) 0%, var(--ahfk-charcoal) 50%, var(--ahfk-slate) 100%);
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}

.ahfk-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(196,172,97,0.08) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.ahfk-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.ahfk-hero-label {
    display: inline-block;
    padding: 7px 16px;
    background: rgba(193,162,88,0.15);
    border: 1px solid var(--ahfk-gold-muted);
    color: var(--ahfk-gold-bright);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.ahfk-hero-heading {
    font-family: var(--ahfk-font-heading);
    font-size: 52px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--ahfk-white);
    margin-bottom: 25px;
    letter-spacing: -0.4px;
}

.ahfk-hero-heading strong {
    color: var(--ahfk-gold-bright);
    font-weight: 600;
}

.ahfk-hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 37px;
    max-width: 620px;
}

.ahfk-hero-buttons {
    display: flex;
    gap: 19px;
    flex-wrap: wrap;
}

.ahfk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 29px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--ahfk-transition-normal);
}

.ahfk-btn-gold {
    background: linear-gradient(135deg, var(--ahfk-gold-primary) 0%, var(--ahfk-gold-muted) 100%);
    color: var(--ahfk-black);
}

.ahfk-btn-gold:hover {
    background: linear-gradient(135deg, var(--ahfk-gold-bright) 0%, var(--ahfk-gold-primary) 100%);
    box-shadow: var(--ahfk-shadow-gold);
    transform: translateY(-2px);
}

.ahfk-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--ahfk-white);
}

.ahfk-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--ahfk-white);
}

/* ========================================
   STAR RATING COMPONENT
======================================== */
.ahfk-rating-bar {
    background: var(--ahfk-off-white);
    border-top: 3px solid var(--ahfk-gold-primary);
    padding: 25px 0;
}

.ahfk-rating-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
}

.ahfk-rating-text {
    font-size: 13px;
    color: var(--ahfk-text-secondary);
    font-weight: 500;
}

.ahfk-star-group {
    display: flex;
    gap: 5px;
}

.ahfk-star {
    width: 19px;
    height: 18px;
    color: var(--ahfk-gold-primary);
}

.ahfk-star.empty {
    color: var(--ahfk-light-gray);
}

.ahfk-rating-score {
    font-size: 22px;
    font-weight: 700;
    color: var(--ahfk-black);
}

.ahfk-rating-count {
    font-size: 13px;
    color: var(--ahfk-text-muted);
}

/* ========================================
   COMPANY CARDS COMPONENT
======================================== */
.ahfk-providers-section {
    padding: 83px 0;
    background: var(--ahfk-white);
}

.ahfk-section-header {
    text-align: center;
    margin-bottom: 57px;
}

.ahfk-section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ahfk-gold-primary);
    margin-bottom: 13px;
}

.ahfk-section-title {
    font-family: var(--ahfk-font-heading);
    font-size: 40px;
    font-weight: 500;
    color: var(--ahfk-black);
    margin-bottom: 13px;
}

.ahfk-section-subtitle {
    font-size: 16px;
    color: var(--ahfk-text-secondary);
}

.ahfk-providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.ahfk-company-card {
    background: var(--ahfk-white);
    border: 1px solid var(--ahfk-light-gray);
    padding: 35px;
    position: relative;
    transition: var(--ahfk-transition-normal);
}

.ahfk-company-card:hover {
    border-color: var(--ahfk-gold-primary);
    box-shadow: var(--ahfk-shadow-medium);
    transform: translateY(-4px);
}

.ahfk-company-card.highlighted {
    border: 2px solid var(--ahfk-gold-primary);
    background: linear-gradient(180deg, var(--ahfk-white) 0%, rgba(197,172,82,0.03) 100%);
}

.ahfk-company-card.highlighted::before {
    content: 'TOP PICK';
    position: absolute;
    top: 0;
    right: 24px;
    background: var(--ahfk-gold-primary);
    color: var(--ahfk-black);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 7px 9px;
}

.ahfk-company-rank {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 32px;
    height: 32px;
    background: var(--ahfk-black);
    color: var(--ahfk-white);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ahfk-company-logo {
    height: 48px;
    max-width: 160px;
    object-fit: contain;
    margin: 17px auto 27px;
    display: block;
}

.ahfk-company-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--ahfk-black);
    text-align: center;
    margin-bottom: 5px;
}

.ahfk-company-tagline {
    font-size: 13px;
    color: var(--ahfk-text-muted);
    text-align: center;
    margin-bottom: 18px;
}

.ahfk-company-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-bottom: 20px;
}

.ahfk-company-stars .ahfk-star {
    width: 16px;
    height: 16px;
}

.ahfk-company-score {
    font-size: 14px;
    font-weight: 600;
    color: var(--ahfk-black);
}

.ahfk-company-meta {
    display: flex;
    justify-content: center;
    gap: 22px;
    font-size: 13px;
    color: var(--ahfk-text-secondary);
    margin-bottom: 22px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--ahfk-light-gray);
}

.ahfk-company-buttons {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ahfk-company-btn {
    display: block;
    text-align: center;
    padding: 15px 19px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--ahfk-transition-fast);
}

.ahfk-company-btn-primary {
    background: var(--ahfk-black);
    color: var(--ahfk-white);
}

.ahfk-company-btn-primary:hover {
    background: var(--ahfk-gold-primary);
    color: var(--ahfk-black);
}

.ahfk-company-btn-secondary {
    background: transparent;
    border: 1px solid var(--ahfk-light-gray);
    color: var(--ahfk-text-primary);
}

.ahfk-company-btn-secondary:hover {
    border-color: var(--ahfk-black);
}

/* ========================================
   VIDEO EMBED COMPONENT
======================================== */
.ahfk-video-section {
    padding: 73px 0;
    background: var(--ahfk-off-white);
}

.ahfk-video-container {
    max-width: 800px;
    margin: 0 auto;
}

.ahfk-video-header {
    text-align: center;
    margin-bottom: 29px;
}

.ahfk-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--ahfk-black);
    border: 1px solid var(--ahfk-light-gray);
}

.ahfk-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.ahfk-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ahfk-charcoal) 0%, var(--ahfk-black) 100%);
    cursor: pointer;
}

.ahfk-video-play {
    width: 80px;
    height: 80px;
    border: 3px solid var(--ahfk-gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--ahfk-transition-normal);
}

.ahfk-video-play svg {
    width: 32px;
    height: 32px;
    fill: var(--ahfk-gold-primary);
    margin-left: 3px;
}

.ahfk-video-placeholder:hover .ahfk-video-play {
    background: var(--ahfk-gold-primary);
    transform: scale(1.1);
}

.ahfk-video-placeholder:hover .ahfk-video-play svg {
    fill: var(--ahfk-black);
}

.ahfk-video-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

/* ========================================
   CONTENT ARTICLE SECTION
======================================== */
.ahfk-content-section {
    padding: 69px 0;
}

.ahfk-article {
    max-width: 760px;
    margin: 0 auto;
}

.ahfk-article h2 {
    font-family: var(--ahfk-font-heading);
    font-size: 34px;
    font-weight: 500;
    color: var(--ahfk-black);
    margin: 55px 0 25px;
    padding-top: 22px;
    border-top: 1px solid var(--ahfk-light-gray);
}

.ahfk-article h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.ahfk-article h3 {
    font-family: var(--ahfk-font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--ahfk-charcoal);
    margin: 35px 0 14px;
}

.ahfk-article p {
    margin-bottom: 21px;
    color: var(--ahfk-text-primary);
    line-height: 1.85;
}

.ahfk-article ul,
.ahfk-article ol {
    margin: 24px 0;
    padding-left: 31px;
}

.ahfk-article li {
    margin-bottom: 14px;
    line-height: 1.75;
    color: var(--ahfk-text-primary);
}

.ahfk-article ul li::marker {
    color: var(--ahfk-gold-primary);
}

.ahfk-article-img {
    margin: 37px 0;
    border: 2px solid var(--ahfk-light-gray);
    overflow: hidden;
}

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

.ahfk-article-img figcaption {
    padding: 13px 16px;
    background: var(--ahfk-off-white);
    font-size: 13px;
    color: var(--ahfk-text-secondary);
    text-align: center;
}

/* ========================================
   FAQ ACCORDION COMPONENT
======================================== */
.ahfk-faq-section {
    padding: 80px 0;
    background: var(--ahfk-off-white);
}

.ahfk-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.ahfk-faq-header {
    text-align: center;
    margin-bottom: 47px;
}

.ahfk-faq-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ahfk-faq-item {
    background: var(--ahfk-white);
    border: 1px solid var(--ahfk-light-gray);
    transition: var(--ahfk-transition-normal);
}

.ahfk-faq-item.open {
    border-color: var(--ahfk-gold-primary);
    box-shadow: var(--ahfk-shadow-soft);
}

.ahfk-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 19px;
    padding: 20px 27px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.ahfk-faq-question {
    font-size: 17px;
    font-weight: 600;
    color: var(--ahfk-black);
    line-height: 1.4;
}

.ahfk-faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border: 2px solid var(--ahfk-gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ahfk-transition-normal);
}

.ahfk-faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--ahfk-gold-primary);
    stroke-width: 2;
    transition: transform var(--ahfk-transition-normal);
}

.ahfk-faq-item.open .ahfk-faq-icon {
    background: var(--ahfk-gold-primary);
}

.ahfk-faq-item.open .ahfk-faq-icon svg {
    stroke: var(--ahfk-black);
    transform: rotate(180deg);
}

.ahfk-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ahfk-faq-item.open .ahfk-faq-content {
    max-height: 500px;
}

.ahfk-faq-answer {
    padding: 0 27px 24px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--ahfk-text-secondary);
}

/* ========================================
   FOOTER - Sharp Premium
======================================== */
.ahfk-footer {
    background: var(--ahfk-black);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 37px;
}

.ahfk-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 53px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ahfk-footer-brand-text {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 18px;
}

.ahfk-footer-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ahfk-white);
    margin-bottom: 17px;
}

.ahfk-footer-links {
    list-style: none;
}

.ahfk-footer-links li {
    margin-bottom: 15px;
}

.ahfk-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--ahfk-transition-fast);
}

.ahfk-footer-links a:hover {
    color: var(--ahfk-gold-primary);
}

.ahfk-footer-disclaimer {
    padding: 28px 0;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
}

.ahfk-footer-bottom {
    padding-top: 25px;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   STATIC PAGES STYLES
======================================== */
.ahfk-page-hero {
    background: linear-gradient(165deg, var(--ahfk-charcoal) 0%, var(--ahfk-black) 100%);
    padding: 72px 0;
    text-align: center;
}

.ahfk-page-title {
    font-family: var(--ahfk-font-heading);
    font-size: 42px;
    font-weight: 500;
    color: var(--ahfk-white);
    margin-bottom: 15px;
}

.ahfk-page-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.ahfk-page-content {
    padding: 58px 0 81px;
}

.ahfk-page-body {
    max-width: 760px;
    margin: 0 auto;
}

.ahfk-page-body h2 {
    font-family: var(--ahfk-font-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--ahfk-black);
    margin: 42px 0 15px;
}

.ahfk-page-body h2:first-child {
    margin-top: 0;
}

.ahfk-page-body p {
    margin-bottom: 21px;
    line-height: 1.8;
    color: var(--ahfk-text-primary);
}

.ahfk-page-body ul {
    margin: 19px 0;
    padding-left: 24px;
}

.ahfk-page-body li {
    margin-bottom: 11px;
    line-height: 1.75;
}

/* Contact Form */
.ahfk-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.ahfk-contact-info h3 {
    font-family: var(--ahfk-font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--ahfk-black);
    margin-bottom: 15px;
}

.ahfk-contact-info p {
    margin-bottom: 17px;
    color: var(--ahfk-text-secondary);
    line-height: 1.7;
}

.ahfk-contact-form {
    background: var(--ahfk-off-white);
    padding: 35px;
    border: 1px solid var(--ahfk-light-gray);
}

.ahfk-form-group {
    margin-bottom: 23px;
}

.ahfk-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ahfk-text-primary);
    margin-bottom: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.ahfk-form-input,
.ahfk-form-textarea {
    width: 100%;
    padding: 11px 19px;
    font-family: inherit;
    font-size: 15px;
    border: 1px solid var(--ahfk-light-gray);
    background: var(--ahfk-white);
    color: var(--ahfk-text-primary);
    transition: var(--ahfk-transition-fast);
}

.ahfk-form-input:focus,
.ahfk-form-textarea:focus {
    outline: none;
    border-color: var(--ahfk-gold-primary);
}

.ahfk-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.ahfk-form-submit {
    width: 100%;
    padding: 16px 27px;
    background: var(--ahfk-black);
    color: var(--ahfk-white);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--ahfk-transition-normal);
}

.ahfk-form-submit:hover {
    background: var(--ahfk-gold-primary);
    color: var(--ahfk-black);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .ahfk-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 39px;
    }
}

@media (max-width: 768px) {
    .ahfk-header { position: relative !important; }
    .ahfk-wrapper {
        padding: 0 21px;
    }

    .ahfk-navigation,
    .ahfk-header-action {
        display: none;
    }

    .ahfk-mobile-toggle {
        display: flex;
    }

    .ahfk-hero {
        padding: 70px 0 63px;
    }

    .ahfk-hero-heading {
        font-size: 36px;
    }

    .ahfk-hero-description {
        font-size: 16px;
    }

    .ahfk-hero-buttons {
        flex-direction: column;
    }

    .ahfk-btn {
        width: 100%;
    }

    .ahfk-section-title {
        font-size: 32px;
    }

    .ahfk-providers-grid {
        grid-template-columns: 1fr;
    }

    .ahfk-article h2 {
        font-size: 28px;
    }

    .ahfk-faq-question {
        font-size: 15px;
    }

    .ahfk-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ahfk-contact-grid {
        grid-template-columns: 1fr;
    }

    .ahfk-page-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .ahfk-hero-heading {
        font-size: 30px;
    }

    .ahfk-company-card {
        padding: 21px;
    }

    .ahfk-faq-trigger {
        padding: 21px 19px;
    }

    .ahfk-faq-answer {
        padding: 0 18px 21px;
    }
}

/* =============================================
   COMPANIES TABLE STYLES
   ============================================= */

.ahfk-companies-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border: 2px solid var(--ahfk-light-gray);
    background: var(--ahfk-white);
}

.ahfk-companies-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--ahfk-white);
    font-size: 15px;
}

.ahfk-companies-table thead {
    background: var(--ahfk-black);
    color: var(--ahfk-white);
}

.ahfk-companies-table thead th {
    padding: 15px 19px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.ahfk-companies-table tbody tr {
    border-bottom: 1px solid var(--ahfk-light-gray);
    transition: var(--ahfk-transition-fast);
}

.ahfk-companies-table tbody tr:hover {
    background: var(--ahfk-off-white);
}

.ahfk-companies-table tbody tr:last-child {
    border-bottom: none;
}

.ahfk-companies-table td {
    padding: 20px 19px;
    vertical-align: middle;
}

.ahfk-company-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ahfk-rank-badge {
    width: 29px;
    height: 32px;
    background: var(--ahfk-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--ahfk-white);
    font-size: 13px;
    flex-shrink: 0;
}

.ahfk-company-name {
    font-weight: 600;
    color: var(--ahfk-black);
    font-size: 16px;
}

.ahfk-company-highlight {
    font-size: 13px;
    color: var(--ahfk-text-muted);
    margin-top: 3px;
}

.ahfk-rating-stars {
    display: flex;
    align-items: center;
    gap: 7px;
}

.ahfk-stars {
    display: flex;
    gap: 3px;
}

.ahfk-star {
    color: var(--ahfk-gold-primary);
    font-size: 16px;
}

.ahfk-star.empty {
    color: var(--ahfk-light-gray);
}

.ahfk-rating-score {
    font-weight: 700;
    color: var(--ahfk-black);
    font-size: 15px;
}

.ahfk-bbb-badge {
    display: inline-flex;
    padding: 4px 10px;
    background: var(--ahfk-off-white);
    border: 1px solid var(--ahfk-light-gray);
    font-weight: 600;
    font-size: 13px;
    color: var(--ahfk-black);
}

.ahfk-minimum-amount {
    font-weight: 600;
    color: var(--ahfk-text-primary);
}

.ahfk-table-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.ahfk-feature-tag {
    display: inline-block;
    padding: 5px 7px;
    background: var(--ahfk-off-white);
    font-size: 12px;
    color: var(--ahfk-text-secondary);
    white-space: nowrap;
}

.ahfk-table-actions {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.ahfk-btn-visit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 21px;
    background: var(--ahfk-black);
    color: var(--ahfk-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: var(--ahfk-transition-normal);
    white-space: nowrap;
}

.ahfk-btn-visit:hover {
    background: var(--ahfk-gold-primary);
    color: var(--ahfk-black);
}

.ahfk-btn-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 17px;
    background: transparent;
    color: var(--ahfk-text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: var(--ahfk-transition-fast);
    border: 1px solid var(--ahfk-light-gray);
    white-space: nowrap;
}

.ahfk-btn-review:hover {
    border-color: var(--ahfk-black);
}

/* Mobile Table Card Layout */
@media (max-width: 900px) {
    .ahfk-companies-table thead {
        display: none;
    }

    .ahfk-companies-table tbody tr {
        display: block;
        padding: 24px;
        margin-bottom: 19px;
        border: 2px solid var(--ahfk-light-gray);
        background: var(--ahfk-white);
    }

    .ahfk-companies-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 7px 0;
        border-bottom: 2px solid var(--ahfk-light-gray);
    }

    .ahfk-companies-table td:last-child {
        border-bottom: none;
        padding-top: 15px;
    }

    .ahfk-companies-table td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 11px;
        color: var(--ahfk-text-muted);
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .ahfk-company-info {
        flex-direction: row-reverse;
    }

    .ahfk-table-actions {
        width: 100%;
        justify-content: stretch;
    }

    .ahfk-btn-visit,
    .ahfk-btn-review {
        flex: 1;
        text-align: center;
    }
}

/* =============================================
   REVIEW PAGE STYLES
   ============================================= */

.ahfk-review-header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid var(--ahfk-light-gray);
    margin-bottom: 42px;
}

.ahfk-review-title {
    font-family: var(--ahfk-font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    color: var(--ahfk-black);
    margin-bottom: 15px;
}

.ahfk-review-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.ahfk-review-rating-large {
    display: flex;
    align-items: center;
    gap: 13px;
}

.ahfk-review-badge {
    padding: 8px 19px;
    background: var(--ahfk-gold-primary);
    font-weight: 700;
    font-size: 13px;
    color: var(--ahfk-black);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.ahfk-quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 19px;
    padding: 28px;
    background: var(--ahfk-off-white);
    border: 1px solid var(--ahfk-light-gray);
    margin-bottom: 40px;
}

.ahfk-fact-item {
    text-align: center;
    padding: 19px;
    background: var(--ahfk-white);
    border: 1px solid var(--ahfk-light-gray);
}

.ahfk-fact-label {
    font-size: 11px;
    color: var(--ahfk-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.ahfk-fact-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--ahfk-black);
}

.ahfk-pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 43px 0;
}

.ahfk-pros,
.ahfk-cons {
    padding: 30px;
    border: 1px solid var(--ahfk-light-gray);
}

.ahfk-pros {
    background: linear-gradient(180deg, var(--ahfk-white) 0%, rgba(18,128,88,0.03) 100%);
    border-left: 3px solid var(--ahfk-success);
}

.ahfk-cons {
    background: linear-gradient(180deg, var(--ahfk-white) 0%, rgba(189,29,54,0.03) 100%);
    border-left: 3px solid var(--ahfk-danger);
}

.ahfk-pros h3 {
    color: var(--ahfk-success);
    margin-bottom: 14px;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ahfk-cons h3 {
    color: var(--ahfk-danger);
    margin-bottom: 19px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.ahfk-pros ul,
.ahfk-cons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ahfk-pros li,
.ahfk-cons li {
    padding: 13px 0;
    padding-left: 27px;
    position: relative;
    border-bottom: 1px solid var(--ahfk-light-gray);
}

.ahfk-pros li:last-child,
.ahfk-cons li:last-child {
    border-bottom: none;
}

.ahfk-pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ahfk-success);
    font-weight: 700;
}

.ahfk-cons li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--ahfk-danger);
    font-weight: 700;
}

.ahfk-fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border: 1px solid var(--ahfk-light-gray);
}

.ahfk-fee-table thead {
    background: var(--ahfk-black);
    color: var(--ahfk-white);
}

.ahfk-fee-table th,
.ahfk-fee-table td {
    padding: 19px 22px;
    text-align: left;
}

.ahfk-fee-table tbody tr {
    border-bottom: 1px solid var(--ahfk-light-gray);
}

.ahfk-fee-table tbody tr:nth-child(even) {
    background: var(--ahfk-off-white);
}

.ahfk-cta-box {
    background: var(--ahfk-black);
    color: var(--ahfk-white);
    padding: 43px;
    text-align: center;
    margin: 47px 0;
    position: relative;
    overflow: hidden;
}

.ahfk-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(195,171,97,0.1) 100%);
    pointer-events: none;
}

.ahfk-cta-box h3 {
    font-family: var(--ahfk-font-heading);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 13px;
    position: relative;
    z-index: 1;
}

.ahfk-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.ahfk-cta-box .ahfk-btn {
    position: relative;
    z-index: 1;
}

.ahfk-btn-primary {
    background: linear-gradient(135deg, var(--ahfk-gold-primary) 0%, var(--ahfk-gold-muted) 100%);
    color: var(--ahfk-black);
    padding: 19px 38px;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: var(--ahfk-transition-normal);
}

.ahfk-btn-primary:hover {
    background: linear-gradient(135deg, var(--ahfk-gold-bright) 0%, var(--ahfk-gold-primary) 100%);
    box-shadow: var(--ahfk-shadow-gold);
    transform: translateY(-2px);
}

.ahfk-other-companies {
    margin-top: 58px;
    padding-top: 41px;
    border-top: 1px solid var(--ahfk-light-gray);
}

.ahfk-other-companies h3 {
    font-family: var(--ahfk-font-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--ahfk-black);
    margin-bottom: 26px;
    text-align: center;
}

.ahfk-other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 23px;
}

.ahfk-other-card {
    padding: 23px;
    background: var(--ahfk-white);
    border: 1px solid var(--ahfk-light-gray);
    transition: var(--ahfk-transition-normal);
}

.ahfk-other-card:hover {
    box-shadow: var(--ahfk-shadow-medium);
    border-color: var(--ahfk-gold-primary);
}

.ahfk-other-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ahfk-black);
    margin-bottom: 8px;
}

.ahfk-other-card p {
    font-size: 17px;
    color: var(--ahfk-text-secondary);
    margin-bottom: 14px;
}

.ahfk-other-card a {
    color: var(--ahfk-gold-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.ahfk-other-card a:hover {
    color: var(--ahfk-black);
}


/* Force Mobile Table Cards */
@media screen and (max-width: 768px) {
    .ahfk-companies-section .ahfk-companies-table-wrapper {
        overflow: visible !important;
        background: transparent !important;
    }

    .ahfk-companies-section table.ahfk-companies-table {
        display: block !important;
        width: 100% !important;
    }

    .ahfk-companies-section .ahfk-companies-table thead {
        display: none !important;
    }

    .ahfk-companies-section .ahfk-companies-table tbody,
    .ahfk-companies-section .ahfk-companies-table tr {
        display: block !important;
        width: 100% !important;
    }

    .ahfk-companies-section .ahfk-companies-table tbody tr.ahfk-company-row {
        background: #fff !important;
        margin-bottom: 18px !important;
        border-radius: 17px !important;
        box-shadow: 0 4px 27px rgba(88,32,53,0.1) !important;
        padding: 22px !important;
        border: 1px solid rgba(89,23,40,0.08);
    }

    .ahfk-companies-section .ahfk-companies-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 0 !important;
        border: none !important;
        border-bottom: 1px solid #f5f5f5 !important;
    }

    .ahfk-companies-section .ahfk-companies-table td:last-child {
        border-bottom: none !important;
    }

    .ahfk-companies-section .ahfk-companies-table td::before {
        content: attr(data-label) !important;
        font-weight: 700 !important;
        color: #611d2b !important;
        flex-shrink: 0 !important;
        margin-right: 13px !important;
        font-size: 0.85rem !important;
    }

    .ahfk-companies-section .ahfk-td-company {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 17px !important;
        border-bottom: 2px solid #eee9d4 !important;
    }

    .ahfk-companies-section .ahfk-td-company::before {
        display: none !important;
    }

    .ahfk-companies-section .ahfk-td-rank {
        justify-content: center !important;
        padding-top: 0 !important;
        border-bottom: none !important;
    }

    .ahfk-companies-section .ahfk-td-rank::before {
        display: none !important;
    }

    .ahfk-companies-section .ahfk-td-action {
        flex-direction: column !important;
        padding-top: 19px !important;
        border-top: 3px solid #f5ecd9 !important;
        border-bottom: none !important;
    }

    .ahfk-companies-section .ahfk-td-action::before {
        display: none !important;
    }

    .ahfk-companies-section .ahfk-td-action .ahfk-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 11px 27px !important;
        font-size: 1rem !important;
    }
}

/* Hamburger Menu Styles */
.ahfk-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.ahfk-menu-line {
    width: 25px;
    height: 3px;
    background: var(--ahfk-text, #2a2e46);
    border-radius: 3px;
    transition: 0.3s;
}

.ahfk-menu-toggle.active .ahfk-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.ahfk-menu-toggle.active .ahfk-menu-line:nth-child(2) {
    opacity: 0;
}

.ahfk-menu-toggle.active .ahfk-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .ahfk-menu-toggle {
        display: flex;
    }
}


/* Header Container Fix */
.ahfk-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ahfk-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* Navigation Responsive Fix */
@media (max-width: 768px) {
    .ahfk-nav {
        display: none !important;
    }

    .ahfk-menu-toggle {
        display: flex !important;
    }
}


/* Mobile Navigation Hidden by Default */
.ahfk-mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 15px 22px;
    border-top: 2px solid #eee;
}

.ahfk-mobile-nav.active {
    display: flex;
}

.ahfk-mobile-link {
    padding: 12px 0;
    color: var(--ahfk-text, #35324b);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.ahfk-mobile-link:last-child {
    border-bottom: none;
}

.ahfk-mobile-link:hover {
    color: var(--ahfk-accent, #e20a13);
}


/* SVG Logo & Mobile Fixes */
.ahfk-logo-svg {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.ahfk-logo-text {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .ahfk-logo-svg {
        width: 28px;
        height: 28px;
    }
}

/* Company logos 50% width on mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .ahfk-company-logo {
        width: 50vw !important;
        max-width: 50vw !important;
        height: auto !important;
        max-height: none !important;
    }
}

/* Center company logos on mobile */
@media screen and (max-width: 768px) {
    .ahfk-company-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .ahfk-company-info {
        text-align: center !important;
    }

    .ahfk-company-name {
        text-align: center !important;
    }

    .ahfk-company-badge {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


/* Max width 1400px for desktop */
.ahfk-wrapper, .ahfk-content, .ahfk-hero-inner, .ahfk-companies-container, 
.ahfk-article, .ahfk-container, .ahfk-footer-inner, .ahfk-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.ahfk-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.ahfk-td-action {
    text-align: center !important;
}
.ahfk-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 7px !important;
}
