
/* Block 1 */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.8) 0%, rgba(111, 78, 55, 0.7) 50%, rgba(166, 124, 82, 0.6) 100%);
    z-index: 2;
}

.hero-banner .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

.hero-cta-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    color: var(--dark-color);
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #f4d03f 100%);
}

.hero-cta-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.hero-cta-btn i {
    margin-right: 12px;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 90vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-btn {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-cta-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Block 2 */
.brewing-excellence {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f5f2 0%, #ffffff 50%, #f0ede8 100%);
    position: relative;
    overflow: hidden;
}

.brewing-excellence::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23a67c52" opacity="0.1"/></svg>') repeat;
    background-size: 60px 60px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: rotate(-15deg) scale(1.2);
}

.brewing-content {
    padding-right: 30px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(166, 124, 82, 0.3);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.brewing-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 100px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

.learn-more-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(111, 78, 55, 0.3);
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(111, 78, 55, 0.4);
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

.brewing-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    height: 500px;
}

.gallery-main {
    position: relative;
    grid-row: 1 / 3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-main:hover .main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    height: 320px;
}

.grid-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-item.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-content {
    text-align: center;
    color: #ffffff;
}

.featured-content i {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.featured-content span {
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .brewing-excellence {
        padding: 60px 0;
    }
    
    .brewing-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .brewing-stats {
        justify-content: space-between;
        gap: 20px;
    }
    
    .brewing-gallery {
        height: auto;
    }
    
    .gallery-main {
        height: 250px;
        margin-bottom: 15px;
    }
    
    .gallery-grid {
        height: auto;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-item {
        height: 120px;
    }
    
    .learn-more-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .brewing-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Block 3 */
.sustainability-coffee {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f5f2 0%, #e8e0d8 100%);
    position: relative;
    overflow: hidden;
}

.sustainability-coffee::before {
    content: '';
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(111, 78, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 1;
}

.sustainability-coffee::after {
    content: '';
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(166, 124, 82, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -75px;
    left: -75px;
    z-index: 1;
}

.eco-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.sustainability-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sustainability-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.innovation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 150px;
    gap: 20px;
}

.innovation-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.innovation-card.primary {
    grid-column: 1 / 3;
}

.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.innovation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.innovation-card:hover .innovation-image {
    transform: scale(1.1);
}

.innovation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(111, 78, 55, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.innovation-card:hover .innovation-overlay {
    opacity: 1;
}

.innovation-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.innovation-icon i {
    font-size: 24px;
}

.innovation-overlay h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.innovation-overlay p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.impact-metrics {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(111, 78, 55, 0.1);
}

.metric-highlight {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.metric-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.metric-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-item {
    margin-bottom: 25px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-title {
    font-weight: 600;
    color: var(--dark-color);
}

.progress-value {
    font-weight: 700;
    color: var(--primary-color);
}

.progress-bar {
    height: 8px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    transition: width 1s ease;
}

.certification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #f8f5f2;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid rgba(111, 78, 55, 0.2);
}

.cert-badge i {
    font-size: 14px;
}

.future-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f5f2 100%);
    border-radius: 30px;
    padding: 50px;
    margin-top: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.vision-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.vision-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.vision-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(111, 78, 55, 0.3);
}

.vision-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(111, 78, 55, 0.4);
}

.vision-visual {
    position: relative;
}

.vision-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    animation: float 3s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.float-element:nth-child(1) {
    top: 20%;
    right: 10%;
}

.float-element:nth-child(2) {
    top: 60%;
    left: 5%;
}

.float-element:nth-child(3) {
    bottom: 20%;
    right: 20%;
}

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

@media (max-width: 992px) {
    .sustainability-title {
        font-size: 2.2rem;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 200px 200px;
    }
    
    .innovation-card.primary {
        grid-column: 1;
    }
    
    .future-vision {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .sustainability-coffee {
        padding: 60px 0;
    }
    
    .sustainability-title {
        font-size: 1.8rem;
    }
    
    .sustainability-subtitle {
        font-size: 1rem;
    }
    
    .impact-metrics {
        margin-top: 30px;
        padding: 30px 20px;
    }
    
    .certification-badges {
        justify-content: center;
    }
    
    .vision-content h3 {
        font-size: 1.8rem;
    }
    
    .vision-content p {
        font-size: 1rem;
    }
}

/* Block 4 */
.order-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f5f2 0%, #ffffff 50%, #f3ede7 100%);
    position: relative;
}

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23d4b896" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%236f4e37" opacity="0.05"/><circle cx="60" cy="80" r="1" fill="%23a67c52" opacity="0.08"/></svg>');
    pointer-events: none;
}

.order-form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 25px 60px rgba(111, 78, 55, 0.08);
    border: 1px solid rgba(166, 124, 82, 0.1);
    position: relative;
    overflow: hidden;
}

.order-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: white;
    box-shadow: 0 15px 35px rgba(111, 78, 55, 0.25);
}

.form-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.input-group {
    grid-column: span 1;
}

.input-group:last-child {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-size: 16px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(166, 124, 82, 0.1);
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.form-input:focus + .input-focus-line {
    width: 100%;
}

.subscription-options {
    margin-bottom: 40px;
}

.options-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.plan-option {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.plan-option.featured {
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
}

.plan-radio {
    display: none;
}

.plan-label {
    display: block;
    padding: 25px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    height: 100%;
}

.plan-radio:checked + .plan-label {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.05), rgba(111, 78, 55, 0.02));
    box-shadow: 0 10px 25px rgba(166, 124, 82, 0.15);
}

.plan-header {
    margin-bottom: 15px;
}

.plan-name {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.plan-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    font-size: 14px;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.benefits-showcase {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(248, 245, 242, 0.5);
    border-radius: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.benefit-text {
    font-size: 14px;
    color: var(--dark-color);
    font-weight: 500;
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(111, 78, 55, 0.3);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover .btn-glow {
    left: 100%;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.security-note {
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

@media (max-width: 768px) {
    .order-form-wrapper {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .form-title {
        font-size: 32px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .input-group {
        grid-column: span 1;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .plan-option.featured {
        transform: none;
    }
    
    .benefits-showcase {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .submit-btn {
        width: 100%;
        padding: 18px 30px;
    }
}
