
/* =====================================================
   AuditWorkshop Homepage — front-page.php only
   Shared layout primitives live in aw-brand.css
   ===================================================== */

/* ---- Hero ---- */
.aw-hero {
    background: #1c4b42;
    padding: 100px 24px 90px;
    text-align: center;
}
.aw-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}
.aw-hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a7d7c0;
    margin: 0 0 20px;
}
.aw-hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
}
.aw-hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.65;
}
.aw-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Trust Bar ---- */
.aw-trust-bar {
    background: #fff;
    border-bottom: 1px solid #e8ecea;
    padding: 20px 24px;
}
.aw-trust-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.aw-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}
.aw-trust-check {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1c4b42;
    flex-shrink: 0;
    position: relative;
}
.aw-trust-check::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    width: 5px;
    height: 3px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-3px);
}

/* ---- Courses Section ---- */
.aw-courses-section {
    background: #f6f8f7;
}

/* ---- Workshop Section ---- */
.aw-workshop-section {
    background: #1c4b42;
    padding: 80px 0;
}
.aw-workshop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.aw-workshop-eyebrow {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a7d7c0;
    margin: 0 0 14px;
}
.aw-workshop-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}
.aw-workshop-lead {
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    margin-bottom: 24px;
    font-size: 1.05rem;
}
.aw-workshop-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.aw-workshop-list li {
    color: rgba(255,255,255,0.85);
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 0.95rem;
}
.aw-workshop-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 14px;
    height: 8px;
    border-left: 2px solid #a7d7c0;
    border-bottom: 2px solid #a7d7c0;
    transform: rotate(-45deg);
}

/* Workshop card */
.aw-workshop-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 36px;
    backdrop-filter: blur(4px);
}
.aw-wc-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a7d7c0;
    margin-bottom: 12px;
}
.aw-wc-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.3;
}
.aw-wc-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.aw-wc-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: #a7d7c0;
    flex-shrink: 0;
}
.aw-wc-btn {
    width: 100%;
    text-align: center;
    margin-top: 28px;
    box-sizing: border-box;
}

/* ---- Why Section ---- */
.aw-why-section {
    background: #fff;
}
.aw-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.aw-why-card {
    background: #f6f8f7;
    border-radius: 12px;
    padding: 36px 28px;
    border: 1px solid #e2ebe6;
}
.aw-why-icon-wrap {
    margin-bottom: 20px;
}
.aw-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #1c4b42;
    position: relative;
}
.aw-why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
}
.aw-why-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ---- Bottom CTA ---- */
.aw-cta-section {
    background: linear-gradient(135deg, #1c4b42 0%, #2d7a5f 100%);
    padding: 80px 24px;
    text-align: center;
}
.aw-cta-inner {
    max-width: 600px;
}
.aw-cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
}
.aw-cta-section p {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    margin: 0 0 32px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .aw-hero { padding: 64px 24px; }
    .aw-workshop-grid { grid-template-columns: 1fr; gap: 40px; }
    .aw-why-grid { grid-template-columns: 1fr; }
    .aw-trust-inner { gap: 20px; }
    .aw-why-card { padding: 28px 20px; }
}
