/* ============================================================
   Homepage Variation 3 — "Soft Luxury" Premium Design
   Unique h3- prefix to avoid all class collisions
   ============================================================ */

:root {
    --h3-primary: #4f46e5;
    --h3-primary-light: #818cf8;
    --h3-primary-soft: #eef2ff;
    --h3-accent: #ec4899;
    --h3-accent-soft: #fdf2f8;
    --h3-dark: #111827;
    --h3-text: #6b7280;
    --h3-border: #e5e7eb;
    --h3-bg: #f9fafb;
    --h3-white: #ffffff;
    --h3-radius: 16px;
    --h3-radius-lg: 24px;
    --h3-radius-xl: 32px;
    --h3-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --h3-shadow: 0 4px 20px rgba(0,0,0,0.06);
    --h3-shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --h3-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Hero — Gradient Left Panel ---- */
.h3-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    overflow: hidden;
}

.h3-hero-left {
    background: linear-gradient(145deg, #4338ca 0%, #6366f1 50%, #818cf8 100%);
    width: 55%;
    min-height: 700px;
    padding: 140px 0 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    clip-path: polygon(0 0, 92% 0, 78% 100%, 0% 100%);
}

.h3-hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.h3-hero-content {
    position: relative;
    z-index: 2;
    padding-left: 80px;
    padding-right: 120px;
    max-width: 700px;
}

.h3-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.2);
}

.h3-hero-badge i {
    color: #fbbf24;
}

.h3-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.h3-hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.h3-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.h3-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--h3-primary);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s var(--h3-ease);
    border: none;
}

.h3-btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    color: var(--h3-primary);
}

.h3-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s var(--h3-ease);
}

.h3-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

.h3-hero-right {
    width: 45%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: var(--h3-bg);
}

.h3-hero-search-wrapper {
    width: 100%;
    max-width: 440px;
}

.h3-hero-search-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--h3-dark);
    margin-bottom: 8px;
}

.h3-hero-search-sub {
    font-size: 15px;
    color: var(--h3-text);
    margin-bottom: 28px;
}

.h3-search-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.h3-search-input-group {
    position: relative;
}

.h3-search-input-group i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
}

.h3-search-input-group input,
.h3-search-input-group select {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid var(--h3-border);
    border-radius: var(--h3-radius);
    font-size: 15px;
    font-weight: 500;
    color: var(--h3-dark);
    background: var(--h3-white);
    outline: none;
    transition: all 0.3s var(--h3-ease);
    -webkit-appearance: none;
    appearance: none;
}

.h3-search-input-group input:focus,
.h3-search-input-group select:focus {
    border-color: var(--h3-primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.h3-search-input-group input::placeholder {
    color: #94a3b8;
}

.h3-btn-search {
    width: 100%;
    padding: 16px;
    background: var(--h3-primary);
    color: #fff;
    border: none;
    border-radius: var(--h3-radius);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s var(--h3-ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.h3-btn-search:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
}

.h3-hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.h3-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--h3-text);
}

.h3-hero-trust-item i {
    color: var(--h3-primary);
}

/* ---- Section Common ---- */
.h3-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--h3-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    margin-bottom: 12px;
}

.h3-section-eyebrow::before {
    content: '';
    width: 24px;
    height: 3px;
    background: var(--h3-primary);
    border-radius: 4px;
}

.h3-section-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--h3-dark);
    line-height: 1.15;
}

.h3-section-sub {
    font-size: 17px;
    color: var(--h3-text);
    line-height: 1.7;
    max-width: 540px;
}

/* ---- Features Row ---- */
.h3-features {
    padding: 80px 0;
    background: var(--h3-white);
    border-bottom: 1px solid var(--h3-border);
}

.h3-feat-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--h3-radius-lg);
    transition: all 0.3s var(--h3-ease);
}

.h3-feat-card:hover {
    background: var(--h3-primary-soft);
}

.h3-feat-icon {
    width: 68px;
    height: 68px;
    background: var(--h3-primary-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--h3-primary);
    margin: 0 auto 18px;
    transition: all 0.3s var(--h3-ease);
}

.h3-feat-card:hover .h3-feat-icon {
    background: var(--h3-primary);
    color: #fff;
    transform: scale(1.08);
}

.h3-feat-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--h3-dark);
    margin-bottom: 6px;
}

.h3-feat-card p {
    font-size: 14px;
    color: var(--h3-text);
    margin: 0;
}

/* ---- Categories ---- */
.h3-categories {
    padding: 100px 0;
    background: var(--h3-bg);
}

.h3-cat-card {
    background: var(--h3-white);
    border-radius: var(--h3-radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s var(--h3-ease);
    text-decoration: none !important;
    display: block;
    height: 100%;
    border: 2px solid transparent;
    box-shadow: var(--h3-shadow-sm);
}

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

.h3-cat-img {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
    transition: all 0.3s var(--h3-ease);
}

.h3-cat-card:nth-child(4n+1) .h3-cat-img { background: #eef2ff; color: #4f46e5; }
.h3-cat-card:nth-child(4n+2) .h3-cat-img { background: #fdf2f8; color: #ec4899; }
.h3-cat-card:nth-child(4n+3) .h3-cat-img { background: #ecfdf5; color: #059669; }
.h3-cat-card:nth-child(4n+4) .h3-cat-img { background: #fef3c7; color: #d97706; }

.h3-cat-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--h3-dark);
    margin-bottom: 4px;
    transition: all 0.3s var(--h3-ease);
}

.h3-cat-card:hover h5 {
    color: var(--h3-primary);
}

.h3-cat-card p {
    font-size: 13px;
    color: var(--h3-text);
    margin: 0;
}

/* ---- Services ---- */
.h3-services {
    padding: 100px 0;
    background: var(--h3-white);
}

.h3-service-card {
    background: var(--h3-white);
    border-radius: var(--h3-radius-lg);
    overflow: hidden;
    transition: all 0.3s var(--h3-ease);
    height: 100%;
    box-shadow: var(--h3-shadow-sm);
    border: 1px solid var(--h3-border);
}

.h3-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--h3-shadow-lg);
    border-color: transparent;
}

.h3-sv-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.h3-sv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.h3-service-card:hover .h3-sv-img img {
    transform: scale(1.05);
}

.h3-sv-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--h3-white);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--h3-primary);
}

.h3-sv-price {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--h3-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 15px;
}

.h3-sv-wish {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: var(--h3-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--h3-text);
    cursor: pointer;
    transition: all 0.3s var(--h3-ease);
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.h3-sv-wish:hover,
.h3-sv-wish.active {
    color: #ef4444;
    background: #fef2f2;
}

.h3-sv-body {
    padding: 24px;
}

.h3-sv-provider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.h3-sv-provider img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.h3-sv-provider span {
    font-size: 13px;
    font-weight: 600;
    color: var(--h3-text);
}

.h3-sv-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--h3-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
    line-height: 1.35;
    transition: all 0.3s var(--h3-ease);
}

.h3-sv-name:hover {
    color: var(--h3-primary);
}

.h3-sv-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--h3-border);
}

.h3-sv-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    color: #f59e0b;
    font-size: 14px;
}

.h3-sv-rating span {
    color: var(--h3-dark);
    margin-left: 2px;
}

.h3-sv-book {
    color: var(--h3-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--h3-primary-soft);
    border-radius: 100px;
    transition: all 0.3s var(--h3-ease);
}

.h3-sv-book:hover {
    background: var(--h3-primary);
    color: #fff;
}

.h3-sv-book i {
    font-size: 11px;
    transition: transform 0.3s;
}

.h3-sv-book:hover i {
    transform: translateX(3px);
}

/* ---- Stats ---- */
.h3-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
    position: relative;
    overflow: hidden;
}

.h3-stats::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.h3-stat-item {
    text-align: center;
    padding: 20px;
}

.h3-stat-item h3 {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
}

.h3-stat-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin: 0;
    font-weight: 500;
}

/* ---- Testimonials ---- */
.h3-testimonials {
    padding: 100px 0;
    background: var(--h3-bg);
}

.h3-testi-card {
    background: var(--h3-white);
    border-radius: var(--h3-radius-lg);
    padding: 36px;
    height: 100%;
    transition: all 0.3s var(--h3-ease);
    box-shadow: var(--h3-shadow-sm);
    margin: 0 12px;
    border: 1px solid var(--h3-border);
}

.h3-testi-card:hover {
    box-shadow: var(--h3-shadow-lg);
    border-color: transparent;
}

.h3-testi-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.h3-testi-stars {
    display: flex;
    gap: 3px;
}

.h3-testi-stars i {
    color: #f59e0b;
    font-size: 14px;
}

.h3-testi-quote-icon {
    color: var(--h3-primary-light);
    font-size: 28px;
    opacity: 0.4;
}

.h3-testi-card blockquote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--h3-text);
    margin: 0 0 24px;
    font-style: normal;
}

.h3-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--h3-border);
}

.h3-testi-author img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
}

.h3-testi-author h6 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 2px;
    color: var(--h3-dark);
}

.h3-testi-author span {
    font-size: 13px;
    color: var(--h3-text);
}

/* Slick dots for h3 testimonials */
.h3-testimonials .slick-dots {
    display: flex !important;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 44px 0 0;
    gap: 8px;
}

.h3-testimonials .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    outline: none;
    background: var(--h3-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s var(--h3-ease);
}

.h3-testimonials .slick-dots li button:before {
    display: none !important;
}

.h3-testimonials .slick-dots li.slick-active button {
    background: var(--h3-primary);
    width: 24px;
    border-radius: 100px;
}

/* ---- How It Works ---- */
.h3-process {
    padding: 100px 0;
    background: var(--h3-white);
}

.h3-process-card {
    position: relative;
    padding: 40px 28px;
    text-align: center;
    background: var(--h3-bg);
    border-radius: var(--h3-radius-lg);
    transition: all 0.3s var(--h3-ease);
    height: 100%;
}

.h3-process-card:hover {
    background: var(--h3-primary-soft);
    box-shadow: var(--h3-shadow);
}

.h3-process-num {
    width: 56px;
    height: 56px;
    background: var(--h3-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 20px;
    transition: all 0.3s var(--h3-ease);
}

.h3-process-card:hover .h3-process-num {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
}

.h3-process-card h5 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--h3-dark);
}

.h3-process-card p {
    font-size: 14px;
    color: var(--h3-text);
    line-height: 1.6;
    margin: 0;
}

.h3-process-arrow {
    position: absolute;
    top: 50%;
    right: -24px;
    transform: translateY(-50%);
    color: var(--h3-primary-light);
    font-size: 20px;
    z-index: 5;
    opacity: 0.5;
}

/* ---- App Download ---- */
.h3-app-section {
    padding: 100px 0;
    background: var(--h3-bg);
}

.h3-app-wrapper {
    background: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
    border-radius: var(--h3-radius-xl);
    padding: 64px;
    position: relative;
    overflow: hidden;
}

.h3-app-wrapper::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border: 40px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}

.h3-app-wrapper::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 30%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.h3-app-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.h3-app-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 400px;
}

.h3-app-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.h3-app-btns a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--h3-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s var(--h3-ease);
}

.h3-app-btns a:hover {
    background: #fff;
    color: var(--h3-primary);
    border-color: #fff;
}

.h3-app-btns a i {
    font-size: 20px;
}

.h3-app-phone {
    text-align: center;
    position: relative;
    z-index: 1;
}

.h3-app-phone img {
    max-height: 400px;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.25));
}

/* ---- Blog ---- */
.h3-blog-section {
    padding: 100px 0;
    background: var(--h3-white);
}

.h3-blog-card {
    background: var(--h3-white);
    border-radius: var(--h3-radius-lg);
    overflow: hidden;
    transition: all 0.3s var(--h3-ease);
    height: 100%;
    box-shadow: var(--h3-shadow-sm);
    border: 1px solid var(--h3-border);
}

.h3-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--h3-shadow-lg);
    border-color: transparent;
}

.h3-blog-thumb {
    height: 210px;
    overflow: hidden;
}

.h3-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.h3-blog-card:hover .h3-blog-thumb img {
    transform: scale(1.05);
}

.h3-blog-body {
    padding: 24px;
}

.h3-blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.h3-blog-cat {
    background: var(--h3-primary-soft);
    color: var(--h3-primary);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--h3-ease);
}

.h3-blog-cat:hover {
    background: var(--h3-primary);
    color: #fff;
}

.h3-blog-date {
    font-size: 13px;
    color: var(--h3-text);
}

.h3-blog-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--h3-dark);
    text-decoration: none;
    display: block;
    line-height: 1.4;
    margin-bottom: 14px;
    transition: all 0.3s var(--h3-ease);
}

.h3-blog-title:hover {
    color: var(--h3-primary);
}

.h3-blog-link {
    color: var(--h3-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.h3-blog-link i {
    font-size: 11px;
    transition: transform 0.3s;
}

.h3-blog-link:hover i {
    transform: translateX(4px);
}

/* ---- CTA ---- */
.h3-cta {
    padding: 100px 0;
    background: var(--h3-bg);
}

.h3-cta-inner {
    text-align: center;
    padding: 72px 40px;
    background: var(--h3-white);
    border-radius: var(--h3-radius-xl);
    border: 2px solid var(--h3-border);
    box-shadow: var(--h3-shadow);
}

.h3-cta-inner h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--h3-dark);
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.h3-cta-inner p {
    font-size: 17px;
    color: var(--h3-text);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Buttons ---- */
.h3-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--h3-primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s var(--h3-ease);
    border: none;
    cursor: pointer;
}

.h3-btn-primary:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.25);
    color: #fff;
}

.h3-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--h3-dark);
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid var(--h3-border);
    transition: all 0.3s var(--h3-ease);
}

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

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .h3-hero-title { font-size: 48px; }
    .h3-hero-content { padding-left: 48px; padding-right: 80px; }
    .h3-section-title { font-size: 36px; }
}

@media (max-width: 991px) {
    .h3-hero { flex-direction: column; min-height: auto; }
    .h3-hero-left {
        width: 100%;
        clip-path: none;
        padding: 140px 0 80px;
        min-height: auto;
    }
    .h3-hero-content { padding: 0 32px; max-width: 100%; }
    .h3-hero-right { width: 100%; padding: 48px 32px; }
    .h3-hero-title { font-size: 42px; }
    .h3-process-arrow { display: none; }
    .h3-app-wrapper { padding: 40px; }
    .h3-app-title { font-size: 30px; }
    .h3-cta-inner { padding: 48px 24px; }
    .h3-cta-inner h2 { font-size: 30px; }
}

@media (max-width: 767px) {
    .h3-hero-title { font-size: 34px; letter-spacing: -1.5px; }
    .h3-hero-desc { font-size: 16px; }
    .h3-hero-content { padding: 0 20px; }
    .h3-hero-right { padding: 36px 20px; }
    .h3-hero-trust { flex-direction: column; gap: 8px; align-items: flex-start; }
    .h3-section-title { font-size: 28px; }
    .h3-stat-item h3 { font-size: 32px; }
    .h3-app-wrapper { padding: 28px; }
    .h3-app-title { font-size: 26px; }
    .h3-app-phone img { max-height: 280px; }
    .h3-cta-inner { padding: 36px 20px; }
    .h3-cta-inner h2 { font-size: 26px; }
}
