/* =========================================
   TAKTER STYLE SYSTEM v2.0
   =========================================
   
   TABLE OF CONTENTS
   -----------------------------------------
   1. VARIABLES & ROOT
   2. RESET & BASE ELEMENTS
   3. ICONS
   4. TYPOGRAPHY
   5. HEADER & NAVIGATION
   6. LAYOUT & GRID
   7. BUTTONS
   8. CARDS
   9. SECTIONS & CONTAINERS
   10. COMPONENTS
       - Accordion
       - Badges
       - Breadcrumb
       - CTA Banners
       - FAQ
       - Forms
       - Lead Space (Hero)
       - Lists
       - Modals
       - Stats
       - Tables
       - Tags
   11. PAGE-SPECIFIC STYLES
   12. UTILITIES
   13. RESPONSIVE (Mobile) - END OF FILE
   
   ================================********* */

/* =========================================
   1. VARIABLES & ROOT
   ================================********* */

/* Amazon Color Palette */
:root {
    --amazon-primary: #185663;
    --amazon-secondary: #0EABB5;
    --amazon-accent: #D99600;
    --amazon-dark-teal: #0E4749;
    --amazon-light-blue-gray: #839EA7;
    --amazon-light-gray: #F5F5F7;
    --amazon-mid-gray: #6E6E73;
    --amazon-dark-gray: #343434;
    --amazon-black: #161616;
    --amazon-white: #ffffff;

    /* Amazon CSS custom properties (legacy aliases) */
    --amazon-main: var(--amazon-primary);
    --amazon-orange-dark: var(--amazon-dark-teal);
    --amazon-dark-green: var(--amazon-dark-teal);
    --amazon-glow-green: var(--amazon-secondary);
    --amazon-dark-gray: var(--amazon-mid-gray);

    /* Amazon primary tone — WCAG AA large */
    --amazon-blue-dark: var(--amazon-primary);
    --amazon-gray-100: var(--amazon-black);
    --amazon-gray-90: #262626;
    --amazon-gray-80: #393939;
    --amazon-gray-70: var(--amazon-mid-gray);
    --amazon-gray-60: #6f6f6f;
    --amazon-gray-50: #8d8d8d;
    --amazon-gray-40: #a8a8a8;
    --amazon-gray-30: #c6c6c6;
    --amazon-gray-20: #e0e0e0;
    --amazon-gray-10: var(--amazon-light-gray);

    /* Notification Colors (Standard Web) */
    --amazon-success-bg: #198754;
    --amazon-success-text: #ffffff;
    --amazon-error-bg: #dc3545;
    --amazon-error-text: #ffffff;
    --amazon-warning-bg: #ffc107;
    --amazon-warning-text: #000000;
    --amazon-info-bg: #0dcaf0;
    --amazon-info-text: #000000;

    /* CDS Variables for .lead-in style */
    --cds-productive-heading-03-font-size: 1.25rem;
    --cds-productive-heading-03-font-weight: 400;
    --cds-productive-heading-03-letter-spacing: 0;
    --cds-productive-heading-03-line-height: 1.4;
}

.amazon-icon-sm {
    width: 16px;
    height: 16px;
    fill: currentColor;
    vertical-align: middle;
    margin-right: 4px;
}

.amazon-icon-lg {
    width: 48px;
    height: 48px;
    fill: currentColor;
    vertical-align: middle;
}

/* Material Symbols Base Style */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    font-size: 24px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    user-select: none;
}

/* Helper for larger icons */
.material-symbols-outlined.md-48 {
    font-size: 48px;
}

.material-symbols-outlined.md-64 {
    font-size: 64px;
}

/* =========================================
   2. RESET & BASE ELEMENTS
   ================================********* */

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

html,
body {
    overflow-x: clip;
    max-width: 100vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #161616;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   5. HEADER & NAVIGATION
   ================================********* */

/* Header */
.amazon-header {
    background: var(--amazon-black);
    height: 50px;
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid var(--amazon-gray-80);
}

.amazon-header-container {
    max-width: 1584px;
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.amazon-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--amazon-white);
    /* Default dark color */
    transition: color 0.3s ease;
}

/* Smart Logo: White on dark backgrounds */
.bg-dark .amazon-logo,
.amazon-header.dark .amazon-logo {
    color: var(--amazon-white);
}

.amazon-logo-svg {
    height: 32px;
    width: auto;
}

.amazon-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.amazon-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.amazon-mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--amazon-gray-80);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.amazon-header.dark .amazon-mobile-toggle span,
.bg-dark .amazon-mobile-toggle span {
    background-color: var(--amazon-white);
}

.amazon-mobile-toggle.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.amazon-mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.amazon-mobile-toggle.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.amazon-nav-links {
    display: flex;
    align-items: center;
    height: 100%;
}

.amazon-nav-links a {
    color: var(--amazon-gray-30);
    text-decoration: none;
    font-size: 14px;
    padding: 0 16px;
    height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    transition: all 0.11s cubic-bezier(0, 0, 0.38, 0.9);
}

.amazon-nav a:hover {
    background: var(--amazon-gray-100);
    color: var(--amazon-white);
    border-bottom-color: var(--amazon-main);
}

/* Breadcrumb */
.amazon-breadcrumb {
    background: var(--amazon-white);
    border-bottom: 1px solid var(--amazon-gray-20);
}

.amazon-breadcrumb-container {
    max-width: 1584px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.amazon-breadcrumb a {
    color: var(--amazon-main);
    text-decoration: none;
}

.amazon-breadcrumb span {
    color: var(--amazon-gray-70);
}

/* Lead-in style (IBM Inspired) */
.lead-in p {
    font-size: var(--cds-productive-heading-03-font-size, 1.25rem);
    font-weight: var(--cds-productive-heading-03-font-weight, 400);
    letter-spacing: var(--cds-productive-heading-03-letter-spacing, 0);
    line-height: var(--cds-productive-heading-03-line-height, 1.4);
}

.amazon-lead-offset {
    padding-right: 32px;
}

.amazon-text-large {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Hero Section */
.amazon-lead-space {
    background: linear-gradient(to bottom, var(--amazon-gray-100) 0%, var(--amazon-gray-90) 100%);
    padding: 80px 0;
}

.amazon-lead-space-container {
    max-width: 1584px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.amazon-lead-content h1 {
    font-size: 54px;
    font-weight: 300;
    line-height: 1.15;
    color: var(--amazon-white);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.amazon-lead-content p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--amazon-gray-30);
    margin-bottom: 32px;
    font-weight: 400;
}

.amazon-lead-image {
    width: 100%;
    height: 400px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.2);
}

/* Buttons */
.amazon-btn,
.amazon-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 64px 14px 16px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.11s cubic-bezier(0, 0, 0.38, 0.9);
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.amazon-btn-primary {
    background: var(--amazon-main);
    color: var(--amazon-white);
}

.amazon-btn-primary:hover {
    background: rgba(253, 116, 0, 0.5);
}

.amazon-btn-secondary {
    background: transparent;
    color: var(--amazon-main);
    border: 1px solid var(--amazon-main);
}

.amazon-btn-secondary:hover {
    background: var(--amazon-main);
    color: var(--amazon-white);
}

.amazon-btn-outline {
    background: transparent;
    color: var(--amazon-main);
    border: 1px solid var(--amazon-main);
}

.amazon-btn-outline:hover {
    background: var(--amazon-white);
    color: var(--amazon-white);
}

.amazon-btn::after,
.amazon-btn-outline::after {
    content: '→';
    position: absolute;
    right: 16px;
    font-size: 16px;
}

/* Content Sections */
.amazon-content-section {
    max-width: 1584px;
    margin: 0 auto;
    padding: 96px 16px;
}

/* Full Width Section Pattern */
.amazon-section-full {
    width: 100%;
    padding: 96px 0;
}

.amazon-container {
    max-width: 1584px;
    margin: 0 auto;
    padding: 0 16px;
}

.amazon-content-section.gray {
    background: var(--amazon-gray-10);
}

.amazon-section-header {
    max-width: 720px;
    margin-bottom: 64px;
}

.amazon-section-header h2 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.19;
    color: var(--amazon-gray-100);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.amazon-section-header p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--amazon-gray-70);
    font-weight: 400;
}

/* =========================================
   Grid System & Layout
   ================================********* */

/* Card Grid - Main Wrapper */
.amazon-card-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--amazon-gray-20);
    border: 1px solid var(--amazon-gray-20);
}

.amazon-card-group-transparent {
    background: transparent;
    border: none;
    gap: 24px;
}

/* Grid Columns Modifiers */

.amazon-card-group--2-cols,
.amazon-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.amazon-card-group--3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.amazon-card-group--5-cols {
    grid-template-columns: repeat(5, 1fr);
}

.amazon-card-group--6-cols {
    grid-template-columns: repeat(6, 1fr);
}

/* Grid Spacing / Gaps */
.amazon-gap-0 {
    gap: 1px !important;
}

/* 1px gap to show separators */

.amazon-gap-16 {
    gap: 16px !important;
}

.amazon-gap-24 {
    gap: 24px !important;
}

.amazon-gap-32 {
    gap: 32px !important;
}

/* Spaced Gaps Behavior: Transparent bg + Child Borders */
.amazon-gap-16,
.amazon-gap-24,
.amazon-gap-32 {
    background: transparent !important;
    border: none !important;
}

.amazon-gap-16 .amazon-card,
.amazon-gap-24 .amazon-card,
.amazon-gap-32 .amazon-card {
    border: 1px solid var(--amazon-gray-20);
}

/* =========================================
   8. CARDS
   ================================********* */

/* Base Card Style */
.amazon-card {
    background: var(--amazon-white);
    padding: 32px;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    transition: all 0.11s cubic-bezier(0, 0, 0.38, 0.9);
}

.amazon-card:hover {
    background: var(--amazon-gray-10);
}

/* Card Attributes */
.amazon-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--amazon-gray-100);
    margin-bottom: 16px;
}

.amazon-card p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--amazon-gray-70);
    flex-grow: 0;
}

/* Ensure consistent height when followed by check-list */
.amazon-card p:has(+ .amazon-check-list) {
    min-height: 65px;
}

.amazon-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--amazon-main);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amazon-card-link {
    color: var(--amazon-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.amazon-card-link::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.11s;
}

.amazon-card-link:hover::after {
    transform: translateX(4px);
}

/* Card Focus Label (e.g., "FOCO: PRÁTICAS") */

/* Card Themes */

/* Variant: Image Top */
.amazon-card-image-top {
    padding: 0 !important;
    overflow: hidden;
}

.amazon-card-img-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--amazon-gray-10);
}

.amazon-card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.amazon-card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Variant: Colored Cards */

/* =========================================
   12. UTILITIES
   ================================********* */

/* CTA Banner */
.amazon-cta-banner {
    background: var(--amazon-main);
    color: var(--amazon-white);
    padding: 64px 0;
}

.amazon-cta-container {
    max-width: 1584px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.amazon-cta-content h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.amazon-cta-content p {
    font-size: 16px;
    opacity: 0.9;
}

.amazon-btn-inverse {
    background: var(--amazon-white);
    color: var(--amazon-main);
}

.amazon-btn-inverse:hover {
    background: var(--amazon-gray-10);
}

/* Footer */
/* Footer */
.amazon-footer {
    background: var(--amazon-gray-100);
    color: var(--amazon-gray-30);
    padding: 64px 0 32px;
    font-size: 14px;
}

.amazon-footer-container {
    max-width: 1584px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Top Section: Logo + Links */
.amazon-footer-top {
    display: flex;
    flex-direction: row;
    gap: 64px;
    margin-bottom: 64px;
}

.amazon-footer-logo {
    flex: 0 0 200px;
    /* Fixed width for logo column */
}

.amazon-footer-logo img {
    height: 80px;
    opacity: 0.9;
}

.amazon-footer-links {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.amazon-footer-column h3 {
    color: var(--amazon-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.amazon-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amazon-footer-column li {
    margin-bottom: 12px;
}

.amazon-footer-column a {
    color: var(--amazon-gray-30);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.11s;
}

.amazon-footer-column a:hover {
    color: var(--amazon-main);
    text-decoration: underline;
}

/* Bottom Section */
.amazon-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--amazon-gray-80);
    font-size: 12px;
}

.amazon-footer-contact {
    display: flex;
    gap: 24px;
}

.amazon-footer-contact a {
    color: var(--amazon-gray-30);
    text-decoration: none;
}

.amazon-footer-legal {
    display: flex;
    gap: 24px;
    align-items: center;
}

.amazon-footer-legal a {
    color: var(--amazon-gray-30);
    text-decoration: none;
}

.amazon-footer-legal span {
    color: var(--amazon-gray-60);
    margin-left: 16px;
}

.amazon-footer-contact a:hover,
.amazon-footer-legal a:hover {
    color: var(--amazon-main);
    text-decoration: underline;
}

/* Manifesto & New Utilities */
.amazon-bg-light {
    background-color: var(--amazon-gray-10);
}

.amazon-bg-white {
    background-color: var(--amazon-white);
    color: var(--amazon-gray-100);
}

.amazon-bg-gray {
    background-color: var(--amazon-gray-10);
    color: var(--amazon-gray-100);
}

.amazon-bg-main {
    background-color: var(--amazon-main);
    color: var(--amazon-white);
}

.amazon-bg-dark {
    background-color: var(--amazon-black);
    color: var(--amazon-white);
}

/* =========================================
   ERP Gap Section Styles
   ================================********* */

.amazon-text-gradient-orange {
    background: linear-gradient(90deg, var(--amazon-orange-dark) 0%, var(--amazon-main) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 42px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.5px;
    display: inline-block;
    /* Ensure gradient works on some browsers */
}

.amazon-gap-list {
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    gap: 24px;
    margin-top: 32px;
}

.amazon-gap-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border-left: 2px solid var(--amazon-gray-20);
    transition: border-color 0.3s;
}

.amazon-gap-item:hover {
    border-left-color: var(--amazon-main);
}

.amazon-gap-number {
    font-weight: 700;
    color: var(--amazon-main);
    font-size: 14px;
    flex-shrink: 0;
}

.amazon-gap-text h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: var(--amazon-gray-100);
    font-weight: 600;
}

.amazon-gap-text p {
    margin: 0;
    font-size: 13px;
    color: var(--amazon-gray-70);
    line-height: 1.4;
}

.amazon-gap-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--amazon-gray-70);
    margin-bottom: 48px;
}

.amazon-static-graphic-container {
    background: #fdfdfd;
    border: 1px solid var(--amazon-gray-20);
    padding: 32px;
    border-radius: 4px;
    position: relative;
}

.amazon-bg-success {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('/images/products/converge/converge-case-testimonial.avif') no-repeat center center;
    background-size: cover;
    color: var(--amazon-white);
}

/* Parallax Utility */

.amazon-spacer-lg {
    height: 80px;
    width: 100%;
    display: block;
}

.amazon-card-gray {
    background-color: var(--amazon-gray-80);
    /* Dark Gray but not black */
    border: 1px solid var(--amazon-gray-70);
    color: var(--amazon-white);
}

.amazon-card-gray h3 {
    color: var(--amazon-white);
}

.amazon-card-gray p {
    color: var(--amazon-gray-30);
}

.amazon-card-gray .amazon-card-icon,
.amazon-card-gray .amazon-card-link {
    color: var(--amazon-white);
}

.amazon-card-gray:hover {
    background-color: var(--amazon-gray-70);
}

/* =========================================
   Accordion Component (FAQ)
   ================================********* */

.amazon-accordion {
    width: 100%;
    margin-bottom: 32px;
}

.amazon-accordion-item {
    border-bottom: 1px solid var(--amazon-gray-20);
    overflow: hidden;
}

.amazon-accordion-item:first-child {
    border-top: 1px solid var(--amazon-gray-20);
}

.amazon-accordion-trigger {
    list-style: none;
    /* Hide default triangle */
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all 0.2s ease;
}

/* Hide default marker in Webkit/Chrome */
.amazon-accordion-trigger::-webkit-details-marker {
    display: none;
}

.amazon-accordion-trigger h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--amazon-gray-100);
    margin: 0;
    padding-right: 16px;
    flex: 1;
}

.amazon-accordion-icon {
    /* font-size: 24px; Removed for SVG */
    width: 24px;
    height: 24px;
    color: var(--amazon-main);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: block;
    /* Ensure SVG renders block-level behavior inside span */
}

/* Open State Styling */
.amazon-accordion-item[open] .amazon-accordion-trigger {
    border-top: 2px solid var(--amazon-main);
    /* Active Highlight */
    margin-top: -1px;
    /* Overlap the border */
    padding-top: 23px;
    /* Adjust padding to match height */
}

/* Rotate icon when open */
.amazon-accordion-item[open] .amazon-accordion-icon {
    transform: rotate(180deg);
}

/* Content Animation Wrapper */
/* Note: <details> animation is tricky. We use the content padding method. */
.amazon-accordion-content {
    color: var(--amazon-gray-70);
    font-size: 16px;
    line-height: 1.6;
    padding-bottom: 24px;
    padding-right: 32px;
    /* Avoid reading wide text */
}

.amazon-accordion-content ul {
    margin-top: 16px;
    padding-left: 20px;
}

.amazon-accordion-content li {
    margin-bottom: 8px;
}

.amazon-tags {
    margin-bottom: 24px;
}

.amazon-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    margin-right: 8px;
    display: inline-block;
    font-weight: 600;
}

/* Hover effects for colored cards */

/* Liquid Glass Utilities (Apple-style) */
.amazon-liquid-glass {
    background: rgba(25, 25, 25, 0.6);
    /* Semi-transparent dark base */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.amazon-liquid-glass--light {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.4);
}

.amazon-liquid-glass--medium {
    background: rgba(80, 80, 80, 0.3) !important;
    border-color: rgba(80, 80, 80, 0.3);
}

.amazon-liquid-glass:hover {
    background: rgba(40, 40, 40, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.amazon-glass-card {
    padding: 40px;
    border-radius: 4px;
}

.amazon-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--amazon-glow-green);
    display: block;
    line-height: 1;
}

.amazon-stat-text {
    font-size: var(--cds-productive-heading-03-font-size, 1.25rem);
    font-weight: var(--cds-productive-heading-03-font-weight, 400);
    letter-spacing: var(--cds-productive-heading-03-letter-spacing, 0);
    line-height: var(--cds-productive-heading-03-line-height, 1.4);
    color: var(--amazon-gray-20);
}

.amazon-stat-group {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.amazon-stat-item {
    /** display: flex; */
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Modifier for vertical stacking inside the item */

.amazon-stat-item:hover {
    border-bottom-color: var(--amazon-glow-green);
    transform: translateX(8px);
}

/* Responsive Footer */
/* =========================================
   Refactoring Utilities (Avoid Inline CSS)
   ================================********* */

/* Text Colors */

.amazon-text-white {
    color: var(--amazon-white) !important;
}

/* Close to gray-10 */
.amazon-text-gray-30 {
    color: var(--amazon-gray-30) !important;
}

.amazon-text-gray-40 {
    color: var(--amazon-gray-40) !important;
}

.amazon-text-white-90 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.amazon-text-placeholder {
    color: #999 !important;
}

/* Borders & Backgrounds */

/* Spacing */
.amazon-mt-16 {
    margin-top: 16px !important;
}

/* Mockup Components */
.amazon-mockup-placeholder {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specific Content Box */

.amazon-footer-legal span {
    margin-left: 0;
    margin-top: 12px;
}

/* Responsive */
/* Insights Module */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.article-meta {
    font-size: 12px;
    color: var(--amazon-gray-60);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 16px;
}

.article-header {
    margin-bottom: 48px;
    text-align: center;
}

.article-header h1 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--amazon-gray-100);
    margin: 16px 0;
    letter-spacing: -0.5px;
}

.article-subtitle {
    font-size: 24px;
    font-weight: 300;
    color: var(--amazon-gray-60);
    margin-top: 16px;
}

.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--amazon-gray-80);
}

.article-body h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--amazon-gray-100);
    margin-top: 48px;
    margin-bottom: 24px;
}

.article-body h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--amazon-gray-90);
    margin-top: 32px;
    margin-bottom: 16px;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 12px;
}

.article-body blockquote {
    border-left: 4px solid var(--amazon-main);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: var(--amazon-gray-60);
}

.article-body hr {
    border: 0;
    border-top: 1px solid var(--amazon-gray-20);
    margin: 48px 0;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
    margin: 32px 0;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.article-body th,
.article-body td {
    padding: 16px;
    border-bottom: 1px solid var(--amazon-gray-20);
    text-align: left;
}

.article-body th {
    background: var(--amazon-gray-10);
    font-weight: 600;
    color: var(--amazon-gray-100);
}

.amazon-nav a:hover {
    color: var(--amazon-main);
    background: var(--amazon-gray-10);
}

/* Language Switcher Dropdown - Now using Mega Menu style */
.amazon-lang-dropdown {
    height: 100%;
}

.amazon-lang-dropdown .lang-btn {
    padding: 0 16px;
    gap: 8px;
    background: transparent !important;
    border: none;
    height: 50px;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: var(--amazon-white);
}

.amazon-lang-dropdown .lang-btn svg {
    fill: currentColor;
}

.amazon-header.light .amazon-lang-dropdown .lang-btn {
    color: var(--amazon-gray-100);
}

.lang-mega-menu .amazon-mega-container {
    min-height: auto;
}


.lang-mega-menu .amazon-mega-main {
    padding: 48px;
    flex-grow: 1;
}

.lang-mega-menu .amazon-mega-grid {
    grid-template-columns: 1fr;
    width: 100%;
}

.amazon-lang-dropdown .lang-btn:hover {
    color: var(--amazon-main);
}

.lang-content a.active {
    background-color: var(--amazon-gray-10);
    font-weight: 600;
}

.flag-icon-sm {
    width: 20px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Dropdown Menu */
/* IBM Style Mega Menu */
.amazon-dropdown {
    position: static;
}

/* Ensure parents don't constrain the absolute child */
.amazon-dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: var(--amazon-white);
    width: 100vw;
    left: 0;
    top: 50px;
    box-shadow: 0px 32px 64px 0px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    border-top: 1px solid var(--amazon-gray-20);
    transition: opacity 0.2s ease, visibility 0.2s;
    padding: 0;
    overflow: hidden;
    right: auto;
    /* Prevent conflict with right: 0 from other rules */
}

/* Open state via JS class */
.amazon-dropdown.is-open .amazon-dropdown-content {
    visibility: visible;
    opacity: 1;
}

.amazon-dropdown.is-open .amazon-dropbtn {
    background: transparent !important;
    color: var(--amazon-main);
}

.amazon-mega-container {
    width: 100%;
    display: flex;
    min-height: 480px;
}

/* Sidebar for Categories */
.amazon-mega-sidebar {
    flex: 0 0 33.333%;
    background: var(--amazon-gray-10);
    padding: 32px 0;
    border-right: 1px solid var(--amazon-gray-20);
}

.amazon-mega-sidebar-inner {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.amazon-mega-sidebar-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--amazon-gray-100);
    line-height: 1.2;
}

.amazon-mega-sidebar-tagline {
    font-size: 16px;
    font-weight: 500;
    color: var(--amazon-main);
    line-height: 1.6;
}

.amazon-mega-sidebar ul {
    list-style: none;
}

.amazon-mega-category-btn {
    width: 100%;
    padding: 12px 24px;
    text-align: left;
    background: none;
    border: none;
    border-left: 4px solid transparent;
    font-size: 14px;
    color: var(--amazon-gray-100);
    cursor: pointer;
    transition: all 0.2s;
}

.amazon-mega-category-btn:hover,
.amazon-mega-category-btn.is-active {
    background: var(--amazon-white);
    color: var(--amazon-main);
    border-left-color: var(--amazon-main);
}

/* Main Content Area */
.amazon-mega-main {
    flex: 1;
    padding: 48px 64px;
    max-width: 1100px;
}

.amazon-mega-section {
    display: none;
}

.amazon-mega-section.is-active {
    display: block;
}

.amazon-mega-section h3 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 32px;
    color: var(--amazon-gray-100);
}

.amazon-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.amazon-mega-item {
    text-decoration: none;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 32px 24px !important;
    transition: background 0.2s;
    border-radius: 4px;
    height: 100% !important;
    min-height: unset !important;
    align-items: flex-start !important;
    border-bottom: none !important;
}

.amazon-mega-item:hover {
    background: var(--amazon-gray-10);
    color: var(--amazon-gray-100) !important;
}

.amazon-mega-item-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--amazon-gray-100);
    margin-bottom: 4px;
}

.amazon-mega-item-desc {
    font-size: 14px;
    color: var(--amazon-gray-70);
    line-height: 1.4;
}

/* Language Dropdown override (remains small) - REMOVED TO ALLOW MEGA MENU */
.amazon-lang-dropdown {
    position: static !important;
}

.amazon-lang-dropdown .amazon-dropdown-content {
    /* No narrow width anymore, uses .amazon-mega-menu defaults */
    border-top: 1px solid var(--amazon-gray-20);
}

/* Mobile Media Queries */
.amazon-dropdown-content a {
    text-decoration: none;
    display: block;
    font-size: 14px;
    height: auto;
    border-bottom: none;
    color: var(--amazon-gray-100);
}

.amazon-dropdown-content a:hover {
    background-color: var(--amazon-gray-10);
    color: var(--amazon-main);
    border-bottom: none;
}

/* ESG Play Specific Styles */

/* Abstract Dashboard Visualization (ESG Play) */
.amazon-lead-image-abstract {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.abstract-dashboard {
    width: 100%;
    max-width: 500px;
    background: var(--amazon-white);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.dash-header {
    background: var(--amazon-gray-10);
    padding: 12px 16px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid var(--amazon-gray-20);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.dash-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dash-graph-area {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 150px;
    gap: 8px;
}

.graph-bar {
    flex: 1;
    background: var(--amazon-gray-20);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.graph-bar.active {
    background: var(--amazon-main);
}

.dash-kpi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--amazon-gray-20);
    padding-top: 16px;
}

.dash-kpi span {
    font-size: 14px;
    color: var(--amazon-gray-60);
}

.dash-kpi strong {
    font-size: 18px;
    color: var(--amazon-success-text);
}

/* Desktop Screen Component (Converge) */
.amazon-desktop-screen {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screen-bezel {
    width: 100%;
    background: #616161;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid #646464;
}

.screen-camera {
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.screen-display {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
}

.screen-stand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stand-neck {
    width: 80px;
    height: 40px;
    background: linear-gradient(to bottom, #282828, #616161);
    margin-top: -2px;
}

.stand-base {
    width: 200px;
    height: 12px;
    background: #4c4c4c;
    border-radius: 4px 4px 0 0;
}

/* App Window Interface Mockup */
.app-window {
    display: flex;
    height: 100%;
    background: #f4f4f4;
}

.app-sidebar {
    width: 60px;
    background: var(--amazon-gray-30);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
    gap: 16px;
}

.sidebar-icon {
    width: 32px;
    height: 32px;
    background: var(--amazon-gray-10);
    border-radius: 6px;
}

.sidebar-icon.active {
    background: var(--amazon-main);
}

.sidebar-icon.bottom {
    margin-top: auto;
    margin-bottom: 16px;
}

.app-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.app-header {
    height: 48px;
    background: #fff;
    border-bottom: 1px solid var(--amazon-gray-20);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.app-title-bar {
    width: 120px;
    height: 12px;
    background: var(--amazon-gray-20);
    border-radius: 6px;
}

.app-user-profile {
    width: 24px;
    height: 24px;
    background: var(--amazon-gray-30);
    border-radius: 50%;
}

.app-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

.content-row {
    display: flex;
    gap: 16px;
}

.content-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    height: 80px;
}

.content-card.w-60 {
    flex: 6;
}

.content-card.w-40 {
    flex: 4;
}

.content-card.w-100 {
    flex: 1;
    width: 100%;
}

.content-card.h-lg {
    height: 120px;
}

/* Process Steps (Pictogram Style) */
.amazon-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
    align-items: start;
}

.step-item {
    text-align: left;
}

.step-icon {
    font-size: 64px;
    background: linear-gradient(135deg, #0f62fe 0%, #009d9a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    display: inline-block;
    width: auto;
    height: auto;
}

.step-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--amazon-gray-100);
    line-height: 1.3;
}

.step-item p {
    font-size: 16px;
    color: var(--amazon-gray-70);
    line-height: 1.5;
}

/* Split Row Layout */

.amazon-check-list {
    list-style: none;
}

.amazon-check-list li {
    display: grid;
    grid-template-columns: 24px 220px 1fr;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 24px;
    color: var(--amazon-gray-70);
    font-size: 16px;
    text-align: left;
}

.amazon-check-list li svg {
    margin-top: 2px;
}

.amazon-check-list li i {
    color: var(--amazon-main);
}

.amazon-stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 48px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: var(--amazon-main);
    line-height: 1;
    margin-bottom: 16px;
}

.stat-label {
    font-size: 18px;
    color: var(--amazon-white);
}

/* Utilities */
.bg-light {
    background: var(--amazon-gray-10);
}

.bg-dark {
    background: var(--amazon-gray-100);
}

.text-white {
    color: var(--amazon-white);
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Badge */
.amazon-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(14, 171, 181, 0.12);
    color: var(--amazon-main);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 16px;
}

/* Badge sobre fundos escuros (heroes com imagem ou gradiente escuro) */
.amazon-lead-space .amazon-badge {
    background: rgba(14, 171, 181, 0.25);
    color: #ffffff;
    border: 1px solid rgba(14, 171, 181, 0.5);
}

/* Responsive Adjustments for New Components */
/* Home Page Redesign */

/* Hero Section */

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(15, 98, 254, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Customers Section */

.customers-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--amazon-gray-80);
    /* Dark text */
    margin-bottom: 32px;
    font-weight: 600;
}

.amazon-logo-wall {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.customer-logo,
.amazon-logo-wall-item {
    height: 36px;
    min-height: 32px;
    min-width: 100px;
    max-width: 180px;
    color: var(--amazon-gray-50);
    opacity: 0.6;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-logo svg,
.amazon-logo-wall-item svg {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.customer-logo:hover,
.amazon-logo-wall-item:hover {
    color: var(--amazon-main);
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Logo Wall Section */
.amazon-logo-wall-section {
    padding: 48px 24px;
    background: var(--amazon-gray-10);
}

.amazon-logo-wall-section--dark {
    background: var(--amazon-gray-90);
}

.amazon-logo-wall-section--dark .amazon-logo-wall-title {
    color: var(--amazon-gray-40);
}

.amazon-logo-wall-section--dark .amazon-logo-wall-item {
    color: var(--amazon-gray-40);
}

.amazon-logo-wall-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.amazon-logo-wall-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--amazon-gray-50);
    margin-bottom: 32px;
}

/* Bento Grid */

.bento-card {
    background: var(--amazon-white);
    border: 1px solid var(--amazon-gray-20);
    border-radius: 24px;
    /* More rounded */
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--amazon-main);
}

.bento-card.span-2 {
    grid-column: span 2;
}

.bento-card.span-3 {
    grid-column: span 3;
}

.bento-icon {
    margin-bottom: 32px;
    color: var(--amazon-main);
    transition: transform 0.3s ease;
}

.bento-card h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--amazon-gray-100);
    letter-spacing: -0.5px;
}

.bento-card p {
    font-size: 18px;
    color: var(--amazon-gray-60);
    margin-bottom: 32px;
    flex-grow: 1;
    line-height: 1.5;
}

.bento-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Stats Section */

.thick-stat-number {
    font-size: 96px;
    /* Even bigger */
    font-weight: 100;
    /* Ultra thin */
    line-height: 1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -4px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--amazon-gray-50);
    font-weight: 600;
}

/* Insights Promo Section */

.promo-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--amazon-gray-100);
    margin-bottom: 8px;
}

.promo-content p {
    font-size: 16px;
    color: var(--amazon-gray-70);
    margin: 0;
}

/* Insights Trend Card (HTML/CSS Version) */
.insight-trend-card {
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 0;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 8px;
}

.card-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.card-header .dot.red {
    background: #FF5F57;
}

.card-header .dot.yellow {
    background: #FFBD2E;
}

.card-header .dot.green {
    background: #28C840;
}

.card-body {
    padding: 24px 20px;
}

.trend-graph-container {
    position: relative;
    height: 200px;
    /* Increased height */
    margin-bottom: 20px;
    width: 100%;
}

.trend-line-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.trend-point {
    animation: pulsePoint 2s infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.trend-tooltip {
    position: absolute;
    background: #333;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    transform: translate(-50%, -100%);
    margin-top: -8px;
}

.trend-tooltip::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px 4px 0;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.card-footer .label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.card-footer .value {
    font-size: 13px;
    color: #03543F;
    font-weight: 700;
}

/* Orbiting Particles (HTML) */
.orbit-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--amazon-main);
    pointer-events: none;
}

.orbit-particle.p1 {
    width: 8px;
    height: 8px;
    top: 20%;
    right: -20px;
    animation: orbit1 12s linear infinite;
}

.orbit-particle.p2 {
    width: 6px;
    height: 6px;
    bottom: 10%;
    left: -10px;
    opacity: 0.6;
    animation: orbit2 8s linear infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulsePoint {
    0% {
        r: 5;
        opacity: 1;
    }

    50% {
        r: 7;
        opacity: 0.7;
    }

    100% {
        r: 5;
        opacity: 1;
    }
}

@keyframes orbit1 {
    0% {
        transform: translate(0, 0) rotate(0deg) translateX(160px) rotate(0deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg) translateX(160px) rotate(-360deg);
    }
}

/* Simplified orbit for HTML context - actually let's just make them float around the card container */
.amazon-lead-image-abstract {
    position: relative;
    /* Ensure particles are relative to this container */
}

.amazon-btn-outline:hover {
    background: rgba(14, 171, 181, 0.12);
    gap: 12px;
    /* Arrow movement effect */
}

/* Contact Strip */

.contact-container h2 {
    font-size: 40px;
    font-weight: 200;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

/* Responsive Home */
/* Spacing Utilities */
/* Margin Top */
.margin-top-0 {
    margin-top: 0 !important;
}

.margin-top-8 {
    margin-top: 8px !important;
}

.margin-top-16 {
    margin-top: 16px !important;
}

.margin-top-24 {
    margin-top: 24px !important;
}

.margin-top-32 {
    margin-top: 32px !important;
}

.margin-top-48 {
    margin-top: 48px !important;
}

.margin-top-64 {
    margin-top: 64px !important;
}

.margin-top-80 {
    margin-top: 80px !important;
}

.margin-top-96 {
    margin-top: 96px !important;
}

.margin-top-128 {
    margin-top: 128px !important;
}

/* Margin Bottom */
.margin-bottom-0 {
    margin-bottom: 0 !important;
}

.margin-bottom-8 {
    margin-bottom: 8px !important;
}

.margin-bottom-16 {
    margin-bottom: 16px !important;
}

.margin-bottom-24 {
    margin-bottom: 24px !important;
}

.margin-bottom-32 {
    margin-bottom: 32px !important;
}

.margin-bottom-48 {
    margin-bottom: 48px !important;
}

.margin-bottom-64 {
    margin-bottom: 64px !important;
}

.margin-bottom-80 {
    margin-bottom: 80px !important;
}

.margin-bottom-96 {
    margin-bottom: 96px !important;
}

.margin-bottom-128 {
    margin-bottom: 128px !important;
}

/* Padding Top */
.padding-top-0 {
    padding-top: 0 !important;
}

.padding-top-8 {
    padding-top: 8px !important;
}

.padding-top-16 {
    padding-top: 16px !important;
}

.padding-top-24 {
    padding-top: 24px !important;
}

.padding-top-32 {
    padding-top: 32px !important;
}

.padding-top-48 {
    padding-top: 48px !important;
}

.padding-top-64 {
    padding-top: 64px !important;
}

.padding-top-80 {
    padding-top: 80px !important;
}

.padding-top-96 {
    padding-top: 96px !important;
}

.padding-top-128 {
    padding-top: 128px !important;
}

/* Padding Bottom */
.padding-bottom-0 {
    padding-bottom: 0 !important;
}

.padding-bottom-8 {
    padding-bottom: 8px !important;
}

.padding-bottom-16 {
    padding-bottom: 16px !important;
}

.padding-bottom-24 {
    padding-bottom: 24px !important;
}

.padding-bottom-32 {
    padding-bottom: 32px !important;
}

.padding-bottom-48 {
    padding-bottom: 48px !important;
}

.padding-bottom-64 {
    padding-bottom: 64px !important;
}

.padding-bottom-80 {
    padding-bottom: 80px !important;
}

.padding-bottom-96 {
    padding-bottom: 96px !important;
}

.padding-bottom-128 {
    padding-bottom: 128px !important;
}

/* Lead Capture Form - High Ticket Aesthetic */
/* Form submit button hover — override .amz-ds .btn:hover (accent-ink = dark bg, illegible on dark surface) */
.amz-ds .on-dark .form-card .btn:hover {
    background: var(--ai-lime, #b8f04a);
    border-color: var(--ai-lime, #b8f04a);
    color: #0a0a0a;
}

/* Form card — DS v2 dark surface */
.amz-ds .form-card {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--line-on-dark, rgba(255,255,255,0.16));
    border-radius: 12px;
    padding: clamp(24px, 4vw, 40px);
}

.lead-form-group {
    margin-bottom: 20px;
    position: relative;
}

.lead-form-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--amazon-gray-40);
    margin-bottom: 8px;
    font-weight: 600;
}

.lead-form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--amazon-white);
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lead-form-input:focus {
    outline: none;
    border-color: var(--ai-teal, var(--amazon-main));
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 4px rgba(14, 171, 181, 0.12);
}

.lead-form-input.is-error {
    border-color: #f87171;
    background: rgba(248, 113, 113, 0.08);
}

.lead-form-input.is-error:focus {
    border-color: #f87171;
    box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.15);
}

.field-error-msg {
    display: block;
    font-size: 12px;
    color: #f87171;
    margin-top: 6px;
}

.lead-form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

textarea.lead-form-input {
    resize: vertical;
    min-height: 100px;
}

.lead-submit-btn {
    width: 100%;
    background: var(--amazon-main);
    color: var(--amazon-white);
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lead-submit-btn:hover {
    background: #e06900;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(253, 116, 0, 0.5);
}

.lead-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-status {
    margin-top: 16px;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
}

.status-success {
    color: var(--amazon-success-text);
    background: var(--amazon-success-bg);
    padding: 10px;
    border-radius: 4px;
}

.status-error {
    color: var(--amazon-error-text);
    background: var(--amazon-error-bg);
    padding: 10px;
    border-radius: 4px;
}

/* Success State Overlay */
.lead-success-state {
    text-align: center;
    padding: 40px 0;
    display: none;
    animation: fadeIn 0.5s ease;
}

.lead-success-icon {
    font-size: 64px;
    color: var(--amazon-success-text);
    margin-bottom: 24px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Light Header Variant */
.amazon-header.light {
    background: var(--amazon-white);
    border-bottom: 1px solid var(--amazon-gray-20);
}

.amazon-header.light .amazon-logo {
    color: var(--amazon-gray-100);
}

.amazon-header.light .amazon-nav a {
    color: var(--amazon-gray-70);
}

.amazon-header.light .amazon-nav a:hover {
    color: var(--amazon-main);
    background: var(--amazon-gray-10);
}

.amazon-header.light .amazon-dropbtn {
    color: var(--amazon-gray-70);
}

.amazon-header.light .amazon-dropdown:hover .amazon-dropbtn {
    color: var(--amazon-main);
    background: var(--amazon-gray-10);
}

.amazon-header.light .lang-btn {
    color: var(--amazon-gray-70);
}

.amazon-header.light .lang-btn:hover {
    color: var(--amazon-main);
}

/* Fix Select Box Styling */
select.lead-form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
    /* Space for arrow */
    cursor: pointer;
}

select.lead-form-input option {
    background-color: var(--ai-teal-700, #1a4b52);
    color: white;
}

/* Products Page App Window wrapper for Honeycomb */
.amazon-app-window-wrapper {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.amazon-app-window {
    width: 95%;
    /* Mobile first: occupy most of width */
    max-width: 600px;
    /* Cap at desired size */
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.amazon-app-window:hover {
    transform: rotateX(0deg) scale(1.02);
}

.app-header {
    background: #f4f4f4;
    padding: 12px 16px;
    display: flex;
    justify-content: flex-start;
    /* Ensure left alignment */
    gap: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.app-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.app-dot.red {
    background: #ff5f57;
}

.app-dot.yellow {
    background: #febc2e;
}

.app-dot.green {
    background: #28c840;
}

.app-content {
    background: #fefefe;
    /* Dark background for the honeycomb contrast */
    height: 320px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Honeycomb Grid adjustments for inside window */
.honeycomb-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    transform: scale(0.8);
    /* Slightly smaller to fit */
}

.hex-row {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: -16px;
}

.hex-row:first-child {
    margin-top: 0;
}

.hex {
    width: 100px;
    height: 115px;
    background: rgba(213, 213, 213, 0.881);
    /* Increased contrast from 0.03 */
    margin: 0 4px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: default;
    /* Indicate interactive nature potentially, or keep default */
}

/* Pseudo-element for inner border effect */
.hex::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #616161;
    /* Match container bg */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
    transition: background 0.3s ease;
}

.hex-content {
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Highlight the center Logo Hex */
.hex.active {
    background: var(--amazon-main);
    filter: drop-shadow(0 0 15px rgba(24, 86, 99, 0.4));
}

.hex.active::before {
    background: linear-gradient(135deg, var(--amazon-main) 0%, #d16000 100%);
}

/* Hover effects */
.hex:hover:not(.active) {
    transform: scale(1.05);
}

.hex:hover:not(.active)::before {
    background: var(--amazon-glow-green);
    /* Turn fill orange (covering inner dark) */
    opacity: 0.8;
    /* Slight transparency for effect */
}

/* Privacy & Terms Page Styles */

.privacy-table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.privacy-table th {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    background-color: #f5f5f5;
}

.privacy-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.privacy-helper-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 8px;
}

/* Hero Screen Component Styles */

/* Portable Power Station Hero Styles */

.battery-hero-window-content {
    background: linear-gradient(to bottom, #ffffff, #f0fdf4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
}

.battery-bg-field-left {
    position: absolute;
    bottom: -50px;
    left: -20%;
    width: 140%;
    height: 180px;
    background: #28C840;
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}

.battery-bg-field-right {
    position: absolute;
    bottom: -20px;
    right: -10%;
    width: 80%;
    height: 120px;
    background: #28C840;
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

.battery-hero-component {
    position: relative;
    width: 100%;
    max-width: 380px;
    z-index: 1;
    margin-top: 60px;
}

.battery-hero-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
}

.text-glow-green {
    color: var(--amazon-glow-green) !important;
    fill: var(--amazon-glow-green) !important;
}

/* Converge Maturity Model - Refactoring */
/* Hero Graphic Placeholder */

/* Section Colors */

/* Impact Grid */

/* Impact Cards */

.text-pain {
    color: #D32F2F;
}

.text-solution {
    color: #388E3C;
}

/* Methodology Dark Cards */

/* Step Badge */
.amazon-step-badge {
    background: var(--amazon-main);
    color: var(--amazon-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.amazon-step-badge--muted {
    background: var(--amazon-gray-50);
    color: var(--amazon-white);
}

/* Social Proof */

/* Definition Section */

/* Gartner-style Quadrant Chart */

.quadrant-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    border: none;
    position: relative;
    background: transparent;
}

.quadrant-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

/* Quadrant Specific Borders */
.quadrant-area:nth-child(1) {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

/* Challengers - TL */
.quadrant-area:nth-child(2) {
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

/* Leaders - TR */
.quadrant-area:nth-child(3) {
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

/* Niche - BL */
.quadrant-area:nth-child(4) {
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

/* Visionaries - BR */

.quadrant-label {
    position: absolute;
    font-size: 10px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Label Positioning */
.quadrant-area:nth-child(1) .quadrant-label {
    top: 10px;
    left: 10px;
}

.quadrant-area:nth-child(2) .quadrant-label {
    top: 10px;
    right: 10px;
    text-align: right;
}

.quadrant-area:nth-child(3) .quadrant-label {
    bottom: 10px;
    left: 10px;
}

.quadrant-area:nth-child(4) .quadrant-label {
    bottom: 10px;
    right: 10px;
    text-align: right;
}

/* Dots */
.chart-dot {
    width: 12px;
    height: 12px;
    background: #bbb;
    /* Default competitor color */
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.chart-dot.converge {
    width: 28px;
    height: 28px;
    background: var(--amazon-main);
    border: 2px solid #fff;
    box-shadow: 0 4px 8px rgba(24, 86, 99, 0.4);
    z-index: 10;
    /* Position for Leader (TR quadrant, high up/right) */
    top: 25%;
    left: 80%;
}

.chart-dot-label {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.chart-dot:hover .chart-dot-label,
.chart-dot.converge .chart-dot-label {
    opacity: 1;
}

.chart-dot.converge .chart-dot-label {
    background: var(--amazon-main);
}

/* Allow matrix to expand container */
.amazon-lead-image-abstract.matrix-container {
    height: auto;
    min-height: 400px;
    align-items: flex-start;
    /* Align top */
    padding-top: 20px;
    overflow: visible;
}

/* Scoring Maturity Matrix */

/* Header Row (Top Levels) */

/* Row Labels (Left Side) */

/* Main Grid Cells */

/* Active Cells (Primary) */
/* Using different opacities for visual depth if desired, or flat?
   User said "colored like the example" which seems flat purple.
   using primary (amazon-blue-dark). */

/* Assessment Callout (Right Side) */

/* Column Labels (Bottom) */

/* Responsiveness */
/* =========================================
   Component: Split Intro Section (IBM Style)
   ================================********* */

.amazon-section-split {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
}

/* Split Ratio Modifiers */
/* Default (if no modifier) or Explicit 40/60 */
.amazon-split--40-60 .amazon-split-heading,
.amazon-section-split:not([class*="amazon-split--"]) .amazon-split-heading {
    flex: 4;
}

.amazon-split--40-60 .amazon-split-content,
.amazon-section-split:not([class*="amazon-split--"]) .amazon-split-content {
    flex: 6;
}

/* 60/40 Split (Inverted) - Heading Wider */

/* 50/50 Split */
.amazon-split--50-50 .amazon-split-heading,
.amazon-split--50-50 .amazon-split-content {
    flex: 1;
}

.amazon-split-heading {
    /* Flex basis handled by parent modifiers */
}

.amazon-split-content {
    /* Flex basis handled by parent modifiers */
}

/* 50% / 50% */

/* 40% / 60% */

/* 30% / 70% */

/* 60% / 40% */

/* 70% / 30% */

.amazon-split-heading h2 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

/* Gradient Text Utility */

/* Link List Component */
.amazon-link-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
}

.amazon-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--amazon-gray-20);
    color: var(--amazon-main);
    font-size: 18px;
    transition: all 0.2s ease;
}

.amazon-link-item:hover {
    padding-left: 8px;
    /* Subtle movement */
    color: var(--amazon-main);
    border-bottom-color: var(--amazon-main);
}

.amazon-link-item span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive Split */
/* CTA Banner Split Component */
.amazon-cta-split {
    display: flex;
    width: 100%;
    max-width: 1584px;
    margin: 0 auto;
    min-height: 280px;
    background: var(--amazon-gray-80);
    overflow: hidden;
}

.amazon-cta-split-image {
    flex: 0 0 40%;
    background-color: var(--amazon-gray-10);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amazon-cta-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amazon-cta-split-content {
    flex: 0 0 60%;
    padding: 48px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    color: var(--amazon-white);
}

.amazon-cta-split-overline {
    font-size: 14px;
    color: var(--amazon-gray-30);
    margin-bottom: 32px;
    font-weight: 400;
}

.amazon-cta-split-title {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 300;
    max-width: 500px;
    margin: 0;
}

.amazon-cta-split-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 64px;
    width: 280px;
}

.amazon-cta-split-btn::after {
    font-size: 20px;
}

/* Responsive CTA Split */

/* =========================================
   13. RESPONSIVE STYLES
   ================================********* */

/* Desktop (min-width: 1025px) */
@media screen and (min-width: 1025px) {
    .lang-mega-menu .amazon-mega-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .amazon-nav,
    .amazon-nav-links,
    .amazon-header-container {
        position: static !important;
    }

    .amazon-header {
        position: sticky;
        /* Keep this for visibility */
    }

    .amazon-dropdown-content {
        left: 0;
        width: 100vw;
    }
}

/* Large Tablet (max-width: 1056px) */
@media (max-width: 1056px) {
    .amazon-lead-space-container {
        grid-template-columns: 1fr;
    }

    .amazon-card-group,
    .amazon-grid-2 {
        grid-template-columns: 1fr !important;
    }

    .amazon-lead-content h1 {
        font-size: 42px;
    }

    .amazon-process-steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Removed .step-line styles */

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .thick-stat-number {
        font-size: 72px;
    }

    .amazon-cta-split-content {
        padding: 32px;
    }

    .amazon-cta-split-btn {
        position: static;
        transform: none;
        margin-top: 32px;
        width: 100%;
        max-width: 280px;
    }
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .amazon-footer-top {
        flex-direction: column;
        gap: 48px;
    }

    .amazon-footer-logo {
        flex: 0 0 auto;
    }

    .amazon-footer-links {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on tablet */
    }

    .amazon-mobile-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .amazon-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--amazon-white);
        flex-direction: column;
        padding: 80px 24px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 10000;
        overflow-y: auto;
        align-items: flex-start;
    }

    .amazon-nav-links.is-open {
        right: 0;
    }

    .amazon-nav-links a,
    .amazon-dropdown .amazon-dropbtn {
        width: 100%;
        height: auto;
        padding: 20px 0;
        border-bottom: 1px solid var(--amazon-gray-10);
        font-size: 18px;
        color: var(--amazon-gray-100) !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: none;
        box-sizing: border-box;
    }

    .amazon-lang-dropdown .lang-btn {
        justify-content: flex-start !important;
        gap: 12px;
        color: var(--amazon-gray-100) !important;
    }

    .amazon-lang-dropdown .lang-btn svg:not(.arrow) {
        margin-left: 0;
        flex-shrink: 0;
    }

    .amazon-lang-dropdown .lang-btn .arrow {
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .amazon-dropdown.is-open .lang-btn .arrow {
        transform: rotate(180deg);
    }

    .amazon-dropdown {
        width: 100%;
        position: relative;
    }

    .amazon-dropdown-content {
        position: static;
        width: 100% !important;
        max-height: 0;
        overflow: hidden;
        visibility: visible;
        opacity: 1;
        box-shadow: none;
        border: none;
        transition: max-height 0.3s ease;
    }

    .amazon-dropdown.is-open .amazon-dropdown-content {
        max-height: 2000px;
        /* Large enough for content */
    }

    .amazon-mega-container {
        flex-direction: column;
        min-height: auto;
    }

    .amazon-mega-sidebar {
        width: 100%;
        padding: 16px 0;
        border-right: none;
        border-bottom: 1px solid var(--amazon-gray-20);
    }

    .amazon-mega-main {
        padding: 24px 0;
    }

    .amazon-mega-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .amazon-mega-item {
        padding: 16px 0 !important;
    }

    /* Small dropdowns (sustainability, language) */
    .small-dropdown a,
    .lang-content a {
        padding: 12px 16px !important;
        font-size: 16px;
    }
}

/* Tablet Portrait (max-width: 992px) */
@media (max-width: 992px) {
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .amazon-gap-list {
        grid-template-columns: 1fr;
    }

    .amazon-logo-wall {
        gap: 32px;
    }

    .customer-logo {
        height: 32px;
    }

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

    .amazon-section-split {
        flex-direction: column;
        gap: 32px;
    }

    .amazon-split-heading,
    .amazon-split-content {
        flex: 1 1 100%;
        width: 100%;
    }

    .amazon-split-heading h2 {
        font-size: 32px;
    }

    .amazon-cta-split {
        flex-direction: column;
    }

    .amazon-cta-split-image {
        flex: 0 0 auto;
        height: 200px;
    }

    .amazon-cta-split-content {
        flex: 0 0 auto;
    }
}

/* Small Mobile (max-width: 672px) */
@media (max-width: 672px) {
    /* .amazon-nav display: none; - REMOVED: Hides hamburger button */

    .amazon-lead-content h1 {
        font-size: 32px;
    }

    .amazon-section-header h2 {
        font-size: 32px;
    }

    .amazon-cta-container {
        flex-direction: column;
        text-align: center;
    }

    .amazon-footer-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .amazon-check-list li {
        grid-template-columns: 24px 1fr;
        grid-template-areas: "icon label" ". desc";
        gap: 8px 12px;
    }

    .amazon-check-list li svg {
        grid-area: icon;
    }

    .amazon-check-list li strong {
        grid-area: label;
    }

    .bento-card.span-2 {
        grid-column: span 1;
    }
}

/* Extra Small (max-width: 600px) */
@media (max-width: 600px) {
    .amazon-footer-links {
        grid-template-columns: 1fr;
        /* 1 col on mobile */
        gap: 48px;
    }

    .amazon-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .amazon-footer-contact,
    .amazon-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* =========================================
   14. SCROLL REVEAL SYSTEM (Fade-In on Scroll)
   ========================================= */

/* Base: Hidden state for elements awaiting reveal */
.amazon-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

/* Revealed state: Applied when element enters viewport */
.amazon-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Variants: Different animation directions */

/* Delay modifiers for staggered animations */

.amazon-reveal--delay-2 {
    transition-delay: 0.2s;
}

/* Accessibility: Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .amazon-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Lazy Load Image Transition */
img[data-src] {
    opacity: 0;
    transition: opacity 0.4s ease-in;
}

img[data-src].is-loaded,
img.is-loaded {
    opacity: 1;
}

/* ---- Accessibility (WCAG 2.1 AA) ---- */
/* Skip link: hidden until focused via keyboard (WCAG 2.4.1 Bypass Blocks) */
.skip-link {
    position: absolute;
    left: 8px;
    top: -56px;
    z-index: 10000;
    background: var(--amazon-main, #185663);
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.15s ease;
}
.skip-link:focus {
    top: 8px;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Visible keyboard focus for nav controls (mouse focus unaffected via :focus-visible) */
.amazon-dropbtn:focus-visible,
.amazon-mega-item:focus-visible,
.amazon-mobile-toggle:focus-visible,
.amazon-logo:focus-visible {
    outline: 2px solid var(--amazon-main, #185663);
    outline-offset: 3px;
    border-radius: 4px;
}

/* =========================================================
   INDUSTRIES MEGA MENU
   Layout por linhas (inspirado na Minsait):
   col-esquerda = título da indústria (teal)
   col-direita  = sub-links de texto (mesmo padrão .amazon-mega-item)
   ========================================================= */
.industries-mega-body {
    padding: 40px 64px;
    width: 100%;
}

.industries-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0 48px;
    padding: 28px 0;
    border-bottom: 1px solid var(--amazon-gray-20);
    align-items: center;
}

.industries-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.industries-row:first-child {
    padding-top: 0;
}

.industries-row-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--amazon-main);
    line-height: 1.3;
}

.industries-row-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: stretch;
}

/* Industries: override do min-height do container genérico */
.industries-mega-body ~ * .amazon-mega-container,
.amazon-dropdown:has(.industries-mega-body) .amazon-mega-container {
    min-height: unset;
}

/* Mobile overrides */
@media (max-width: 768px) {
    .industries-mega-body {
        padding: 16px 0;
    }

    .industries-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 0;
    }

    .industries-row-items {
        gap: 8px;
    }

    .industries-mega-body .amazon-mega-item {
        white-space: normal;
    }
}