    .hero-section {
        background: linear-gradient(180deg, #faf8f3 0%, var(--dobrogea-sand) 100%);
        padding: 3rem 0 4rem;
        position: relative;
        overflow: hidden;
    }

    @media (min-width: 768px) {
        .hero-section { padding: 4.5rem 0 5rem; }
    }

    .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 60% 40% at 100% 0%, rgba(74, 124, 155, 0.06) 0%, transparent 55%),
            radial-gradient(ellipse 40% 30% at 0% 100%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .hero-wrap {
        position: relative;
        z-index: 10;
        width: 100%;
    }

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

    @media (min-width: 992px) {
        .hero-grid {
            grid-template-columns: 1.05fr 0.95fr;
            gap: 3rem;
        }
    }

    .hero-side {
        display: flex;
        flex-direction: column;
        gap: 0.875rem;
    }

    @media (min-width: 992px) {
        .hero-side {
            background: white;
            border: 1px solid rgba(10, 37, 64, 0.08);
            border-radius: 14px;
            padding: 1.5rem;
            box-shadow: 0 8px 32px rgba(10, 37, 64, 0.06);
            position: relative;
            overflow: hidden;
        }

        .hero-side::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--dobrogea-wheat), var(--dobrogea-sky), var(--dobrogea-wheat));
        }

        .hero-side-label {
            display: block;
        }
    }

    .hero-side-label {
        display: none;
        font-size: 0.6875rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #7a6020;
        margin-bottom: 0.25rem;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 3.25rem);
        line-height: 1.12;
        margin-bottom: 1.25rem;
    }

    .hero-lead {
        font-size: clamp(1rem, 2.5vw, 1.125rem);
        line-height: 1.7;
        color: var(--dobrogea-text-muted);
        margin-bottom: 1.5rem;
    }

    .hero-checks {
        list-style: none;
        padding: 0;
        margin: 0 0 1.75rem;
    }

    .hero-checks li {
        display: flex;
        align-items: flex-start;
        gap: 0.625rem;
        font-size: 0.9375rem;
        color: var(--dobrogea-text-muted);
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    .hero-checks li::before {
        content: '';
        flex-shrink: 0;
        width: 1.125rem;
        height: 1.125rem;
        margin-top: 0.15rem;
        border-radius: 50%;
        background: rgba(201, 168, 76, 0.15);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' fill='none' stroke='%2396752e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 0.625rem;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-apps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--dobrogea-sand-dark);
    }

    @media (min-width: 992px) {
        .hero-apps {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
        }
    }

    @media (min-width: 540px) and (max-width: 991px) {
        .hero-apps { grid-template-columns: 1fr 1fr; }
    }

    .hero-app-card {
        display: flex;
        align-items: center;
        gap: 0.875rem;
        padding: 1rem 1.125rem;
        background: var(--dobrogea-sand);
        border-radius: 10px;
        border: 1px solid rgba(10, 37, 64, 0.06);
        text-decoration: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
    }

    @media (min-width: 992px) {
        .hero-app-card { background: white; box-shadow: 0 1px 4px rgba(10, 37, 64, 0.04); }
    }

    .hero-app-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
        background: white;
    }

    .hero-app-card.gold:hover { border-color: rgba(201, 168, 76, 0.4); }
    .hero-app-card.sea:hover { border-color: rgba(74, 124, 155, 0.35); }
    .hero-app-card.delta:hover { border-color: rgba(26, 83, 92, 0.35); }
    .hero-app-card.dm:hover { border-color: rgba(30, 64, 175, 0.35); }

    .hero-app-arrow {
        margin-left: auto;
        color: var(--dobrogea-text-muted);
        font-size: 0.875rem;
        opacity: 0.65;
        transition: opacity 0.2s ease, transform 0.2s ease;
        flex-shrink: 0;
    }

    .hero-app-card:hover .hero-app-arrow {
        opacity: 1;
        transform: translateX(3px);
        color: var(--dobrogea-sea);
    }

    .hero-trust {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 0.25rem;
        padding-top: 1rem;
        border-top: 1px solid var(--dobrogea-sand-dark);
    }

    .hero-trust span {
        font-size: 0.625rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 0.35rem 0.625rem;
        background: rgba(10, 37, 64, 0.04);
        border-radius: 4px;
        color: var(--dobrogea-text-muted);
    }

    @media (min-width: 992px) {
        .hero-trust span { background: var(--dobrogea-sand); }
    }

    .hero-app-icon {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 1rem;
    }

    .hero-app-card.gold .hero-app-icon { background: rgba(201, 168, 76, 0.12); color: #96752e; }
    .hero-app-card.sea .hero-app-icon { background: rgba(74, 124, 155, 0.1); color: var(--dobrogea-sky); }
    .hero-app-card.delta .hero-app-icon { background: rgba(26, 83, 92, 0.1); color: var(--dobrogea-delta); }

    .hero-app-card .hero-app-icon.app-logo {
        background: none;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(10, 37, 64, 0.12);
    }

    .hero-app-icon.app-logo img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .hero-app-card strong {
        display: block;
        font-family: 'Source Sans 3', sans-serif;
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--dobrogea-sea);
        line-height: 1.3;
    }

    .hero-app-card span {
        display: block;
        font-size: 0.8125rem;
        color: var(--dobrogea-text-muted);
        line-height: 1.4;
    }

    .hero-wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        line-height: 0;
    }

    .hero-wave svg {
        display: block;
        width: 100%;
        height: 48px;
    }

    .hero-content {
        position: relative;
        z-index: 10;
    }

    .region-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.4rem 0.875rem;
        background: white;
        border: 1px solid rgba(10, 37, 64, 0.08);
        border-radius: 100px;
        font-size: 0.6875rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--dobrogea-sea);
        margin-bottom: 1.25rem;
        box-shadow: 0 1px 4px rgba(10, 37, 64, 0.04);
    }

    .region-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--dobrogea-wheat);
        flex-shrink: 0;
    }

    /* Product Cards */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        .products-grid { grid-template-columns: 1fr; }
    }

    .product-card {
        background: white;
        border: 1px solid rgba(10, 37, 64, 0.08);
        border-radius: 14px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        box-shadow: 0 2px 12px rgba(10, 37, 64, 0.04);
        text-decoration: none;
        display: block;
        height: 100%;
        position: relative;
    }

    .product-card-num {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: rgba(10, 37, 64, 0.05);
        line-height: 1;
        pointer-events: none;
    }

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 48px rgba(10, 37, 64, 0.1);
        border-color: rgba(201, 168, 76, 0.35);
    }

    .product-card-accent {
        height: 4px;
    }

    .product-card-accent.ishopsync { background: linear-gradient(90deg, var(--dobrogea-wheat), #dbc278); }
    .product-card-accent.irezervare { background: linear-gradient(90deg, var(--dobrogea-sky), #6a9bb5); }
    .product-card-accent.imemory { background: linear-gradient(90deg, var(--dobrogea-delta), #3d8f85); }
    .product-card-accent.daunomania { background: linear-gradient(90deg, #1e3a8a, #2563eb); }

    .product-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }

    .ishopsync-icon { background: rgba(201, 168, 76, 0.12); color: #96752e; }
    .irezervare-icon { background: rgba(74, 124, 155, 0.1); color: var(--dobrogea-sky); }
    .imemory-icon { background: rgba(26, 83, 92, 0.1); color: var(--dobrogea-delta); }

    .product-icon.product-logo {
        background: none;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 4px 14px rgba(10, 37, 64, 0.14);
    }

    .product-icon.product-logo img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .product-features {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem;
    }

    .product-features li {
        padding: 0.35rem 0;
        font-size: 0.875rem;
        color: var(--dobrogea-text-muted);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .product-features li i {
        color: var(--dobrogea-wheat);
        font-size: 0.7rem;
    }

    .product-link {
        font-weight: 600;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: gap 0.2s ease;
    }

    .product-card:hover .product-link { gap: 0.75rem; }

    /* Dobrogea Identity */
    .identity-card {
        text-align: center;
        padding: 2rem 1.5rem;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(201, 168, 76, 0.15);
        border-radius: 14px;
        transition: background 0.25s ease, border-color 0.25s ease;
    }

    .identity-card:hover {
        background: rgba(255, 255, 255, 0.09);
        border-color: rgba(201, 168, 76, 0.3);
    }

    .identity-card i {
        width: 3rem;
        height: 3rem;
        margin: 0 auto 1rem;
        border-radius: 50%;
        background: rgba(201, 168, 76, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        color: var(--dobrogea-wheat);
    }

    .identity-card h3 {
        font-size: 1.25rem;
        color: white;
        margin-bottom: 0.5rem;
    }

    .identity-card p {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.65;
    }

    .dobrogea-landmarks {
        background: var(--dobrogea-sand-dark);
        padding: 3rem 1rem;
        border-top: 1px solid rgba(10, 37, 64, 0.06);
        border-bottom: 1px solid rgba(10, 37, 64, 0.06);
    }

    .dobrogea-landmarks .section-header {
        margin-bottom: 2rem;
    }

    .dobrogea-landmarks .section-header h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .dobrogea-landmarks .section-header p {
        max-width: 32rem;
    }

    .contact-heading h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(1.75rem, 4vw, 2.25rem);
        color: white;
        margin-bottom: 1rem;
        line-height: 1.15;
    }

    .landmarks-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 56rem;
        margin: 0 auto;
    }

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

    .landmark-item {
        background: white;
        border: 1px solid rgba(10, 37, 64, 0.08);
        border-radius: 10px;
        padding: 1.125rem 1rem;
        text-align: center;
        box-shadow: 0 2px 8px rgba(10, 37, 64, 0.04);
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        position: relative;
        overflow: hidden;
        display: block;
        text-decoration: none;
    }

    .landmark-item .landmark-arrow {
        display: block;
        font-size: 0.6875rem;
        font-weight: 600;
        color: #96752e;
        margin-top: 0.375rem;
        transition: color 0.2s ease;
    }

    .landmark-item:hover .landmark-arrow { color: var(--dobrogea-sea); }

    .landmark-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--dobrogea-wheat), var(--dobrogea-sky));
        opacity: 0.6;
    }

    .landmark-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
        border-color: rgba(201, 168, 76, 0.25);
    }

    .landmark-item strong {
        display: block;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.125rem;
        color: var(--dobrogea-sea);
        margin-bottom: 0.25rem;
    }

    .landmark-item span {
        font-size: 0.75rem;
        color: var(--dobrogea-text-muted);
        line-height: 1.4;
    }

    .landmark-item {
        cursor: pointer;
        font-family: inherit;
        width: 100%;
    }

    .landmark-item.activ {
        border-color: var(--dobrogea-wheat);
        box-shadow: 0 8px 24px rgba(201, 168, 76, 0.18);
        transform: translateY(-3px);
    }

    .landmark-item.activ::before { opacity: 1; height: 3px; }

    .landmark-item.activ .landmark-arrow { opacity: 1; }

    /* Panoul interactiv al orasului */
    .landmark-panels {
        max-width: 56rem;
        margin: 0 auto;
    }

    .landmark-panel {
        margin-top: 1.25rem;
        background: white;
        border: 1px solid rgba(201, 168, 76, 0.3);
        border-radius: 14px;
        padding: 1.75rem;
        box-shadow: 0 12px 36px rgba(10, 37, 64, 0.08);
        animation: panelIn 0.35s ease;
    }

    @keyframes panelIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .landmark-panel-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 1rem;
        flex-wrap: wrap;
        border-bottom: 1px solid rgba(10, 37, 64, 0.08);
        padding-bottom: 1rem;
        margin-bottom: 1.25rem;
    }

    .landmark-panel-header h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.6rem;
        color: var(--dobrogea-sea);
        margin: 0;
    }

    .landmark-panel-tagline {
        font-size: 0.8125rem;
        color: var(--dobrogea-text-muted);
        margin: 0.125rem 0 0;
    }

    .landmark-panel-link {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 1rem;
        background: var(--dobrogea-sea);
        color: white;
        border-radius: 100px;
        font-size: 0.8125rem;
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .landmark-panel-link:hover {
        background: var(--dobrogea-sky);
        transform: translateX(2px);
    }

    .landmark-panel-body {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    @media (min-width: 768px) {
        .landmark-panel-body { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }

    .landmark-panel-col h4 {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #96752e;
        margin: 0 0 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .landmark-panel-desc {
        font-size: 0.875rem;
        color: var(--dobrogea-text-muted);
        line-height: 1.75;
        margin-bottom: 1.25rem;
    }

    .landmark-panel-atractii {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .landmark-panel-atractii li {
        font-size: 0.8125rem;
        color: var(--dobrogea-text-muted);
        line-height: 1.6;
        padding-left: 1.1rem;
        position: relative;
    }

    .landmark-panel-atractii li::before {
        content: '◆';
        position: absolute;
        left: 0;
        top: 0.1rem;
        font-size: 0.5rem;
        color: var(--dobrogea-wheat);
    }

    .landmark-panel-atractii li strong { color: var(--dobrogea-text); }


    .dobrogea-bridge {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
        margin-top: 2.5rem;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(201, 168, 76, 0.12);
        border-radius: 14px;
    }

    @media (min-width: 768px) {
        .dobrogea-bridge { grid-template-columns: 1fr 1fr; padding: 2.5rem; }
    }

    .dobrogea-bridge h3 {
        font-size: 1.5rem;
        color: white;
        margin-bottom: 0.75rem;
    }

    .dobrogea-bridge p {
        font-size: 0.9375rem;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.7;
        margin: 0;
    }

    .dobrogea-bridge-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .dobrogea-bridge-list li {
        position: relative;
        padding: 0.5rem 0 0.5rem 1.25rem;
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .dobrogea-bridge-list li:last-child { border-bottom: none; }

    .dobrogea-bridge-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.85rem;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--dobrogea-wheat);
    }

    /* Features */
    .feature-box {
        background: white;
        border: 1px solid rgba(10, 37, 64, 0.08);
        border-radius: 14px;
        padding: 2rem;
        transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }

    .feature-box:hover {
        box-shadow: 0 12px 32px rgba(10, 37, 64, 0.08);
        transform: translateY(-2px);
        border-color: rgba(201, 168, 76, 0.2);
    }

    .feature-box i {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 10px;
        background: rgba(10, 37, 64, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.125rem;
        color: var(--dobrogea-sea);
        margin-bottom: 1.25rem;
    }

    .feature-box h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        color: var(--dobrogea-text);
    }

    .feature-box p {
        font-size: 0.9rem;
        color: var(--dobrogea-text-muted);
        line-height: 1.7;
    }

    /* FAQ */
    .faq-group-label {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #6b5318;
        margin: 1.75rem 0 0.75rem;
    }

    .faq-group-label:first-child { margin-top: 0; }

    .faq-item {
        background: white;
        border: 1px solid rgba(10, 37, 64, 0.08);
        border-radius: 10px;
        margin-bottom: 0.75rem;
        overflow: hidden;
        box-shadow: 0 1px 4px rgba(10, 37, 64, 0.03);
    }

    .faq-question {
        width: 100%;
        padding: 1.25rem 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.2s ease;
        border: none;
        background: transparent;
        font: inherit;
        text-align: left;
    }

    .faq-question:hover { background: rgba(245, 240, 230, 0.5); }

    .faq-question-text {
        margin: 0;
        font-size: 1rem;
        font-family: 'Source Sans 3', sans-serif;
        font-weight: 600;
        color: var(--dobrogea-text);
    }

    .faq-icon {
        color: #7a6020;
        transition: transform 0.25s ease;
        flex-shrink: 0;
        margin-left: 1rem;
    }

    .faq-item.active {
        border-color: rgba(201, 168, 76, 0.35);
        box-shadow: 0 4px 16px rgba(10, 37, 64, 0.06);
    }

    .faq-item.active .faq-question {
        background: rgba(245, 240, 230, 0.6);
    }

    .faq-item.active .faq-question-text {
        color: var(--dobrogea-sea);
    }

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

    .philosophy-banner {
        max-width: 42rem;
        margin: 0 auto;
        padding: 2.5rem 2rem;
        background: white;
        border: 1px solid rgba(10, 37, 64, 0.08);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(10, 37, 64, 0.06);
        text-align: center;
    }

    .philosophy-banner h2 {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
        color: var(--dobrogea-sea);
        margin-bottom: 1rem;
    }

    .philosophy-banner p {
        font-size: 1.0625rem;
        line-height: 1.75;
        color: var(--dobrogea-text-muted);
        margin: 0;
    }

    .animate-on-scroll.visible:nth-child(2) { transition-delay: 0.06s; }
    .animate-on-scroll.visible:nth-child(3) { transition-delay: 0.12s; }
    .animate-on-scroll.visible:nth-child(4) { transition-delay: 0.18s; }

    .products-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
    .products-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
    .products-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

    .about-text h2 {
        font-size: clamp(1.875rem, 4vw, 2.75rem);
        color: var(--dobrogea-sea);
        margin-bottom: 1.5rem;
        line-height: 1.15;
    }

    .contact-form-card {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(10, 37, 64, 0.06);
    }

    .contact-form-card h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.5rem;
        color: var(--dobrogea-sea);
        margin-bottom: 0.5rem;
    }

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

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

    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
        margin: 0;
        font-size: 0.9rem;
        color: var(--dobrogea-text-muted);
        line-height: 1.7;
    }

    /* Newsletter */
    .newsletter-section {
        background: var(--dobrogea-sea);
        position: relative;
    }

    .newsletter-lead {
        color: rgba(255, 255, 255, 0.88);
        line-height: 1.7;
    }

    .newsletter-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--dobrogea-wheat), var(--dobrogea-sky), var(--dobrogea-wheat));
    }

    .newsletter-form {
        background: white;
        border-radius: 8px;
        padding: 2.5rem;
        max-width: 480px;
        margin: 0 auto;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }

    .form-input {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 1px solid var(--dobrogea-sand-dark);
        border-radius: 6px;
        font-size: 0.95rem;
        font-family: 'Source Sans 3', sans-serif;
        background: white;
        color: var(--dobrogea-text);
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .form-input option {
        background: white;
        color: var(--dobrogea-text);
    }

    .form-input:focus {
        outline: none;
        border-color: var(--dobrogea-wheat);
        box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
    }

    .form-input.error { border-color: #c0392b; }

    .form-error {
        color: #c0392b;
        font-size: 0.8rem;
        margin-top: 0.35rem;
        display: none;
    }

    .form-input.error + .form-error { display: block; }

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

    .form-label {
        display: block;
        font-size: 0.8125rem;
        font-weight: 600;
        color: var(--dobrogea-sea);
        margin-bottom: 0.35rem;
    }

    .landmark-panel-heading {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--dobrogea-sea);
        margin: 0 0 0.75rem;
    }

    /* Scroll animations - doar opacity (fără CLS) */
    .animate-on-scroll {
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .animate-on-scroll.visible {
        opacity: 1;
    }

    /* Floating back-to-top */
    .floating-cta {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background: var(--dobrogea-sea);
        color: white;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(10, 37, 64, 0.35);
        transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
        z-index: 1000;
        opacity: 0;
        transform: translateY(20px);
        border: 2px solid rgba(201, 168, 76, 0.25);
        padding: 0;
    }

    .floating-cta.show {
        opacity: 1;
        transform: translateY(0);
    }

    .floating-cta:hover {
        background: var(--dobrogea-sea-light);
    }

    /* Stats */
    .stats-bar {
        background: var(--dobrogea-sea);
        position: relative;
    }

    .stats-bar::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
        pointer-events: none;
    }

    .stats-bar .max-w-7xl {
        position: relative;
        z-index: 1;
    }

    .stat-item {
        text-align: center;
        padding: 2rem 1rem;
        position: relative;
    }

    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 25%;
        height: 50%;
        width: 1px;
        background: rgba(255, 255, 255, 0.12);
    }

    @media (max-width: 768px) {
        .stat-item:nth-child(odd)::after { display: none; }
        .stat-item { padding: 1.5rem 0.75rem; }
    }

    .stat-number {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        font-weight: 700;
        color: var(--dobrogea-wheat-light);
        line-height: 1;
    }

    .stat-label {
        font-size: 0.8125rem;
        color: rgba(255, 255, 255, 0.65);
        margin-top: 0.5rem;
        line-height: 1.4;
    }

    /* About */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    @media (max-width: 768px) {
        .about-grid { grid-template-columns: 1fr; }
    }

    .about-text p {
        color: var(--dobrogea-text-muted);
        line-height: 1.8;
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }

    .about-link {
        color: var(--dobrogea-sky);
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid rgba(58, 124, 165, 0.35);
        transition: color 0.2s ease, border-color 0.2s ease;
    }

    .about-link:hover {
        color: var(--dobrogea-sea);
        border-color: var(--dobrogea-wheat);
    }

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

    .value-item {
        background: white;
        border: 1px solid var(--dobrogea-sand-dark);
        border-left: 3px solid var(--dobrogea-wheat);
        border-radius: 8px;
        padding: 1.25rem;
        transition: box-shadow 0.2s ease;
    }

    .value-item:hover {
        box-shadow: 0 4px 16px rgba(10, 37, 64, 0.06);
    }

    .value-item i {
        color: var(--dobrogea-wheat);
        margin-bottom: 0.5rem;
    }

    .value-item h3 {
        font-family: 'Source Sans 3', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--dobrogea-text);
        margin-bottom: 0.25rem;
    }

    .value-item p {
        font-size: 0.8rem;
        color: var(--dobrogea-text-muted);
        line-height: 1.5;
        margin: 0;
    }

    /* Steps */
    .step-card {
        text-align: center;
        padding: 2rem 1.5rem;
        position: relative;
        background: white;
        border-radius: 14px;
        border: 1px solid rgba(10, 37, 64, 0.06);
        box-shadow: 0 2px 12px rgba(10, 37, 64, 0.04);
        height: 100%;
    }

    .step-number {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--dobrogea-sea);
        color: white;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.25rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.25rem;
        border: 2px solid var(--dobrogea-wheat);
    }

    .step-card h3 {
        font-size: 1.15rem;
        color: var(--dobrogea-text);
        margin-bottom: 0.75rem;
    }

    .step-card p {
        font-size: 0.875rem;
        color: var(--dobrogea-text-muted);
        line-height: 1.6;
    }

    /* Use cases */
    .use-case-card {
        background: white;
        border: 1px solid rgba(10, 37, 64, 0.08);
        border-radius: 14px;
        padding: 2rem;
        height: 100%;
        box-shadow: 0 2px 12px rgba(10, 37, 64, 0.04);
        transition: box-shadow 0.25s ease, transform 0.25s ease;
    }

    .use-case-link { margin-top: 1rem; }

    .use-case-card:hover {
        box-shadow: 0 12px 32px rgba(10, 37, 64, 0.08);
        transform: translateY(-2px);
    }

    .use-case-card .tag {
        display: inline-block;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 0.25rem 0.75rem;
        border-radius: 4px;
        margin-bottom: 1rem;
    }

    .tag-ishopsync { background: rgba(201, 168, 76, 0.15); color: #96752e; }
    .tag-irezervare { background: rgba(74, 124, 155, 0.12); color: var(--dobrogea-sky); }
    .tag-imemory { background: rgba(26, 83, 92, 0.12); color: var(--dobrogea-delta); }
    .tag-daunomania { background: rgba(30, 64, 175, 0.1); color: #1e40af; }

    .use-case-card h3 {
        font-size: 1.15rem;
        color: var(--dobrogea-text);
        margin-bottom: 0.75rem;
    }

    .use-case-card p {
        font-size: 0.875rem;
        color: var(--dobrogea-text-muted);
        line-height: 1.7;
    }

    /* Contact */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    @media (max-width: 768px) {
        .contact-grid { grid-template-columns: 1fr; }
    }

    .contact-info-item {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-info-item i {
        width: 40px;
        height: 40px;
        background: rgba(201, 168, 76, 0.12);
        color: var(--dobrogea-wheat);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .contact-info-label {
        font-family: 'Source Sans 3', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        color: white;
        margin: 0 0 0.15rem;
    }

    .contact-info-item p, .contact-info-item a {
        font-size: 0.875rem;
        color: rgba(255,255,255,0.85);
        text-decoration: none;
    }

    .contact-info-item a:hover { color: var(--dobrogea-wheat-light); }

    .product-detail {
        font-size: 0.8rem;
        color: var(--dobrogea-text-muted);
        padding-top: 1rem;
        margin-top: 1rem;
        border-top: 1px solid var(--dobrogea-sand-dark);
        line-height: 1.6;
    }

    @media (max-width: 768px) {
        .hero-section { padding: 1.25rem 0 2rem; }
        .hero-actions { flex-direction: column; }
        .hero-actions .btn-primary,
        .hero-actions .btn-secondary { width: 100%; text-align: center; }
        .newsletter-form { margin: 0 1rem; padding: 2rem 1.5rem; }
        .about-values { grid-template-columns: 1fr; }
        .product-card .p-8 { padding: 1.5rem; }
        .feature-box { padding: 1.5rem; }
        .use-case-card { padding: 1.5rem; }
        .step-card { padding: 1.5rem 1rem; }
        .identity-card { padding: 1.5rem 1rem; }
        .stat-number { font-size: 2rem; }
        .stat-item { padding: 1.75rem 0.75rem; }
        .floating-cta { bottom: 1rem; right: 1rem; }
        section.py-20 { padding-top: 3rem; padding-bottom: 3rem; }
        .faq-question { padding: 1rem 1.25rem; }
        .faq-question-text { font-size: 0.9375rem; }
    }

    @media (max-width: 480px) {
        .region-badge { font-size: 0.625rem; padding: 0.35rem 0.75rem; }
    }

    /* Trasee pe homepage */
    .home-trasee {
        background: white;
        border-top: 1px solid var(--dobrogea-sand-dark);
        border-bottom: 1px solid var(--dobrogea-sand-dark);
    }

    .home-trasee-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
    }

    .home-traseu-card {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem 1.35rem;
        background: var(--dobrogea-sand);
        border: 1px solid rgba(10, 37, 64, 0.08);
        border-radius: 12px;
        border-left: 4px solid var(--accent, var(--dobrogea-wheat));
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .home-traseu-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
    }

    .home-traseu-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .home-traseu-tag {
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 0.25rem 0.6rem;
        border-radius: 100px;
        background: white;
        color: var(--dobrogea-sea);
        border: 1px solid rgba(10, 37, 64, 0.1);
    }

    .home-traseu-card h3 {
        font-size: 1rem;
        color: var(--dobrogea-sea);
        margin: 0;
        line-height: 1.35;
    }

    .home-traseu-card p {
        font-size: 0.875rem;
        line-height: 1.65;
        color: var(--dobrogea-text-muted);
        margin: 0;
        flex: 1;
    }

    .home-traseu-actiuni {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .home-traseu-link {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 0.9rem;
        border-radius: 100px;
        font-size: 0.75rem;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .home-traseu-link.primary {
        background: var(--dobrogea-sea);
        color: white;
    }

    .home-traseu-link.primary:hover { background: #1d6a96; color: white; }

    .home-traseu-link.secondary {
        background: white;
        color: var(--dobrogea-sea);
        border: 1px solid rgba(10, 37, 64, 0.15);
    }

    .home-traseu-link.secondary:hover {
        background: #faf6eb;
        border-color: var(--dobrogea-wheat);
    }

    .home-trasee-cta {
        text-align: center;
        margin-top: 2rem;
    }

    @media (max-width: 767px) {
        .home-traseu-actiuni {
            flex-direction: column;
        }

        .home-traseu-link {
            width: 100%;
            justify-content: center;
            min-height: 44px;
        }

        .landmarks-grid {
            grid-template-columns: 1fr;
        }

        .landmark-panel-body {
            grid-template-columns: 1fr !important;
        }

        .landmark-panel-header {
            flex-direction: column;
            align-items: flex-start !important;
            gap: 0.75rem;
        }
