/* ============================================ */
/* ANWENDUNGSFÄLLE TEMPLATE CSS                */
/* Conversion-optimized landing pages          */
/* ============================================ */

/* ---- VARIABLES ---- */
:root {
    --aw-primary: #00E5FF;
    --aw-primary-rgb: 0, 229, 255;
    --aw-bg: #0a0a0f;
    --aw-bg-card: rgba(255, 255, 255, 0.02);
    --aw-border: rgba(255, 255, 255, 0.06);
    --aw-text: rgba(255, 255, 255, 0.75);
    --aw-text-muted: rgba(255, 255, 255, 0.5);
    --aw-radius: 16px;
    --aw-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.aw-page {
    font-family: var(--aw-font);
    background: var(--aw-bg);
    color: #fff;
}

.aw-page *, .aw-page *::before, .aw-page *::after {
    font-family: var(--aw-font);
}

/* ---- HERO SECTION ---- */
.aw-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--aw-bg);
    background-size: cover;
    background-position: center;
}

.aw-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.92) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(10, 10, 15, 0.5) 100%);
    z-index: 1;
}

.aw-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--aw-bg));
    z-index: 2;
    pointer-events: none;
}

.aw-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 24px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.aw-hero-text {
    max-width: 580px;
}

.aw-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--aw-primary);
    color: var(--aw-primary);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 28px;
    background: rgba(var(--aw-primary-rgb), 0.06);
}

.aw-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.aw-hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--aw-primary), #00ffd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.aw-hero-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--aw-text);
    margin-bottom: 32px;
}

.aw-hero-desc a {
    color: var(--aw-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(var(--aw-primary-rgb), 0.3);
}

.aw-hero-stats {
    display: flex;
    gap: 36px;
    margin-bottom: 36px;
}

.aw-hero-stat {
    text-align: left;
}

.aw-hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--aw-primary);
    line-height: 1;
}

.aw-hero-stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--aw-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.aw-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.aw-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aw-hero-product {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.aw-hero-product img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    animation: aw-float 6s ease-in-out infinite;
}

@keyframes aw-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.aw-hero-floating {
    position: absolute;
    padding: 8px 16px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--aw-primary-rgb), 0.25);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.aw-hero-floating svg {
    width: 16px;
    height: 16px;
    stroke: var(--aw-primary);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.aw-hero-floating:nth-child(2) { top: 5%; right: -10%; animation: aw-badge-float 5s ease-in-out infinite; }
.aw-hero-floating:nth-child(3) { bottom: 30%; left: -15%; animation: aw-badge-float 6s ease-in-out 1s infinite; }
.aw-hero-floating:nth-child(4) { bottom: 5%; right: 0%; animation: aw-badge-float 5.5s ease-in-out 0.5s infinite; }

@keyframes aw-badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---- BUTTONS ---- */
.aw-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--aw-primary);
    color: #0a0a0f;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--aw-primary);
    font-family: var(--aw-font);
}

.aw-btn-primary:hover {
    background: transparent;
    color: var(--aw-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--aw-primary-rgb), 0.3);
}

.aw-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-family: var(--aw-font);
}

.aw-btn-outline:hover {
    border-color: var(--aw-primary);
    color: var(--aw-primary);
    transform: translateY(-2px);
}

/* ---- SOCIAL PROOF BAR ---- */
.aw-social-proof-bar {
    padding: 40px 24px;
    background: rgba(var(--aw-primary-rgb), 0.03);
    border-top: 1px solid rgba(var(--aw-primary-rgb), 0.08);
    border-bottom: 1px solid rgba(var(--aw-primary-rgb), 0.08);
}

.aw-proof-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.aw-proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--aw-text-muted);
    font-weight: 400;
}

.aw-proof-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--aw-primary);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.aw-proof-item strong {
    color: #fff;
    font-weight: 600;
}

/* ---- SECTION BASE ---- */
.aw-section {
    padding: 100px 24px;
    position: relative;
}

.aw-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.aw-section-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--aw-primary);
    margin-bottom: 16px;
}

.aw-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.aw-section h2 .text-gradient {
    background: linear-gradient(135deg, var(--aw-primary), #00ffd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aw-section-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--aw-text);
    max-width: 700px;
}

/* ---- PROBLEM SECTION ---- */
.aw-problems {
    background: var(--aw-bg);
    text-align: center;
}

.aw-problems .aw-section-desc {
    margin: 0 auto 60px;
}

.aw-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.aw-problem-card {
    padding: 40px 28px;
    background: var(--aw-bg-card);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius);
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.aw-problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--aw-primary-rgb), 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.aw-problem-card:hover::before {
    opacity: 1;
}

.aw-problem-card:hover {
    border-color: rgba(var(--aw-primary-rgb), 0.15);
    transform: translateY(-4px);
}

.aw-problem-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--aw-primary-rgb), 0.08);
    border-radius: 12px;
    margin-bottom: 20px;
}

.aw-problem-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--aw-primary);
    fill: none;
    stroke-width: 2;
}

.aw-problem-card h3 {
    font-size: 1.15rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}

.aw-problem-card p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--aw-text);
}

/* ---- SOLUTION SECTION ---- */
.aw-solution {
    background: linear-gradient(180deg, var(--aw-bg) 0%, rgba(var(--aw-primary-rgb), 0.03) 50%, var(--aw-bg) 100%);
}

.aw-solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.aw-solution-image {
    position: relative;
    border-radius: var(--aw-radius);
    overflow: hidden;
}

.aw-solution-image img {
    width: 100%;
    height: auto;
    border-radius: var(--aw-radius);
    border: 1px solid rgba(var(--aw-primary-rgb), 0.15);
}

.aw-solution-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.aw-solution-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.aw-solution-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--aw-primary-rgb), 0.08);
    border-radius: 10px;
    margin-top: 2px;
}

.aw-solution-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--aw-primary);
    fill: none;
    stroke-width: 2;
}

.aw-solution-feature h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

.aw-solution-feature p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--aw-text);
}

/* ---- USE CASES SECTION ---- */
.aw-usecases {
    background: var(--aw-bg);
}

.aw-usecases-header {
    text-align: center;
    margin-bottom: 64px;
}

.aw-usecases-header .aw-section-desc {
    margin: 0 auto;
}

.aw-usecase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
    padding: 40px;
    background: var(--aw-bg-card);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius);
    transition: border-color 0.4s ease;
}

.aw-usecase:hover {
    border-color: rgba(var(--aw-primary-rgb), 0.15);
}

.aw-usecase:last-child {
    margin-bottom: 0;
}

.aw-usecase-reverse {
    direction: rtl;
}

.aw-usecase-reverse > * {
    direction: ltr;
}

.aw-usecase-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(var(--aw-primary-rgb), 0.15);
    line-height: 1;
    margin-bottom: 8px;
}

.aw-usecase h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
}

.aw-usecase p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--aw-text);
    margin-bottom: 20px;
}

.aw-usecase-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aw-usecase-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--aw-text);
}

.aw-usecase-benefits li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: rgba(var(--aw-primary-rgb), 0.1);
    border: 1px solid rgba(var(--aw-primary-rgb), 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300E5FF' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center;
}

.aw-usecase-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.aw-usecase-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.aw-usecase:hover .aw-usecase-image img {
    transform: scale(1.03);
}

/* ---- FEATURES GRID ---- */
.aw-features {
    background: linear-gradient(180deg, var(--aw-bg) 0%, rgba(var(--aw-primary-rgb), 0.02) 100%);
    text-align: center;
}

.aw-features .aw-section-desc {
    margin: 0 auto 60px;
}

.aw-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.aw-feature-card {
    padding: 36px 28px;
    background: var(--aw-bg-card);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius);
    text-align: left;
    transition: all 0.4s ease;
}

.aw-feature-card:hover {
    border-color: rgba(var(--aw-primary-rgb), 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.aw-feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--aw-primary-rgb), 0.08);
    border-radius: 10px;
    margin-bottom: 18px;
}

.aw-feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--aw-primary);
    fill: none;
    stroke-width: 2;
}

.aw-feature-card h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.aw-feature-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--aw-text);
}

/* ---- COMPONENTS CAROUSEL ---- */
.aw-carousel {
    background: var(--aw-bg);
    text-align: center;
    overflow: hidden;
}

.aw-carousel .aw-section-desc {
    margin: 0 auto 48px;
}

.aw-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.aw-carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 20px 0;
}

.aw-carousel-track::-webkit-scrollbar {
    display: none;
}

.aw-carousel-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    background: var(--aw-bg-card);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius);
    padding: 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.aw-carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--aw-primary-rgb), 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.aw-carousel-card:hover::before {
    opacity: 1;
}

.aw-carousel-card:hover {
    border-color: rgba(var(--aw-primary-rgb), 0.25);
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

.aw-carousel-card-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: radial-gradient(ellipse at center, rgba(var(--aw-primary-rgb), 0.06) 0%, transparent 70%);
    border-radius: 12px;
    padding: 16px;
}

.aw-carousel-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}

.aw-carousel-card:hover .aw-carousel-card-image img {
    transform: scale(1.05);
}

.aw-carousel-card h4 {
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.aw-carousel-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--aw-text);
}

.aw-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(var(--aw-primary-rgb), 0.1);
    border: 1px solid rgba(var(--aw-primary-rgb), 0.3);
    color: var(--aw-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    backdrop-filter: blur(10px);
}

.aw-carousel-btn:hover {
    background: rgba(var(--aw-primary-rgb), 0.2);
    border-color: var(--aw-primary);
    transform: translateY(-50%) scale(1.1);
}

.aw-carousel-btn-prev {
    left: 0;
}

.aw-carousel-btn-next {
    right: 0;
}

.aw-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.aw-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.aw-carousel-dot.active {
    background: var(--aw-primary);
    width: 24px;
    border-radius: 4px;
}

/* ---- TESTIMONIALS ---- */
.aw-testimonials {
    background: linear-gradient(180deg, rgba(var(--aw-primary-rgb), 0.02) 0%, var(--aw-bg) 100%);
    text-align: center;
}

.aw-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 48px auto 0;
}

.aw-testimonial-card {
    padding: 36px 28px;
    background: var(--aw-bg-card);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius);
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
}

.aw-testimonial-card:hover {
    border-color: rgba(var(--aw-primary-rgb), 0.15);
}

.aw-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.aw-testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--aw-primary);
}

.aw-testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--aw-text);
    margin-bottom: 24px;
    font-style: italic;
}

.aw-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.aw-testimonial-author strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.aw-testimonial-author span {
    font-size: 0.78rem;
    color: var(--aw-text-muted);
}

/* ---- FAQ SECTION ---- */
.aw-faq {
    background: var(--aw-bg);
    text-align: center;
}

.aw-faq-list {
    max-width: 800px;
    margin: 48px auto 0;
    text-align: left;
}

.aw-faq-item {
    border: 1px solid var(--aw-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.aw-faq-item:hover {
    border-color: rgba(var(--aw-primary-rgb), 0.15);
}

.aw-faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--aw-font);
    transition: color 0.3s ease;
}

.aw-faq-question:hover {
    color: var(--aw-primary);
}

.aw-faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--aw-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.aw-faq-item.active .aw-faq-question::after {
    transform: rotate(45deg);
}

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

.aw-faq-item.active .aw-faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.aw-faq-answer p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--aw-text);
}

/* ---- CTA SECTION ---- */
.aw-cta {
    text-align: center;
    background: linear-gradient(180deg, var(--aw-bg) 0%, rgba(var(--aw-primary-rgb), 0.05) 50%, var(--aw-bg) 100%);
    padding: 100px 24px;
    position: relative;
}

.aw-cta h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 20px;
}

.aw-cta p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--aw-text);
    max-width: 600px;
    margin: 0 auto 36px;
}

.aw-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.aw-cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.aw-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--aw-text-muted);
}

.aw-cta-trust-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--aw-primary);
    fill: none;
    stroke-width: 2;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .aw-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 120px 24px 60px;
    }
    .aw-hero-text { max-width: 100%; }
    .aw-hero-stats { justify-content: center; }
    .aw-hero-cta { justify-content: center; }
    .aw-hero-visual { display: none; }
    .aw-problems-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .aw-solution-content { grid-template-columns: 1fr; }
    .aw-usecase { grid-template-columns: 1fr; }
    .aw-usecase-reverse { direction: ltr; }
    .aw-features-grid { grid-template-columns: repeat(2, 1fr); }
    .aw-testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 48px auto 0; }
    .aw-carousel-card { flex: 0 0 calc(50% - 12px); }
    .aw-carousel-btn { display: none; }
    .aw-carousel-wrapper { padding: 0; }
    .aw-hero-floating { display: none; }
}

@media (max-width: 768px) {
    .aw-section { padding: 70px 20px; }
    .aw-features-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .aw-proof-items { gap: 24px; }
    .aw-carousel-card { flex: 0 0 calc(80% - 12px); }
}

@media (max-width: 480px) {
    .aw-hero h1 { font-size: 1.8rem; }
    .aw-hero-stats { flex-direction: column; gap: 16px; align-items: center; }
    .aw-section h2 { font-size: 1.5rem; }
    .aw-usecase { padding: 24px; }
}
