/* Hermès Magnificent Style - Auto-themed */
/* Unique class prefix: hm- (Hermès Magnificent) */

:root {
    --hakb-brand: #e9640a;
    --hakb-brand-light: #f57f2c;
    --hakb-brand-dark: #c24c0a;
    --hakb-cream: #FDF8F3;
    --hakb-ivory: #F9F5F0;
    --hakb-chocolate: #453111;
    --hakb-espresso: #27210a;
    --hakb-saddle: #94451b;
    --hakb-text: #0c1329;
    --hakb-text-muted: #646b87;
    --hakb-border: #d8efe7;
    --hakb-border-dark: #c5b8ab;
    --hakb-success: #247f46;
    --hakb-danger: #bb3e2e;
    --hakb-shadow-sm: 0 2px 8px rgba(61,41,18,0.08);
    --hakb-shadow-md: 0 6px 24px rgba(64,35,27,0.12);
    --hakb-shadow-lg: 0 12px 48px rgba(63,45,19,0.16);
    --hakb-shadow-brand: 0 8px 32px rgba(235,91,10,0.25);
    --hakb-radius-sm: 4px;
    --hakb-radius-md: 9px;
    --hakb-radius-lg: 10px;
    --hakb-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--hakb-text);
    background: var(--hakb-cream);
    -webkit-font-smoothing: antialiased;
}

.hakb-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 25px;
}

/* === HEADER === */
.hakb-masthead {
    background: var(--hakb-espresso);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 3px solid var(--hakb-brand);
}

.hakb-masthead-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.hakb-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.hakb-brand-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--hakb-brand), var(--hakb-brand-light));
    border-radius: var(--hakb-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    letter-spacing: -2px;
}

.hakb-brand-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.hakb-brand-name em {
    font-style: normal;
    color: var(--hakb-brand-light);
}

.hakb-main-nav {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hakb-nav-item {
    padding: 8px 19px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.2px;
    border-radius: var(--hakb-radius-sm);
    transition: var(--hakb-transition);
    position: relative;
}

.hakb-nav-item::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--hakb-brand);
    transform: scaleX(0);
    transition: transform var(--hakb-transition);
}

.hakb-nav-item:hover {
    color: #fff;
}

.hakb-nav-item:hover::after,
.hakb-nav-item--active::after {
    transform: scaleX(1);
}

.hakb-nav-item--active {
    color: #fff;
}

.hakb-nav-cta {
    margin-left: 14px;
    padding: 11px 27px;
    background: linear-gradient(145deg, var(--hakb-brand), var(--hakb-brand-dark));
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: var(--hakb-radius-sm);
    transition: var(--hakb-transition);
}

.hakb-nav-cta:hover {
    background: linear-gradient(145deg, var(--hakb-brand-light), var(--hakb-brand));
    box-shadow: var(--hakb-shadow-brand);
    transform: translateY(-2px);
}

/* Burger Menu */
.hakb-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 9px;
    z-index: 1001;
}

.hakb-burger-line {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: var(--hakb-transition);
    border-radius: 3px;
}

.hakb-burger.active .hakb-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hakb-burger.active .hakb-burger-line:nth-child(2) {
    opacity: 0;
}

.hakb-burger.active .hakb-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

.hakb-mobile-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--hakb-espresso);
    padding: 22px;
    flex-direction: column;
    gap: 3px;
    border-bottom: 4px solid var(--hakb-brand);
    z-index: 998;
}

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

.hakb-mobile-link {
    padding: 11px 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--hakb-transition);
}

.hakb-mobile-link:hover {
    color: var(--hakb-brand-light);
    padding-left: 15px;
}

/* === HERO SECTION === */
.hakb-hero {
    background: linear-gradient(165deg, var(--hakb-espresso) 0%, var(--hakb-chocolate) 100%);
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}

.hakb-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='%23E65C00' fill-opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.8;
}

.hakb-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hakb-hero-badge {
    display: inline-block;
    padding: 9px 29px;
    background: rgba(223,96,10,0.15);
    border: 1px solid rgba(222,90,10,0.4);
    border-radius: 52px;
    color: var(--hakb-brand-light);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 29px;
}

.hakb-hero-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 58px;
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 23px;
    letter-spacing: -2px;
}

.hakb-hero-headline span {
    color: var(--hakb-brand-light);
}

.hakb-hero-subline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 680px;
    margin: 0 auto 45px;
    line-height: 1.7;
}

.hakb-hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.hakb-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 14px 35px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border-radius: var(--hakb-radius-sm);
    transition: var(--hakb-transition);
    border: none;
    cursor: pointer;
}

.hakb-btn-primary {
    background: linear-gradient(145deg, var(--hakb-brand), var(--hakb-brand-dark));
    color: #fff;
    box-shadow: var(--hakb-shadow-brand);
}

.hakb-btn-primary:hover {
    background: linear-gradient(145deg, var(--hakb-brand-light), var(--hakb-brand));
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(224,95,10,0.35);
}

.hakb-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hakb-btn-outline:hover {
    border-color: var(--hakb-brand-light);
    color: var(--hakb-brand-light);
    background: rgba(226,96,10,0.1);
}

/* === ALERT BANNER === */
.hakb-alert-ribbon {
    background: linear-gradient(90deg, var(--hakb-brand-dark), var(--hakb-brand), var(--hakb-brand-dark));
    padding: 15px 26px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hakb-alert-ribbon svg {
    width: 17px;
    height: 20px;
    flex-shrink: 0;
}

/* === TRUST BADGES === */
.hakb-trust-strip {
    background: var(--hakb-ivory);
    padding: 39px 0;
    border-bottom: 1px solid var(--hakb-border);
}

.hakb-trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 49px;
}

.hakb-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--hakb-text-muted);
    font-size: 14px;
    font-weight: 600;
}

.hakb-trust-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--hakb-cream), #fff);
    border: 2px solid var(--hakb-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hakb-brand);
}

.hakb-trust-icon svg {
    width: 22px;
    height: 22px;
}

/* === COMPANIES TABLE === */
.hakb-providers-block {
    padding: 90px 0;
    background: var(--hakb-cream);
}

.hakb-section-header {
    text-align: center;
    margin-bottom: 54px;
}

.hakb-section-label {
    display: inline-block;
    padding: 7px 23px;
    background: var(--hakb-brand);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: var(--hakb-radius-sm);
    margin-bottom: 23px;
}

.hakb-section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 44px;
    font-weight: 600;
    color: var(--hakb-chocolate);
    margin-bottom: 17px;
    letter-spacing: -0.4px;
}

.hakb-section-desc {
    font-size: 18px;
    color: var(--hakb-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.hakb-companies-list {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.hakb-company-row {
    display: grid;
    grid-template-columns: 50px 130px 1fr auto auto;
    align-items: center;
    gap: 28px;
    padding: 29px 30px;
    background: #fff;
    border-radius: var(--hakb-radius-md);
    border: 1px solid var(--hakb-border);
    transition: var(--hakb-transition);
}

.hakb-company-row:hover {
    border-color: var(--hakb-brand);
    box-shadow: var(--hakb-shadow-md);
    transform: translateX(8px);
}

.hakb-company-row--featured {
    background: var(--hakb-espresso);
    border-color: var(--hakb-brand);
    box-shadow: var(--hakb-shadow-lg);
}

.hakb-company-row--featured:hover {
    transform: translateX(8px) translateY(-2px);
}

.hakb-company-rank {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    border-radius: 50%;
    background: var(--hakb-ivory);
    color: var(--hakb-text-muted);
    border: 2px solid var(--hakb-border);
}

.hakb-company-row--featured .hakb-company-rank {
    background: linear-gradient(145deg, var(--hakb-brand), var(--hakb-brand-dark));
    color: #fff;
    border-color: var(--hakb-brand-light);
}

.hakb-company-logo {
    width: 130px;
    height: auto;
    max-height: 48px;
    object-fit: contain;
    background: #fff;
    padding: 5px;
    border-radius: var(--hakb-radius-sm);
}

.hakb-company-info {
    min-width: 0;
}

.hakb-company-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--hakb-chocolate);
    margin-bottom: 5px;
}

.hakb-company-row--featured .hakb-company-name {
    color: #fff;
}

.hakb-company-tagline {
    font-size: 14px;
    color: var(--hakb-text-muted);
}

.hakb-company-row--featured .hakb-company-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.hakb-company-stats {
    display: flex;
    gap: 25px;
}

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

.hakb-stat-value {
    font-weight: 700;
    font-size: 16px;
    color: var(--hakb-chocolate);
}

.hakb-company-row--featured .hakb-stat-value {
    color: var(--hakb-brand-light);
}

.hakb-stat-label {
    font-size: 12px;
    color: var(--hakb-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.hakb-company-row--featured .hakb-stat-label {
    color: rgba(255, 255, 255, 0.6);
}

.hakb-company-actions {
    display: flex;
    gap: 9px;
}

.hakb-company-btn {
    padding: 14px 27px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
    border-radius: var(--hakb-radius-sm);
    transition: var(--hakb-transition);
    white-space: nowrap;
}

.hakb-company-btn--primary {
    background: linear-gradient(145deg, var(--hakb-brand), var(--hakb-brand-dark));
    color: #fff;
}

.hakb-company-btn--primary:hover {
    background: linear-gradient(145deg, var(--hakb-brand-light), var(--hakb-brand));
    transform: translateY(-2px);
}

.hakb-company-btn--secondary {
    background: transparent;
    color: var(--hakb-brand);
    border: 2px solid var(--hakb-brand);
}

.hakb-company-btn--secondary:hover {
    background: var(--hakb-brand);
    color: #fff;
}

/* === CONTENT SECTION === */
.hakb-content-block {
    padding: 90px 0;
    background: #fff;
}

.hakb-article {
    max-width: 800px;
    margin: 0 auto;
}

.hakb-article h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--hakb-chocolate);
    margin: 59px 0 24px;
    padding-bottom: 17px;
    border-bottom: 2px solid var(--hakb-brand);
    display: inline-block;
}

.hakb-article h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--hakb-chocolate);
    margin: 43px 0 15px;
}

.hakb-article p {
    margin-bottom: 24px;
    color: var(--hakb-text);
    line-height: 1.85;
}

.hakb-article ul, .hakb-article ol {
    margin: 31px 0;
    padding-left: 0;
    list-style: none;
}

.hakb-article li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 15px;
    color: var(--hakb-text);
}

.hakb-article li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    background: linear-gradient(145deg, var(--hakb-brand), var(--hakb-brand-light));
    border-radius: 1px;
    transform: rotate(45deg);
}

/* Image Styling */
.hakb-article-image {
    margin: 50px 0;
    border-radius: var(--hakb-radius-lg);
    overflow: hidden;
    box-shadow: var(--hakb-shadow-lg);
    border: 4px solid var(--hakb-ivory);
}

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

/* === PROS CONS LIST === */
.hakb-verdict-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 49px 0;
}

.hakb-verdict-card {
    padding: 30px;
    border-radius: var(--hakb-radius-md);
    border: 1px solid var(--hakb-border);
}

.hakb-verdict-card--pros {
    background: linear-gradient(180deg, rgba(46,129,68,0.05) 0%, transparent 100%);
    border-color: var(--hakb-success);
}

.hakb-verdict-card--cons {
    background: linear-gradient(180deg, rgba(184,63,57,0.05) 0%, transparent 100%);
    border-color: var(--hakb-danger);
}

.hakb-verdict-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hakb-verdict-card--pros .hakb-verdict-title {
    color: var(--hakb-success);
}

.hakb-verdict-card--cons .hakb-verdict-title {
    color: var(--hakb-danger);
}

.hakb-verdict-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hakb-verdict-list li {
    padding: 15px 0 12px 29px;
    position: relative;
    border-bottom: 1px solid var(--hakb-border);
    font-size: 15px;
}

.hakb-verdict-list li:last-child {
    border-bottom: none;
}

.hakb-verdict-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hakb-verdict-card--pros .hakb-verdict-list li::before {
    background: var(--hakb-success);
}

.hakb-verdict-card--cons .hakb-verdict-list li::before {
    background: var(--hakb-danger);
}

/* === FAQ ACCORDION === */
.hakb-faq-block {
    padding: 90px 0;
    background: var(--hakb-ivory);
}

.hakb-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.hakb-faq-item {
    background: #fff;
    border-radius: var(--hakb-radius-md);
    border: 1px solid var(--hakb-border);
    overflow: hidden;
    transition: var(--hakb-transition);
}

.hakb-faq-item:hover {
    border-color: var(--hakb-brand);
}

.hakb-faq-item.active {
    border-color: var(--hakb-brand);
    box-shadow: var(--hakb-shadow-md);
}

.hakb-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 19px;
    padding: 27px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--hakb-transition);
}

.hakb-faq-trigger:hover {
    background: var(--hakb-cream);
}

.hakb-faq-question {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--hakb-chocolate);
}

.hakb-faq-icon {
    width: 36px;
    height: 36px;
    background: var(--hakb-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--hakb-transition);
    color: var(--hakb-brand);
}

.hakb-faq-item.active .hakb-faq-icon {
    background: var(--hakb-brand);
    color: #fff;
    transform: rotate(180deg);
}

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

.hakb-faq-item.active .hakb-faq-body {
    max-height: 600px;
}

.hakb-faq-answer {
    padding: 0 26px 23px;
    font-size: 19px;
    line-height: 1.75;
    color: var(--hakb-text);
}

/* === FOOTER === */
.hakb-footer {
    background: var(--hakb-espresso);
    color: rgba(255, 255, 255, 0.8);
    padding: 77px 0 42px;
}

.hakb-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 51px;
    margin-bottom: 48px;
    padding-bottom: 49px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hakb-footer-brand-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 19px;
}

.hakb-footer-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 22px;
}

.hakb-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hakb-footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 15px;
    transition: var(--hakb-transition);
}

.hakb-footer-links a:hover {
    color: var(--hakb-brand-light);
    padding-left: 7px;
}

.hakb-footer-disclaimer {
    padding: 22px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--hakb-radius-md);
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 35px;
}

.hakb-footer-bottom {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* === STATIC PAGES === */
.hakb-page-header {
    background: linear-gradient(165deg, var(--hakb-espresso) 0%, var(--hakb-chocolate) 100%);
    padding: 72px 0;
    text-align: center;
}

.hakb-page-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.hakb-page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.hakb-page-content {
    padding: 78px 0;
    background: #fff;
}

.hakb-page-article {
    max-width: 800px;
    margin: 0 auto;
}

.hakb-page-article h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--hakb-chocolate);
    margin: 37px 0 20px;
}

.hakb-page-article p {
    margin-bottom: 23px;
    line-height: 1.8;
}

.hakb-page-article ul {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.hakb-page-article li {
    position: relative;
    padding-left: 29px;
    margin-bottom: 10px;
}

.hakb-page-article li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--hakb-brand);
    border-radius: 50%;
}

/* Contact Form */
.hakb-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 62px;
    margin-top: 51px;
}

.hakb-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hakb-contact-item {
    display: flex;
    gap: 19px;
    align-items: flex-start;
}

.hakb-contact-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, var(--hakb-brand), var(--hakb-brand-dark));
    border-radius: var(--hakb-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hakb-contact-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.hakb-contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--hakb-chocolate);
    margin-bottom: 5px;
}

.hakb-contact-details p {
    font-size: 15px;
    color: var(--hakb-text-muted);
    margin: 0;
}

.hakb-form-wrap {
    background: var(--hakb-cream);
    padding: 41px;
    border-radius: var(--hakb-radius-lg);
    border: 1px solid var(--hakb-border);
}

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

.hakb-form-label {
    display: block;
    font-weight: 600;
    color: var(--hakb-chocolate);
    margin-bottom: 11px;
    font-size: 11px;
}

.hakb-form-input,
.hakb-form-textarea,
.hakb-form-select {
    width: 100%;
    padding: 16px 21px;
    border: 2px solid var(--hakb-border);
    border-radius: var(--hakb-radius-sm);
    font-family: inherit;
    font-size: 17px;
    transition: var(--hakb-transition);
    background: #fff;
}

.hakb-form-input:focus,
.hakb-form-textarea:focus,
.hakb-form-select:focus {
    outline: none;
    border-color: var(--hakb-brand);
    box-shadow: 0 0 0 4px rgba(225,94,10,0.1);
}

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

.hakb-form-submit {
    width: 100%;
    padding: 21px;
    background: linear-gradient(145deg, var(--hakb-brand), var(--hakb-brand-dark));
    color: #fff;
    border: none;
    border-radius: var(--hakb-radius-sm);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--hakb-transition);
}

.hakb-form-submit:hover {
    background: linear-gradient(145deg, var(--hakb-brand-light), var(--hakb-brand));
    transform: translateY(-2px);
    box-shadow: var(--hakb-shadow-brand);
}

.hakb-form-success {
    display: none;
    padding: 24px;
    background: rgba(39,123,70,0.1);
    border: 2px solid var(--hakb-success);
    border-radius: var(--hakb-radius-md);
    text-align: center;
    color: var(--hakb-success);
    margin-top: 22px;
}

.hakb-form-success.active {
    display: block;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hakb-company-row {
        grid-template-columns: 40px 100px 1fr auto;
        gap: 22px;
    }

    .hakb-company-stats {
        display: none;
    }

    .hakb-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hakb-header { position: relative !important; }
    .hakb-main-nav {
        display: none;
    }

    .hakb-burger {
        display: flex;
    }

    .hakb-hero-headline {
        font-size: 38px;
    }

    .hakb-hero-subline {
        font-size: 17px;
    }

    .hakb-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hakb-btn {
        justify-content: center;
    }

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

    .hakb-company-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }

    .hakb-company-rank {
        margin: 0 auto;
    }

    .hakb-company-logo {
        margin: 0 auto;
    }

    .hakb-company-actions {
        flex-direction: column;
    }

    .hakb-verdict-grid {
        grid-template-columns: 1fr;
    }

    .hakb-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hakb-contact-layout {
        grid-template-columns: 1fr;
        gap: 37px;
    }

    .hakb-trust-grid {
        gap: 26px;
    }

    .hakb-trust-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hakb-wrapper {
        padding: 0 18px;
    }

    .hakb-masthead-inner {
        padding: 0 19px;
    }

    .hakb-hero {
        padding: 68px 0 59px;
    }

    .hakb-hero-headline {
        font-size: 30px;
    }

    .hakb-section-title {
        font-size: 26px;
    }

    .hakb-article h2 {
        font-size: 26px;
    }

    .hakb-faq-question {
        font-size: 17px;
    }

    .hakb-form-wrap {
        padding: 24px;
    }
}

/* ========================================
   Companies Comparison Table - Magnificent Luxury Style
   ======================================== */
.hakb-comparison-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #faf8f5 0%, #fff 100%);
}

.hakb-comparison-header {
    text-align: center;
    margin-bottom: 53px;
}

.hakb-comparison-badge {
    display: inline-block;
    padding: 7px 23px;
    background: var(--hakb-orange);
    color: var(--hakb-white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 21px;
}

.hakb-comparison-title {
    font-size: 40px;
    font-weight: 300;
    color: var(--hakb-brown);
    letter-spacing: 3px;
    margin-bottom: 12px;
    font-family: var(--hakb-font-display);
}

.hakb-comparison-subtitle {
    font-size: 16px;
    color: var(--hakb-gray-600);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.hakb-comparison-table {
    width: 100%;
    background: var(--hakb-white);
    border: 1px solid var(--hakb-cream-dark);
    border-collapse: separate;
    border-spacing: 0;
}

.hakb-comparison-table thead {
    background: var(--hakb-brown);
}

.hakb-comparison-table th {
    padding: 24px 27px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--hakb-cream);
}

.hakb-comparison-table td {
    padding: 22px;
    border-bottom: 1px solid var(--hakb-cream-dark);
    font-size: 14px;
    color: var(--hakb-gray-700);
}

.hakb-comparison-table tbody tr:hover {
    background: var(--hakb-cream);
}

.hakb-company-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hakb-company-crest {
    width: 56px;
    height: 54px;
    background: var(--hakb-cream);
    border: 2px solid var(--hakb-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hakb-company-crest img {
    max-width: 36px;
    max-height: 36px;
}

.hakb-company-details h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--hakb-brown);
    font-family: var(--hakb-font-display);
    letter-spacing: 0.6px;
}

.hakb-company-details span {
    font-size: 12px;
    color: var(--hakb-gray-500);
}

.hakb-rating-elegant {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 600;
    color: var(--hakb-brown);
}

.hakb-rating-elegant svg {
    width: 16px;
    height: 16px;
    fill: var(--hakb-orange);
}

.hakb-feature-luxury {
    display: inline-block;
    padding: 6px 15px;
    border: 2px solid var(--hakb-orange);
    color: var(--hakb-brown);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
}

.hakb-action-elegant {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 14px 29px;
    background: var(--hakb-orange);
    color: var(--hakb-white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hakb-action-elegant:hover {
    background: var(--hakb-brown);
}

.hakb-comparison-cards { display: none; }

.hakb-company-card {
    background: var(--hakb-white);
    border: 1px solid var(--hakb-cream-dark);
    padding: 25px;
    margin-bottom: 22px;
}

.hakb-card-header {
    display: flex;
    align-items: center;
    gap: 21px;
    margin-bottom: 24px;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--hakb-cream-dark);
}

.hakb-card-crest {
    width: 64px;
    height: 64px;
    background: var(--hakb-cream);
    border: 2px solid var(--hakb-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hakb-card-title h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--hakb-brown);
    font-family: var(--hakb-font-display);
}

.hakb-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 19px;
    margin-bottom: 24px;
}

.hakb-card-item {
    padding: 17px;
    background: var(--hakb-cream);
}

.hakb-card-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--hakb-gray-500);
    margin-bottom: 7px;
}

.hakb-card-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--hakb-brown);
}

.hakb-card-action {
    display: block;
    text-align: center;
    padding: 18px;
    background: var(--hakb-orange);
    color: var(--hakb-white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.hakb-card-action:hover {
    background: var(--hakb-brown);
}

@media (max-width: 900px) {
    .hakb-comparison-table { display: none; }
    .hakb-comparison-cards { display: block; }
    .hakb-comparison-title { font-size: 32px; }
}

@media (max-width: 480px) {
    .hakb-comparison-section { padding: 59px 0; }
    .hakb-card-grid { grid-template-columns: 1fr; }
}


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

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

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

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

    .hakb-companies-section .hakb-companies-table tbody tr.hakb-company-row {
        background: #fff !important;
        margin-bottom: 17px !important;
        border-radius: 18px !important;
        box-shadow: 0 5px 24px rgba(89,36,39,0.1) !important;
        padding: 21px !important;
        border: 1px solid rgba(88,30,48,0.08);
    }

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

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

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

    .hakb-companies-section .hakb-td-company {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 18px !important;
        border-bottom: 3px solid #ebe6cd !important;
    }

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

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

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

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

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

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

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

.hakb-menu-line {
    width: 26px;
    height: 3px;
    background: var(--hakb-text, #29304a);
    border-radius: 2px;
    transition: 0.3s;
}

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

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

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

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


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

.hakb-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) {
    .hakb-nav {
        display: none !important;
    }

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


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

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

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

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

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


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

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

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

/* Company logos 50% width on mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .hakb-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) {
    .hakb-company-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

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

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

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


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

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