@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700;800&display=swap');

.hero-c335adba-wrapper {
    position: relative;
    background-color: #fafbfc;
    font-family: 'Ubuntu', sans-serif;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-bottom: 0;
}

/* Diagonal premium background shape on the right */
.hero-c335adba-bg-shape-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    background-color: #f7f8f9;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

/* Premium diagonal orange thin line matching the screenshot */
.hero-c335adba-bg-shape-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e66a12;
    clip-path: polygon(15% 0, 15.2% 0, 0.2% 100%, 0% 100%);
    opacity: 0.85;
}

.hero-c335adba-container {
    position: relative;
    z-index: 2;
    max-width: 1800px;
    margin: 0 auto;
    padding: 60px 40px 40px 40px; /* Reduced vertical padding to make section narrower */
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 520px; /* Symmetrical and compact height */
}

.hero-c335adba-content {
    flex: 0 0 46%;
    max-width: 46%; 
    padding-right: 0;
    display: flex;
    flex-direction: column;
}

.hero-c335adba-subtitle {
    color: #e66a12;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.hero-c335adba-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    letter-spacing: -1px;
    max-width: 100%;
}

.hero-c335adba-title-orange {
    color: #e66a12;
}

.hero-c335adba-desc {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px; 
    line-height: 1.6;
    color: #333333;
    max-width: 600px; 
    margin-bottom: 40px;
}

.hero-c335adba-actions {
    display: flex;
    flex-direction: row; /* Horizontal button layout matching the screenshot */
    gap: 15px;
    margin-bottom: 40px;
    align-items: center;
}

.hero-c335adba-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    width: auto;
    font-family: 'Ubuntu', sans-serif;
}

.hero-c335adba-btn-primary {
    background-color: #e66a12;
    color: #ffffff;
    border: 2px solid #e66a12;
}

.hero-c335adba-btn-primary:hover {
    background-color: #d65c0d;
    border-color: #d65c0d;
    color: #ffffff;
}

.hero-c335adba-btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #e2e2e2;
}

.hero-c335adba-btn-secondary:hover {
    border-color: #1a1a1a;
    background-color: #ffffff;
}

.hero-c335adba-spacer-col {
    flex: 0 0 48%;
    max-width: 48%; 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Square Image layout container */
.hero-c335adba-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-c335adba-square-image {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    object-fit: contain; /* Kept square, looks perfectly aligned without weird crops */
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.06)); /* Soft premium product shadow */
}

/* Features Bar */
.hero-c335adba-features-wrapper {
    position: relative;
    width: 100%;
    z-index: 10;
    padding: 0 40px;
    margin-top: 0;
    transform: translateY(-50%);
    margin-bottom: -50px;
    font-family: 'Ubuntu', sans-serif;
}

.hero-c335adba-features-container {
    max-width: 1800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    display: flex;
    padding: 30px 20px;
}

.hero-c335adba-feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid #f0f0f0;
    padding: 0 15px;
}

.hero-c335adba-feature-item:last-child {
    border-right: none;
}

.hero-c335adba-feature-icon {
    color: #e66a12;
    font-size: 32px;
    margin-bottom: 15px;
}

.hero-c335adba-feature-icon svg {
    width: 32px;
    height: 32px;
    fill: #e66a12;
}

.hero-c335adba-feature-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.hero-c335adba-feature-subtitle {
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    color: #666666;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .hero-c335adba-wrapper { width: 100%; margin-left: auto; margin-right: auto; }
    .hero-c335adba-title { font-size: 42px; max-width: 100%; }
    .hero-c335adba-container { gap: 40px; flex-wrap: wrap; padding-top: 60px; min-height: auto; }
    .hero-c335adba-content { flex: 0 0 100%; max-width: 100%; }
    
    .hero-c335adba-spacer-col { flex: 0 0 100%; max-width: 100%; margin-top: 40px; }
    .hero-c335adba-square-image { max-width: 380px; }
    .hero-c335adba-bg-shape-right { width: 100%; clip-path: none; opacity: 0.5; }
    .hero-c335adba-features-wrapper { transform: none; margin-top: 20px; margin-bottom: 20px; }
    .hero-c335adba-features-container { padding: 25px 10px; flex-wrap: wrap; }
    .hero-c335adba-feature-item { flex: 0 0 33.333%; border-bottom: 1px solid #f0f0f0; padding: 20px 10px; border-right: none; }
}

@media (max-width: 767px) {
    .hero-c335adba-feature-item { flex: 0 0 50%; }
    .hero-c335adba-title { font-size: 34px; }
    .hero-c335adba-actions { flex-direction: column; width: 100%; }
    .hero-c335adba-btn { width: 100%; min-width: 0; }
}

@media (max-width: 480px) {
    .hero-c335adba-feature-item { flex: 0 0 100%; }
}