/* Dyson Seamless Style - Auto-themed */
:root {
    --amoa-primary: #240f15;
    --amoa-secondary: #161d37;
    --amoa-accent: #f26f8d;
    --amoa-gold: #f56b88;
    --amoa-gold-soft: #ccbd45;
    --amoa-light: #f8f9fa;
    --amoa-white: #ffffff;
    --amoa-gray-100: #f3f4f6;
    --amoa-gray-200: #e0e1e7;
    --amoa-gray-300: #d6dad2;
    --amoa-gray-400: #98a4b4;
    --amoa-gray-500: #717480;
    --amoa-gray-600: #48535e;
    --amoa-gray-700: #3f3747;
    --amoa-gray-800: #1d2e3b;
    --amoa-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --amoa-shadow: 0 4px 16px rgba(0,0,0,0.06);
    --amoa-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --amoa-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --amoa-radius-sm: 11px;
    --amoa-radius: 14px;
    --amoa-radius-lg: 21px;
    --amoa-radius-xl: 16px;
    --amoa-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--amoa-gray-700);
    background: var(--amoa-white);
}

.amoa-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 29px;
}

/* Header Navigation */
.amoa-header {
    background: var(--amoa-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--amoa-gray-200);
    transition: var(--amoa-transition);
}

.amoa-header.scrolled {
    box-shadow: var(--amoa-shadow);
}

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

.amoa-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--amoa-primary);
}

.amoa-brand-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--amoa-gold), var(--amoa-gold-soft));
    border-radius: var(--amoa-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--amoa-white);
}

.amoa-brand-name {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.6px;
}

.amoa-navigation {
    display: flex;
    align-items: center;
    gap: 11px;
}

.amoa-nav-item {
    padding: 9px 20px;
    text-decoration: none;
    color: var(--amoa-gray-600);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--amoa-radius);
    transition: var(--amoa-transition);
}

.amoa-nav-item:hover {
    background: var(--amoa-gray-100);
    color: var(--amoa-primary);
}

.amoa-nav-item.active {
    background: var(--amoa-primary);
    color: var(--amoa-white);
}

.amoa-nav-cta {
    margin-left: 16px;
    padding: 13px 22px;
    background: var(--amoa-gold);
    color: var(--amoa-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--amoa-radius);
    transition: var(--amoa-transition);
}

.amoa-nav-cta:hover {
    background: var(--amoa-gold-soft);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.amoa-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.amoa-burger-line {
    width: 21px;
    height: 2px;
    background: var(--amoa-primary);
    transition: var(--amoa-transition);
    border-radius: 3px;
}

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

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

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

.amoa-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--amoa-white);
    border-bottom: 1px solid var(--amoa-gray-200);
    padding: 13px 28px;
    flex-direction: column;
    gap: 11px;
    box-shadow: var(--amoa-shadow-lg);
}

.amoa-mobile-menu.active {
    display: flex;
}

.amoa-mobile-link {
    padding: 12px 17px;
    text-decoration: none;
    color: var(--amoa-gray-700);
    font-weight: 500;
    border-radius: var(--amoa-radius);
    transition: var(--amoa-transition);
}

.amoa-mobile-link:hover {
    background: var(--amoa-gray-100);
}

/* Hero Section */
.amoa-hero {
    background: linear-gradient(135deg, var(--amoa-primary) 0%, var(--amoa-secondary) 100%);
    padding: 100px 0 79px;
    position: relative;
    overflow: hidden;
}

.amoa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    pointer-events: none;
}

.amoa-hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.amoa-hero-label {
    display: inline-block;
    padding: 5px 20px;
    background: rgba(10,138,231,0.15);
    border: 1px solid rgba(10,131,223,0.3);
    border-radius: 48px;
    color: var(--amoa-gold-soft);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 27px;
}

.amoa-hero-heading {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--amoa-white);
    line-height: 1.2;
    margin-bottom: 21px;
    letter-spacing: -1px;
}

.amoa-hero-text {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 34px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

.amoa-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 16px 29px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: var(--amoa-radius);
    transition: var(--amoa-transition);
    border: none;
    cursor: pointer;
}

.amoa-btn-primary {
    background: var(--amoa-gold);
    color: var(--amoa-white);
}

.amoa-btn-primary:hover {
    background: var(--amoa-gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10,127,222,0.35);
}

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

.amoa-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Trust Badges Component */
.amoa-trust-section {
    padding: 59px 0;
    background: var(--amoa-gray-100);
    border-bottom: 1px solid var(--amoa-gray-200);
}

.amoa-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 29px;
}

.amoa-trust-item {
    text-align: center;
    padding: 28px 23px;
    background: var(--amoa-white);
    border-radius: var(--amoa-radius-lg);
    transition: var(--amoa-transition);
}

.amoa-trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--amoa-shadow-lg);
}

.amoa-trust-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--amoa-gold), var(--amoa-gold-soft));
    border-radius: var(--amoa-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.amoa-trust-label {
    font-weight: 600;
    color: var(--amoa-primary);
    font-size: 15px;
}

.amoa-trust-value {
    color: var(--amoa-gray-500);
    font-size: 14px;
    margin-top: 5px;
}

/* Section Styling */
.amoa-section {
    padding: 78px 0;
}

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

.amoa-section-tag {
    display: inline-block;
    padding: 7px 15px;
    background: var(--amoa-gray-100);
    border-radius: 52px;
    color: var(--amoa-gold);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 19px;
}

.amoa-section-title {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--amoa-primary);
    margin-bottom: 17px;
    letter-spacing: -0.6px;
}

.amoa-section-desc {
    font-size: 18px;
    color: var(--amoa-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Companies Grid */
.amoa-companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.amoa-company-card {
    background: var(--amoa-white);
    border: 1px solid var(--amoa-gray-200);
    border-radius: var(--amoa-radius-xl);
    padding: 30px;
    transition: var(--amoa-transition);
    position: relative;
}

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

.amoa-company-card.featured {
    border: 2px solid var(--amoa-gold);
}

.amoa-company-card.featured::before {
    content: 'Top Pick';
    position: absolute;
    top: -12px;
    left: 24px;
    padding: 3px 14px;
    background: var(--amoa-gold);
    color: var(--amoa-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-radius: 5px;
}

.amoa-company-rank {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    background: var(--amoa-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--amoa-gray-600);
}

.amoa-company-logo {
    width: 120px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 21px;
}

.amoa-company-name {
    font-size: 23px;
    font-weight: 700;
    color: var(--amoa-primary);
    margin-bottom: 5px;
}

.amoa-company-tagline {
    font-size: 14px;
    color: var(--amoa-gray-500);
    margin-bottom: 13px;
}

.amoa-company-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 19px;
}

.amoa-rating-stars {
    color: var(--amoa-gold);
    font-size: 16px;
}

.amoa-rating-value {
    font-weight: 600;
    color: var(--amoa-primary);
}

.amoa-company-meta {
    display: flex;
    gap: 21px;
    padding: 19px 0;
    border-top: 1px solid var(--amoa-gray-200);
    border-bottom: 1px solid var(--amoa-gray-200);
    margin-bottom: 17px;
}

.amoa-company-meta span {
    font-size: 13px;
    color: var(--amoa-gray-500);
}

.amoa-company-buttons {
    display: flex;
    gap: 15px;
}

.amoa-company-buttons .amoa-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 17px;
    font-size: 17px;
}

.amoa-btn-secondary {
    background: var(--amoa-gray-100);
    color: var(--amoa-primary);
}

.amoa-btn-secondary:hover {
    background: var(--amoa-gray-200);
}

/* Article Content */
.amoa-article {
    max-width: 760px;
    margin: 0 auto;
}

.amoa-article h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--amoa-primary);
    margin: 53px 0 24px;
    letter-spacing: -0.6px;
}

.amoa-article h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--amoa-primary);
    margin: 41px 0 19px;
}

.amoa-article p {
    margin-bottom: 23px;
    color: var(--amoa-gray-700);
}

.amoa-article ul, .amoa-article ol {
    margin: 26px 0;
    padding-left: 25px;
}

.amoa-article li {
    margin-bottom: 12px;
    color: var(--amoa-gray-700);
}

.amoa-article-image {
    width: 100%;
    height: auto;
    border-radius: var(--amoa-radius-lg);
    margin: 43px 0;
    box-shadow: var(--amoa-shadow-lg);
}

/* Testimonial Slider Component */
.amoa-testimonials {
    padding: 78px 0;
    background: var(--amoa-gray-100);
}

.amoa-testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 29px;
    margin-top: 51px;
}

.amoa-testimonial-card {
    background: var(--amoa-white);
    padding: 31px;
    border-radius: var(--amoa-radius-xl);
    box-shadow: var(--amoa-shadow);
}

.amoa-testimonial-stars {
    color: var(--amoa-gold);
    margin-bottom: 18px;
    font-size: 15px;
}

.amoa-testimonial-text {
    font-size: 16px;
    color: var(--amoa-gray-700);
    line-height: 1.7;
    margin-bottom: 27px;
    font-style: italic;
}

.amoa-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.amoa-testimonial-avatar {
    width: 49px;
    height: 48px;
    border-radius: 50%;
    background: var(--amoa-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--amoa-gray-600);
}

.amoa-testimonial-name {
    font-weight: 600;
    color: var(--amoa-primary);
    font-size: 15px;
}

.amoa-testimonial-role {
    font-size: 13px;
    color: var(--amoa-gray-500);
}

/* Video Embed Component */
.amoa-video-section {
    padding: 77px 0;
    background: var(--amoa-primary);
}

.amoa-video-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.amoa-video-content h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--amoa-white);
    margin-bottom: 18px;
}

.amoa-video-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 31px;
}

.amoa-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--amoa-radius-xl);
    box-shadow: var(--amoa-shadow-xl);
    background: var(--amoa-gray-800);
}

.amoa-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--amoa-gray-800), var(--amoa-gray-700));
    cursor: pointer;
}

.amoa-video-play {
    width: 80px;
    height: 80px;
    background: var(--amoa-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--amoa-transition);
}

.amoa-video-play:hover {
    transform: scale(1.1);
    background: var(--amoa-gold-soft);
}

.amoa-video-play::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 14px 27px;
    border-color: transparent transparent transparent var(--amoa-white);
    margin-left: 3px;
}

/* FAQ Accordion */
.amoa-faq-section {
    padding: 81px 0;
    background: var(--amoa-white);
}

.amoa-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.amoa-faq-item {
    border: 1px solid var(--amoa-gray-200);
    border-radius: var(--amoa-radius-lg);
    margin-bottom: 18px;
    overflow: hidden;
    transition: var(--amoa-transition);
}

.amoa-faq-item:hover {
    border-color: var(--amoa-gray-300);
}

.amoa-faq-item.active {
    border-color: var(--amoa-gold);
    box-shadow: var(--amoa-shadow);
}

.amoa-faq-trigger {
    width: 100%;
    padding: 21px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: var(--amoa-transition);
}

.amoa-faq-trigger:hover {
    background: var(--amoa-gray-100);
}

.amoa-faq-question {
    font-size: 17px;
    font-weight: 600;
    color: var(--amoa-primary);
    padding-right: 18px;
}

.amoa-faq-icon {
    width: 33px;
    height: 32px;
    background: var(--amoa-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--amoa-transition);
    flex-shrink: 0;
}

.amoa-faq-icon::before {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--amoa-gray-600);
    line-height: 1;
}

.amoa-faq-item.active .amoa-faq-icon {
    background: var(--amoa-gold);
    transform: rotate(45deg);
}

.amoa-faq-item.active .amoa-faq-icon::before {
    color: var(--amoa-white);
}

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

.amoa-faq-item.active .amoa-faq-answer {
    max-height: 500px;
}

.amoa-faq-content {
    padding: 0 25px 28px;
    font-size: 19px;
    color: var(--amoa-gray-600);
    line-height: 1.8;
}

/* Footer */
.amoa-footer {
    background: var(--amoa-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 41px;
}

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

.amoa-footer-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
}

.amoa-footer-brand-mark {
    width: 40px;
    height: 40px;
    background: var(--amoa-gold);
    border-radius: var(--amoa-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amoa-white);
    font-weight: 700;
}

.amoa-footer-brand-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--amoa-white);
}

.amoa-footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.amoa-footer-heading {
    font-size: 15px;
    font-weight: 600;
    color: var(--amoa-white);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

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

.amoa-footer-links li {
    margin-bottom: 12px;
}

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

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

.amoa-footer-disclaimer {
    padding: 30px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.amoa-footer-disclaimer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.amoa-footer-bottom {
    padding-top: 31px;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

/* Contact Page */
.amoa-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 53px;
    margin-top: 48px;
}

.amoa-contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.amoa-contact-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.amoa-contact-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--amoa-gold), var(--amoa-gold-soft));
    border-radius: var(--amoa-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.amoa-contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--amoa-white);
}

.amoa-contact-details h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--amoa-primary);
    margin-bottom: 4px;
}

.amoa-contact-details p {
    font-size: 15px;
    color: var(--amoa-gray-500);
    margin: 0;
}

.amoa-contact-form-container {
    background: var(--amoa-gray-100);
    padding: 38px;
    border-radius: var(--amoa-radius-xl);
}

.amoa-form-row {
    margin-bottom: 25px;
}

.amoa-form-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--amoa-primary);
    margin-bottom: 7px;
}

.amoa-form-input,
.amoa-form-select,
.amoa-form-textarea {
    width: 100%;
    padding: 16px 15px;
    border: 1px solid var(--amoa-gray-300);
    border-radius: var(--amoa-radius);
    font-family: inherit;
    font-size: 18px;
    color: var(--amoa-gray-700);
    background: var(--amoa-white);
    transition: var(--amoa-transition);
}

.amoa-form-input:focus,
.amoa-form-select:focus,
.amoa-form-textarea:focus {
    outline: none;
    border-color: var(--amoa-gold);
    box-shadow: 0 0 0 3px rgba(10,139,231,0.1);
}

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

.amoa-form-submit {
    width: 100%;
    padding: 19px;
    background: var(--amoa-gold);
    color: var(--amoa-white);
    border: none;
    border-radius: var(--amoa-radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--amoa-transition);
}

.amoa-form-submit:hover {
    background: var(--amoa-gold-soft);
    transform: translateY(-2px);
}

.amoa-form-success {
    display: none;
    padding: 21px;
    background: #ddeed9;
    border: 1px solid #c3e9c4;
    border-radius: var(--amoa-radius);
    color: #0b552c;
    text-align: center;
    margin-top: 23px;
}

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

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

/* Companies Section */
.amoa-companies-section {
    padding: 58px 0;
    background: var(--amoa-gray-100);
}

.amoa-companies-header {
    text-align: center;
    margin-bottom: 41px;
}

.amoa-companies-title {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--amoa-primary);
    margin-bottom: 11px;
}

.amoa-companies-subtitle {
    font-size: 17px;
    color: var(--amoa-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Comparison Table */
.amoa-comparison-table {
    width: 100%;
    background: var(--amoa-white);
    border-radius: var(--amoa-radius-lg);
    overflow: hidden;
    box-shadow: var(--amoa-shadow-lg);
    border-collapse: collapse;
}

.amoa-comparison-table thead {
    background: var(--amoa-primary);
}

.amoa-comparison-table th {
    padding: 18px 19px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: var(--amoa-white);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: 4px solid var(--amoa-gold);
}

.amoa-comparison-table th:first-child {
    padding-left: 23px;
}

.amoa-comparison-table tbody tr {
    border-bottom: 1px solid var(--amoa-gray-200);
    transition: var(--amoa-transition);
}

.amoa-comparison-table tbody tr:hover {
    background: var(--amoa-gray-100);
}

.amoa-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.amoa-comparison-table td {
    padding: 17px 16px;
    font-size: 18px;
    color: var(--amoa-gray-700);
    vertical-align: middle;
}

.amoa-comparison-table td:first-child {
    padding-left: 22px;
}

/* Company Name Cell */
.amoa-company-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.amoa-cell-rank {
    width: 35px;
    height: 32px;
    background: var(--amoa-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--amoa-white);
    flex-shrink: 0;
}

.amoa-company-info {
    display: flex;
    flex-direction: column;
}

.amoa-cell-name {
    font-weight: 700;
    color: var(--amoa-primary);
    font-size: 16px;
}

.amoa-cell-tagline {
    font-size: 13px;
    color: var(--amoa-gray-500);
    margin-top: 3px;
}

/* Rating Cell */
.amoa-rating-cell {
    display: flex;
    align-items: center;
    gap: 6px;
}

.amoa-table-stars {
    color: var(--amoa-gold);
    font-size: 14px;
    letter-spacing: 2px;
}

.amoa-table-rating {
    font-weight: 700;
    color: var(--amoa-primary);
    font-size: 14px;
}

/* Feature Tags */
.amoa-feature-tag {
    display: inline-block;
    padding: 6px 9px;
    background: var(--amoa-gray-100);
    color: var(--amoa-gray-700);
    font-size: 13px;
    border-radius: 23px;
    font-weight: 500;
}

.amoa-feature-tag.highlight {
    background: rgba(10,125,223,0.15);
    color: var(--amoa-gold);
}

/* Table CTA Button */
.amoa-table-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 21px;
    background: var(--amoa-gold);
    color: var(--amoa-white);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border-radius: var(--amoa-radius);
    transition: var(--amoa-transition);
    white-space: nowrap;
}

.amoa-table-cta:hover {
    background: var(--amoa-gold-soft);
    transform: translateY(-2px);
    box-shadow: var(--amoa-shadow);
}

/* Highlight Row */
.amoa-comparison-table tbody tr.featured-row {
    background: rgba(10,134,230,0.08);
}

.amoa-comparison-table tbody tr.featured-row:hover {
    background: rgba(10,136,222,0.15);
}

/* Mobile Cards (for responsive) */
.amoa-companies-cards {
    display: none;
}

.amoa-mobile-card {
    background: var(--amoa-white);
    border-radius: var(--amoa-radius-lg);
    padding: 26px;
    margin-bottom: 17px;
    box-shadow: var(--amoa-shadow);
    border: 1px solid var(--amoa-gray-200);
}

.amoa-mobile-card.featured {
    border-color: var(--amoa-gold);
    box-shadow: var(--amoa-shadow-lg);
}

.amoa-card-header {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 16px;
    padding-bottom: 17px;
    border-bottom: 2px solid var(--amoa-gray-200);
}

.amoa-card-rank {
    width: 36px;
    height: 36px;
    background: var(--amoa-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--amoa-white);
    flex-shrink: 0;
}

.amoa-card-company {
    flex: 1;
}

.amoa-card-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--amoa-primary);
    margin-bottom: 5px;
}

.amoa-card-tagline {
    font-size: 11px;
    color: var(--amoa-gray-500);
}

.amoa-card-rating {
    display: flex;
    align-items: center;
    gap: 7px;
}

.amoa-card-stars {
    color: var(--amoa-gold);
    font-size: 14px;
}

.amoa-card-score {
    font-weight: 700;
    font-size: 15px;
    color: var(--amoa-primary);
}

.amoa-card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 15px;
}

.amoa-card-detail {
    display: flex;
    flex-direction: column;
}

.amoa-card-label {
    font-size: 12px;
    color: var(--amoa-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 3px;
}

.amoa-card-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--amoa-gray-700);
}

.amoa-card-cta {
    display: block;
    width: 100%;
    padding: 17px;
    background: var(--amoa-gold);
    color: var(--amoa-white);
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: var(--amoa-radius);
    transition: var(--amoa-transition);
}

.amoa-card-cta:hover {
    background: var(--amoa-gold-soft);
}

/* Review Page Styles */
.amoa-review-section {
    padding: 52px 0;
    background: var(--amoa-white);
    border-bottom: 1px solid var(--amoa-gray-200);
}

.amoa-review-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 33px;
    padding-bottom: 22px;
    border-bottom: 3px solid var(--amoa-gray-200);
}

.amoa-review-logo {
    width: 80px;
    height: 80px;
    background: var(--amoa-gray-100);
    border-radius: var(--amoa-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--amoa-gray-200);
}

.amoa-review-logo img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.amoa-review-info {
    flex: 1;
}

.amoa-review-company-name {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--amoa-primary);
    margin-bottom: 6px;
}

.amoa-review-meta {
    display: flex;
    align-items: center;
    gap: 21px;
    flex-wrap: wrap;
}

.amoa-review-rating {
    display: flex;
    align-items: center;
    gap: 11px;
}

.amoa-review-stars {
    color: var(--amoa-gold);
    font-size: 18px;
    letter-spacing: 3px;
}

.amoa-review-score {
    font-weight: 700;
    font-size: 18px;
    color: var(--amoa-primary);
}

.amoa-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: var(--amoa-gray-100);
    border-radius: 21px;
    font-size: 16px;
    font-weight: 600;
    color: var(--amoa-gray-700);
}

.amoa-review-badge svg {
    width: 14px;
    height: 14px;
    color: var(--amoa-gold);
}

.amoa-review-cta {
    flex-shrink: 0;
}

.amoa-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 14px 31px;
    background: var(--amoa-gold);
    color: var(--amoa-white);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: var(--amoa-radius);
    transition: var(--amoa-transition);
}

.amoa-review-btn:hover {
    background: var(--amoa-gold-soft);
    transform: translateY(-2px);
    box-shadow: var(--amoa-shadow-lg);
}

.amoa-review-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 39px;
}

.amoa-review-main h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--amoa-primary);
    margin: 29px 0 16px;
}

.amoa-review-main h2:first-child {
    margin-top: 0;
}

.amoa-review-main p {
    margin-bottom: 21px;
    color: var(--amoa-gray-700);
    line-height: 1.8;
}

.amoa-review-main ul,
.amoa-review-main ol {
    margin: 0 0 18px 25px;
    color: var(--amoa-gray-700);
}

.amoa-review-main li {
    margin-bottom: 13px;
    line-height: 1.7;
}

/* Pros and Cons */
.amoa-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 19px;
    margin: 30px 0;
}

.amoa-pros,
.amoa-cons {
    background: var(--amoa-gray-100);
    border-radius: var(--amoa-radius-lg);
    padding: 21px;
}

.amoa-pros {
    border-left: 4px solid #28a463;
}

.amoa-cons {
    border-left: 4px solid #de523a;
}

.amoa-pros-title,
.amoa-cons-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.amoa-pros-title {
    color: #29af58;
}

.amoa-cons-title {
    color: #e04f43;
}

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

.amoa-pros-list li,
.amoa-cons-list li {
    padding: 7px 0;
    padding-left: 26px;
    position: relative;
    font-size: 11px;
    color: var(--amoa-gray-700);
    border-bottom: 1px solid var(--amoa-gray-200);
}

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

.amoa-pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2aad61;
    font-weight: 700;
}

.amoa-cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e14238;
    font-weight: 700;
}

/* Review Sidebar */
.amoa-review-sidebar {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.amoa-sidebar-box {
    background: var(--amoa-gray-100);
    border-radius: var(--amoa-radius-lg);
    padding: 22px;
    border: 2px solid var(--amoa-gray-200);
}

.amoa-sidebar-title {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--amoa-primary);
    margin-bottom: 15px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--amoa-gold);
}

.amoa-sidebar-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 2px solid var(--amoa-gray-200);
    font-size: 14px;
}

.amoa-sidebar-row:last-child {
    border-bottom: none;
}

.amoa-sidebar-label {
    color: var(--amoa-gray-500);
}

.amoa-sidebar-value {
    font-weight: 600;
    color: var(--amoa-gray-700);
}

.amoa-sidebar-cta {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--amoa-gold);
    color: var(--amoa-white);
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: var(--amoa-radius);
    margin-top: 15px;
    transition: var(--amoa-transition);
}

.amoa-sidebar-cta:hover {
    background: var(--amoa-gold-soft);
}

/* CTA Section */
.amoa-cta-section {
    padding: 72px 0;
    background: linear-gradient(135deg, var(--amoa-primary), var(--amoa-secondary));
    text-align: center;
}

.amoa-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.amoa-cta-title {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--amoa-white);
    margin-bottom: 19px;
}

.amoa-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 33px;
    line-height: 1.7;
}

.amoa-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 19px;
    flex-wrap: wrap;
}

.amoa-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 18px 33px;
    background: var(--amoa-gold);
    color: var(--amoa-white);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: var(--amoa-radius);
    transition: var(--amoa-transition);
}

.amoa-cta-primary:hover {
    background: var(--amoa-gold-soft);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(11,139,221,0.4);
}

.amoa-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 15px 38px;
    background: transparent;
    color: var(--amoa-white);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--amoa-radius);
    transition: var(--amoa-transition);
}

.amoa-cta-secondary:hover {
    border-color: var(--amoa-white);
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

@media (max-width: 1024px) {
    .amoa-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }

    .amoa-video-container {
        grid-template-columns: 1fr;
        gap: 41px;
    }

    .amoa-testimonial-slider {
        grid-template-columns: 1fr;
    }

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

    .amoa-review-content {
        grid-template-columns: 1fr;
    }

    .amoa-review-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .amoa-header { position: relative !important; }
    .amoa-navigation, .amoa-nav-cta {
        display: none;
    }

    .amoa-burger {
        display: flex;
    }

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

    .amoa-hero-text {
        font-size: 17px;
    }

    .amoa-hero-actions {
        flex-direction: column;
    }

    .amoa-btn {
        width: 100%;
        justify-content: center;
    }

    .amoa-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .amoa-section-title {
        font-size: 28px;
    }

    .amoa-companies-grid {
        grid-template-columns: 1fr;
    }

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

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

    .amoa-contact-form-container {
        padding: 26px 21px;
    }

    /* Companies Table - Switch to Cards */
    .amoa-comparison-table {
        display: none;
    }

    .amoa-companies-cards {
        display: block;
    }

    .amoa-companies-title {
        font-size: 26px;
    }

    /* Review Page Mobile */
    .amoa-review-header {
        flex-direction: column;
        text-align: center;
    }

    .amoa-review-logo {
        margin: 0 auto;
    }

    .amoa-review-meta {
        justify-content: center;
    }

    .amoa-review-cta {
        width: 100%;
    }

    .amoa-review-btn {
        width: 100%;
        justify-content: center;
    }

    .amoa-review-sidebar {
        grid-template-columns: 1fr;
    }

    .amoa-pros-cons {
        grid-template-columns: 1fr;
    }

    .amoa-review-company-name {
        font-size: 24px;
    }

    /* CTA Section Mobile */
    .amoa-cta-title {
        font-size: 28px;
    }

    .amoa-cta-text {
        font-size: 16px;
    }

    .amoa-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .amoa-cta-primary,
    .amoa-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

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

    .amoa-hero-heading {
        font-size: 28px;
    }

    .amoa-trust-grid {
        grid-template-columns: 1fr;
    }

    .amoa-card-details {
        grid-template-columns: 1fr;
    }

    .amoa-companies-title {
        font-size: 22px;
    }

    .amoa-review-company-name {
        font-size: 20px;
    }
}


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

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

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

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

    .amoa-companies-section .amoa-companies-table tbody tr.amoa-company-row {
        background: #fff !important;
        margin-bottom: 17px !important;
        border-radius: 16px !important;
        box-shadow: 0 5px 22px rgba(97,35,47,0.1) !important;
        padding: 21px !important;
        border: 2px solid rgba(98,28,39,0.08);
    }

    .amoa-companies-section .amoa-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;
    }

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

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

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

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

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

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

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

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

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

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

.amoa-menu-line {
    width: 24px;
    height: 3px;
    background: var(--amoa-text, #342d3e);
    border-radius: 1px;
    transition: 0.3s;
}

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

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

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

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


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

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

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


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

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

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

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

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


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

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

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

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

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

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

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


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

/* Center buttons in company cards */
.amoa-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.amoa-td-action {
    text-align: center !important;
}
.amoa-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 13px !important;
}
@media(max-width:768px){.article-img{float:none \!important;max-width:90% \!important;margin:17px auto \!important;display:block;}}
