@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700&display=swap");

:root {
    --orange-soft: #f7a24b;
    --orange-strong: #f07a1f;
    --orange-deep: #d85a12;
    --cream: #fff4e6;
    --text-dark: #2f1c0e;
    --panel: #fffaf4;
}

* {
    box-sizing: border-box;
   
}

body {
    font-family: "Sora", "Trebuchet MS", sans-serif;
    background: radial-gradient(circle at top left, #fff2e4 0%, #fff7ef 40%, #fffdf9 100%);
    color: var(--text-dark);
    min-height: 100vh;
}

.about {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 48px 24px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-hero {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.about-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    color: var(--orange-deep);
    margin-bottom: 12px;
}

.about-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 16px;
}

.about-lead {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn {
    background: var(--orange-strong);
    color: #fff;
    box-shadow: 0 18px 34px rgba(240, 122, 31, 0.28);
}

.primary-btn:hover {
    background: var(--orange-deep);
    transform: translateY(-1px);
}

.ghost-btn {
    background: #fff;
    color: var(--text-dark);
    border: 1px solid #ffd1a1;
}

.ghost-btn:hover {
    background: var(--orange-soft);
    color: #fff;
}

.about-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.about-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid #ffe0c2;
    box-shadow: 0 14px 26px rgba(240, 122, 31, 0.14);
}

.about-card h3 {
    margin-bottom: 10px;
}

.about-card p {
    line-height: 1.6;
}

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

.about-values h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.value-item {
    background: var(--panel);
    border: 1px solid #ffd9b3;
    border-radius: 16px;
    padding: 18px;
}

.value-title {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-cta {
    display: flex;
    justify-content: center;
}

.cta-box {
    background: linear-gradient(120deg, #ffe8cc 0%, #ffd6a6 100%);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    max-width: 760px;
    width: 100%;
    box-shadow: 0 24px 50px rgba(240, 122, 31, 0.2);
    border: 2px solid #ffc58f;
}

.cta-box h2 {
    margin-bottom: 12px;
}

.cta-box p {
    line-height: 1.7;
    margin-bottom: 18px;
}

@media (max-width: 900px) {
    .about {
        padding: 32px 16px 60px;
    }
}