/*
Theme Name: Landing
Theme URI:
Author: Developer
Description: Simple one-page landing theme with WooCommerce support
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: landing
*/

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-bg: #ffffff;
    --color-bg-alt: #f4f6f9;
    --color-border: #e5e7eb;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --max-width: 1200px;
    --radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary-dark);
}

/* === Layout === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==============================
   HEADER
   ============================== */
.site-header {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo a {
    display: flex;
    align-items: center;
}

.header-logo .custom-logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    color: var(--color-text);
    transition: background 0.2s, color 0.2s;
}

.cart-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-btn:hover .cart-count {
    background: #fff;
    color: var(--color-primary);
}

/* ==============================
   HERO
   ============================== */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: #1e293b;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 80px 24px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h3 {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 620px;
}

/* ==============================
   SECTIONS
   ============================== */
.section {
    padding: 100px 0;
}

.section--alt {
    background: var(--color-bg-alt);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 56px;
    letter-spacing: -0.5px;
}

/* ==============================
   PRODUCTS
   ============================== */
.products-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.product-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.product-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-indent: -9999px;
    overflow: hidden;
    background: transparent;
}

.product-card-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}

.product-image {
    width: 220px;
    min-height: 200px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--color-bg-alt);
    display: block;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-bg-alt);
}

.product-info {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
}

.product-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.2s;
}

.product-card:hover .product-name {
    color: var(--color-primary);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 14px;
    line-height: 1.6;
}

.product-desc p {
    margin: 0 0 10px;
}

.product-desc p:last-child {
    margin-bottom: 0;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 18px;
}

.product-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-align: center;
}

.btn-add-cart {
    background: var(--color-bg-alt);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-add-cart:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-add-cart.loading {
    opacity: 0.6;
    pointer-events: none;
}

.btn-add-cart.loading::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: landing-spin 0.7s linear infinite;
    vertical-align: middle;
}

.btn-add-cart.added {
    background: #16a34a;
    color: #fff;
    border-color: #16a34a;
}

.product-card .added_to_cart,
.product-actions .added_to_cart,
.product-actions a.wc-forward {
    display: none !important;
}

@keyframes landing-spin {
    to { transform: rotate(360deg); }
}

.btn-buy-now {
    background: var(--color-primary);
    color: #fff;
}

.btn-buy-now:hover {
    background: var(--color-primary-dark);
    color: #fff;
}

/* ==============================
   ABOUT
   ============================== */
.about-section {
    text-align: center;
}

.about-image {
    max-width: 700px;
    margin: 0 auto 40px;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-image img {
    width: 100%;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.about-points {
    list-style: none;
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.about-points li {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
}

.about-points li:last-child {
    border-bottom: none;
}

.point-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    min-width: 40px;
    line-height: 1.4;
}

.about-points strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.about-points p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==============================
   FAQ
   ============================== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}

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

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 0 24px;
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ==============================
   FOOTER
   ============================== */
.site-footer {
    padding: 32px 0;
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo a {
    display: flex;
    align-items: center;
}

.footer-logo .custom-logo {
    height: 32px;
    width: auto;
}

.footer-copy {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* ==============================
   WOOCOMMERCE PAGES
   ============================== */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.woocommerce ul.products li.product {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--color-primary) !important;
    color: #fff !important;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    border: none;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--color-primary-dark) !important;
    color: #fff !important;
}

/* Checkout — block-based (React) inputs, payment, and classic fallback */
.wc-block-checkout input,
.wc-block-checkout select,
.wc-block-checkout textarea,
.wc-block-checkout .wc-block-components-text-input input,
.wc-block-checkout .wc-block-components-textarea,
.wc-block-checkout .wc-block-components-combobox .components-combobox-control input,
.wc-block-checkout .wc-block-components-form .wc-block-components-text-input input,
.woocommerce input,
.woocommerce select,
.woocommerce textarea,
.woocommerce-page input,
.woocommerce-page select,
.woocommerce-page textarea,
.woocommerce .select2-container--default .select2-selection--single,
.woocommerce .input-text {
    border: 1px solid color-mix(in srgb, currentColor 20%, transparent) !important;
}

.wc-block-checkout input:focus,
.wc-block-checkout select:focus,
.wc-block-checkout textarea:focus,
.wc-block-checkout .wc-block-components-text-input input:focus,
.wc-block-checkout .wc-block-components-textarea:focus,
.wc-block-checkout .wc-block-components-combobox .components-combobox-control input:focus,
.woocommerce input:focus,
.woocommerce select:focus,
.woocommerce textarea:focus,
.woocommerce-page input:focus,
.woocommerce-page select:focus,
.woocommerce-page textarea:focus,
.woocommerce .select2-container--default.select2-container--focus .select2-selection--single,
.woocommerce .select2-container--default.select2-container--open .select2-selection--single {
    border: 1px solid color-mix(in srgb, currentColor 20%, transparent) !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Block checkout — payment methods box */
.wc-block-checkout .wc-block-components-payment-method-icons,
.wc-block-checkout .wc-block-components-radio-control,
.wc-block-checkout .wc-block-components-radio-control__option,
.wc-block-checkout .wc-block-checkout__payment-method,
.wc-block-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option,
.wc-block-checkout .wc-block-components-radio-control-accordion-option {
    border-color: color-mix(in srgb, currentColor 20%, transparent) !important;
}

.wc-block-checkout .wc-block-components-radio-control__option::after,
.wc-block-checkout .wc-block-components-radio-control-accordion-option::after {
    border-color: color-mix(in srgb, currentColor 20%, transparent) !important;
}

/* Payment — checked option uses inset box-shadow, not border */
.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
    box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 20%, transparent) !important;
}

/* Textarea & text input focus box-shadow */
.wc-block-components-textarea:focus,
.wc-block-components-form .wc-block-components-text-input input:focus,
.wc-block-components-text-input input:focus {
    border-color: color-mix(in srgb, currentColor 20%, transparent) !important;
    box-shadow: none !important;
}

/* Payment section panel borders */
.wp-block-woocommerce-checkout-payment-block,
.wc-block-checkout__payment-method,
.wc-block-components-express-payment,
.wc-block-checkout .wc-block-components-totals-wrapper {
    border-color: color-mix(in srgb, currentColor 20%, transparent) !important;
}


/* ==============================
   SINGLE PRODUCT PAGE
   ============================== */

/* Clearfix — .summary floats right, gallery floats left;
   without this, the footer overlaps the floated columns. */
.woocommerce div.product::after {
    content: "";
    display: block;
    clear: both;
}

.woocommerce div.product .product_title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 18px;
}

.woocommerce div.product form.cart {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.woocommerce div.product form.cart .quantity {
    margin: 0;
}

/* Quantity wrapper with custom +/- buttons (injected by JS) */
.woocommerce div.product form.cart .quantity,
.landing-qty-wrap {
    display: inline-flex;
    align-items: stretch;
    height: 48px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-bg);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.woocommerce div.product form.cart .quantity:focus-within,
.landing-qty-wrap:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.woocommerce .quantity input.qty,
.woocommerce div.product form.cart .quantity input.qty {
    width: 56px;
    height: 100%;
    padding: 0 4px;
    border: none !important;
    border-radius: 0 !important;
    background: transparent;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    box-shadow: none !important;
    outline: none !important;
    -moz-appearance: textfield;
}

.woocommerce .quantity input.qty:focus {
    box-shadow: none !important;
    outline: none !important;
}

.woocommerce .quantity input.qty::-webkit-outer-spin-button,
.woocommerce .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.landing-qty-btn {
    width: 38px;
    height: 100%;
    flex-shrink: 0;
    border: none;
    background: var(--color-bg-alt);
    color: var(--color-text);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    padding: 0;
}

.landing-qty-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.landing-qty-btn--minus {
    border-right: 1px solid var(--color-border);
}

.landing-qty-btn--plus {
    border-left: 1px solid var(--color-border);
}

.woocommerce div.product form.cart .button,
.woocommerce div.product form.cart button.single_add_to_cart_button {
    height: 48px;
    padding: 0 28px !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* Suppress WooCommerce's icon-font loading/added pseudo-elements on
   buttons we control — they render misaligned in our flex layout and
   clash with our custom loading state. */
.woocommerce div.product form.cart button.single_add_to_cart_button.loading,
.woocommerce div.product form.cart button.single_add_to_cart_button.added,
.btn.loading,
.btn.added {
    color: inherit !important;
    opacity: 1 !important;
    padding: 0 28px !important;
}

.woocommerce div.product form.cart button.single_add_to_cart_button.loading::after,
.woocommerce div.product form.cart button.single_add_to_cart_button.added::after,
.woocommerce div.product form.cart button.single_add_to_cart_button.loading::before,
.woocommerce div.product form.cart button.single_add_to_cart_button.added::before,
.btn.loading::before,
.btn.added::before {
    content: none !important;
    display: none !important;
    background: none !important;
}

/* Our own loading spinner — clean, currentColor, vertically centred via flex. */
.landing-btn-loading {
    pointer-events: none;
    opacity: 0.75;
    cursor: wait;
}

.landing-btn-loading::before {
    content: "";
    display: inline-block;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    margin-right: 10px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: landing-spin 0.7s linear infinite;
}

/* Hide remnants we don't want on single product page */
.woocommerce div.product .product_meta,
.woocommerce div.product .product_meta .posted_in,
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product section.related,
.woocommerce div.product section.up-sells {
    display: none !important;
}

/* Short description above cart — no clipping, full text */
.woocommerce div.product .woocommerce-product-details__short-description {
    margin: 0 0 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
    max-height: none;
    overflow: visible;
}

.woocommerce div.product .woocommerce-product-details__short-description p {
    margin: 0 0 10px;
}

.woocommerce div.product .woocommerce-product-details__short-description p:last-child {
    margin-bottom: 0;
}

/* Description block placed under the Add-to-cart button */
.landing-product-description {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
}

.landing-product-description__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 14px;
    letter-spacing: -0.2px;
}

.landing-product-description__content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
}

.landing-product-description__content p {
    margin: 0 0 12px;
}

.landing-product-description__content p:last-child {
    margin-bottom: 0;
}

/* Notice bar — sits between header and section, fills the natural gap */
.woocommerce-notice-bar {
    background: transparent;
}

.woocommerce-notice-bar:empty,
.woocommerce-notice-bar > .container:empty {
    display: none;
}

/* When notice bar has content, give it breathing room and shrink the
   section padding-top below it so the notice replaces the empty gap. */
.woocommerce-notice-bar:has(.woocommerce-message),
.woocommerce-notice-bar:has(.woocommerce-info),
.woocommerce-notice-bar:has(.woocommerce-error) {
    padding: 32px 0 8px;
}

.section--woocommerce {
    padding-top: 100px;
}

.woocommerce-notice-bar:has(.woocommerce-message) + .section--woocommerce,
.woocommerce-notice-bar:has(.woocommerce-info) + .section--woocommerce,
.woocommerce-notice-bar:has(.woocommerce-error) + .section--woocommerce {
    padding-top: 24px;
}

/* Notice / "X has been added to your cart" — match site style */
.woocommerce-notices-wrapper {
    margin-bottom: 20px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
    position: relative;
    padding: 16px 20px 16px 52px !important;
    border-radius: var(--radius) !important;
    border: 0 !important;
    background: var(--color-bg-alt);
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.5;
    list-style: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06) !important;
    text-shadow: none !important;
}

.woocommerce-message {
    border-left: 4px solid #16a34a !important;
    background: #f0fdf4 !important;
}

.woocommerce-info {
    border-left: 4px solid var(--color-primary) !important;
    background: #eff6ff !important;
}

.woocommerce-error {
    border-left: 4px solid #dc2626 !important;
    background: #fef2f2 !important;
}

/* Kill the default browser/WC focus outline on the notice */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-message:focus,
.woocommerce-info:focus,
.woocommerce-error:focus,
.woocommerce-message:focus-visible,
.woocommerce-info:focus-visible,
.woocommerce-error:focus-visible {
    outline: none !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.woocommerce-message::before {
    content: "✓";
    background: #16a34a;
}

.woocommerce-info::before {
    content: "i";
    background: var(--color-primary);
    font-style: italic;
}

.woocommerce-error::before {
    content: "!";
    background: #dc2626;
}

.woocommerce-message a.button,
.woocommerce-message .button {
    float: right;
    margin-left: 12px;
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
    background: #16a34a !important;
    color: #fff !important;
    border: none !important;
}

.woocommerce-message a.button:hover,
.woocommerce-message .button:hover {
    background: #15803d !important;
}

/* Cart — match Proceed to Checkout to Place Order */
.wc-block-cart__submit-button.wc-block-components-button {
    padding: 18px 30px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #E5E5E5 !important;
    color: #000 !important;
    border: 1px solid #797979 !important;
    margin-top: 20px !important;
    border-radius: 3px !important;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
}

@media (max-width: 768px) {
    .hero {
        min-height: 420px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h3 {
        font-size: 1rem;
    }

    .hero-content {
        padding: 60px 24px;
    }

    .product-card {
        flex-direction: column;
    }

    .product-image {
        width: 100%;
        min-height: 180px;
    }

    .section {
        padding: 64px 0;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-content {
        padding: 40px 24px;
    }

    .faq-question {
        font-size: 0.95rem;
    }
}
