:root {
    --primary: #e85c1c;
    --primary-dark: #d14a0a;
    --primary-light: #ff7c3e;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --white: #ffffff;
    --accent: #e85c1c;
    --gradient: linear-gradient(135deg, #e85c1c 0%, #ff9500 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.accent {
    color: var(--accent);
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--dark);
    z-index: 1001;
}

@media (min-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
}

.logo-icon {
    font-size: 1.8rem;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark);
    z-index: 1001;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.nav-links {
    display: none;
    list-style: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    order: 3;
}

.nav-links.active {
    display: flex;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        width: auto;
        gap: 2rem;
        padding: 0;
        order: unset;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    display: block;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .nav-actions {
        display: flex;
    }
}

.phone {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(232, 92, 28, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(232, 92, 28, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* Hero */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 10rem 0 6rem;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232, 92, 28, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
    }
}

.hero-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

.hero-desc {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-desc {
        font-size: 1.2rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-stats {
        justify-content: flex-start;
    }
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-dark);
}

@media (min-width: 768px) {
    .stat-num {
        font-size: 2rem;
    }
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Solar Animation */
.hero-visual {
    display: none;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.solar-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

@media (min-width: 1200px) {
    .solar-animation {
        width: 400px;
        height: 400px;
    }
}

.sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #ff9500 0%, #e85c1c 100%);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(232, 92, 28, 0.6);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 60px rgba(232, 92, 28, 0.6); }
    50% { box-shadow: 0 0 100px rgba(232, 92, 28, 0.9); }
}

.panel {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%) perspective(500px) rotateX(30deg);
    width: 150px;
    height: 90px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (min-width: 1200px) {
    .panel {
        width: 200px;
        height: 120px;
    }
}

.rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px dashed rgba(232, 92, 28, 0.3);
    animation: spin 20s linear infinite;
}

@media (min-width: 1200px) {
    .rays {
        width: 300px;
        height: 300px;
    }
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Benefits */
.benefits {
    padding: 4rem 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .benefits {
        padding: 6rem 0;
    }
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.benefit-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--gray-light);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .benefit-card {
        padding: 2rem;
    }
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .benefit-icon {
        font-size: 3rem;
    }
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .benefit-card h3 {
        font-size: 1.3rem;
    }
}

.benefit-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Calculator */
.calculator {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

@media (min-width: 768px) {
    .calculator {
        padding: 6rem 0;
    }
}

.calculator .section-title {
    color: white;
}

.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .calc-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 3rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-group {
        margin-bottom: 2rem;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 4px;
    background: var(--gray-light);
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(232, 92, 28, 0.4);
}

.range-value {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--primary-light);
}

select {
    width: 100%;
    padding: 0.8rem;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    select {
        padding: 1rem;
    }
}

select option {
    background: var(--dark);
    color: white;
}

.calc-result {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .calc-result {
        gap: 1.5rem;
    }
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .result-item {
        padding: 1rem 1.5rem;
    }
}

.result-item.highlight {
    background: var(--gradient);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .result-item.highlight {
        font-size: 1.2rem;
    }
}

.result-item span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.result-item strong {
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .result-item strong {
        font-size: 1.3rem;
    }
}

.result-item .accent {
    color: #ff9500;
}

/* Catalog */
.catalog-page {
    padding: 4rem 0;
    background: #f8fafc;
}

@media (min-width: 768px) {
    .catalog-page {
        padding: 6rem 0;
    }
}

.catalog-filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

@media (min-width: 640px) {
    .catalog-filters {
        grid-template-columns: repeat(3, 1fr);
    }
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-group select {
    width: 100%;
    padding: 0.7rem;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 0.95rem;
    background: white;
    color: var(--dark);
}

.catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.product-card {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

@media (min-width: 768px) {
    .product-card {
        padding: 2rem;
    }
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

@media (min-width: 768px) {
    .product-badge {
        font-size: 0.8rem;
    }
}

.product-badge.sale {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.product-badge.new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.product-img-wrapper {
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.product-img-wrapper:hover {
    transform: scale(1.02);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    background: #1e293b;
}

@media (min-width: 768px) {
    .product-img {
        height: 250px;
    }
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
    .product-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}

.product-desc {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .product-desc {
        font-size: 0.9rem;
    }
}

.product-specs {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .product-specs {
        gap: 0.5rem;
    }
}

.product-specs span {
    background: #f1f5f9;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
}

@media (min-width: 768px) {
    .product-specs span {
        padding: 0.3rem 0.8rem;
        font-size: 0.85rem;
    }
}

.product-details {
    background: #f8fafc;
    padding: 0.8rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: left;
}

@media (min-width: 768px) {
    .product-details {
        padding: 1rem;
    }
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .detail-row {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
}

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

.detail-row span {
    color: var(--gray);
}

.detail-row strong {
    color: var(--dark);
}

.product-price {
    margin-bottom: 1.5rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--gray);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-dark);
}

@media (min-width: 768px) {
    .price {
        font-size: 1.5rem;
    }
}

/* Cart */
.cart-summary {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 999;
}

.cart-summary .container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cart-summary h3 {
    font-size: 0.9rem;
    margin-right: auto;
}

.cart-items {
    display: none;
}

.cart-total {
    font-size: 1.1rem;
}

.cart-summary .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Contact */
.contact {
    padding: 4rem 0;
    background: white;
}

@media (min-width: 768px) {
    .contact {
        padding: 6rem 0;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item span {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .contact-item span {
        font-size: 2rem;
    }
}

.contact-item strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.contact-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.contact-form {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 20px;
}

@media (min-width: 768px) {
    .contact-form {
        padding: 2.5rem;
    }
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

@media (min-width: 768px) {
    .contact-form input,
    .contact-form select {
        padding: 1rem;
    }
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form small {
    display: block;
    text-align: center;
    color: var(--gray);
    margin-top: 1rem;
    font-size: 0.8rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .footer-links h4 {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
    font-size: 0.9rem;
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding-top: 2rem;
    }
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .footer-contact {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-social {
        justify-content: flex-start;
        gap: 1.5rem;
    }
}

.footer-social a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-social a:hover {
    color: var(--primary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    cursor: pointer;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 95%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
}

.modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    text-align: center;
    background: rgba(0,0,0,0.7);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    max-width: 90%;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.modal-close:hover {
    color: var(--primary);
}

/* Page hero */
.page-hero {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    text-align: center;
}

@media (min-width: 768px) {
    page-hero {
        padding: 10rem 0 4rem;
    }
}

.page-hero h1 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-hero h1 {
        font-size: 3rem;
    }
}

.page-hero p {
    font-size: 1rem;
    color: var(--gray);
}

@media (min-width: 768px) {
    .page-hero p {
        font-size: 1.2rem;
    }
}
