/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #5386b6;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #333a3f;
    line-height: 1.5;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    min-height: 112px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: 150px;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-item {
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: rgba(61, 61, 61, 0.69);
    text-decoration: none;
    line-height: 64px;
    letter-spacing: -0.4366px;
    display: block;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: #333a3f;
    text-decoration: none;
}

.nav-cta {
    background-color: #578cbd;
    color: white;
    border: none;
    border-radius: 19px;
    padding: 12px 34px;
    min-width: 146px;
    height: 40px;
    font-family: 'Helvetica', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 28.16px;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.nav-cta:hover {
    background-color: #6380a7;
    transform: translateY(-1px);
}

.nav-cta:active {
    transform: translateY(0);
}

/* Navigation Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-dropdown-arrow {
    font-size: 10px;
    transition: transform 0.2s ease;
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle;
}

.nav-dropdown-arrow path {
    stroke: #787878;
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #e8e8e8;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    padding: 30px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    margin: 0;
}

/* Mega Menu Styles */
.nav-mega-menu {
    display: flex;
    gap: 80px;
    width: 700px;
    max-width: calc(100vw - 40px);
    right: 0;
    left: auto;
    transform: translateY(10px);
}

.nav-dropdown-mega:hover .nav-mega-menu {
    transform: translateY(0);
}

.nav-mega-column {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.nav-dropdown-heading {
    padding: 0 0 15px 0;
    margin: 0;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #333333;
    text-transform: none;
    letter-spacing: 0;
}

.nav-dropdown-link {
    display: block;
    padding: 8px 0;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #888888;
    text-decoration: none;
    transition: color 0.15s ease;
}

.nav-dropdown-link:hover {
    color: #555555;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.nav-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333a3f;
    position: relative;
    transition: background-color 0.2s ease;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #333a3f;
    left: 0;
    transition: transform 0.2s ease, top 0.2s ease;
}

.nav-toggle-icon::before {
    top: -8px;
}

.nav-toggle-icon::after {
    top: 8px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    width: 100%;
    background: linear-gradient(169.659deg, rgb(21, 64, 123) 0%, rgb(184, 198, 214) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 100px;
    min-height: 258px;
    box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1150px;
    gap: 40px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-heading-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px 0;
}

.hero-heading {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 45px;
    line-height: 1.1;
    color: #f9fafb;
    letter-spacing: 0.3516px;
    margin: 0;
    max-width: 510px;
}

.hero-subheading {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    font-style: normal;
    line-height: 1.7rem;
    letter-spacing: -0.02806rem;
    color: #ffffff;
    margin: 0;
    max-width: 510px;
}

.hero-button {
    background-color: #ffffff;
    color: #3c77c8;
    border: none;
    border-radius: 50px;
    width: fit-content;
    padding: 14px 28px;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 28.16px;
    letter-spacing: .5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.15);
}

.hero-button:active {
    transform: translateY(0);
}

.hero-image-container {
    width: 272px;
    height: 225px;
    /* box-shadow: 0 4px 4px 0 rgba(135, 154, 190, 0.75); */
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: block;
}

/* ============================================
   HERO POSTS VARIANT (Centered)
   ============================================ */

.hero-posts {
    width: 100%;
    background-color: #e7ecf3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px 65px;
    position: relative;
    margin-bottom: -4px;
    clip-path: polygon(100% 0, 100% 70%, 50% 100%, 0 70%, 0 0);
}

.hero-posts-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    gap: 25px;
}

.hero-posts-heading {
    font-family: 'Nunito Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 55px;
    line-height: 1.25;
    color: #333333;
    letter-spacing: 0.35px;
    margin: 0;
}

.hero-posts-line {
    display: block;
}

.hero-posts-highlight {
    color: #4080d8;
}

.hero-posts-italic {
    font-style: italic;
}

.hero-posts-subheading {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.45;
    color: #706e6e;
    letter-spacing: -0.45px;
    margin: 0;
    max-width: 700px;
    opacity: 0.9;
}

.hero-posts-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #4080d8;
    color: #ffffff;
    border: 2px solid #4080d8;
    border-radius: 50px;
    padding: 16px 40px;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 800;
    font-size: 21px;
    line-height: 1.34;
    letter-spacing: -0.44px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.hero-posts-button:hover {
    background-color: #3570c4;
    border-color: #3570c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px 0 rgba(64, 128, 216, 0.3);
}

.hero-posts-button:active {
    transform: translateY(0);
}

/* ============================================
   HERO COMBO VARIANT (Cards + Toggle/Check)
   ============================================ */

.hero-combo {
    width: 100%;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px 50px;
    position: relative;
    border-radius: 0 0 80px 80px / 0 0 40px 40px;
}

.hero-combo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #f5f5f5;
    border-radius: 0 0 80px 80px / 0 0 40px 40px;
}

.hero-combo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1500px;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-combo-heading {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin: 0;
}

.hero-combo-highlight {
    color: #4080d8;
}

.hero-combo-subheading {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #706e6e;
    margin: -15px 0 0 0;
    max-width: 640px;
}

.hero-combo-cards {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.hero-combo-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 32px 24px;
    min-width: 200px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-combo-card-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-combo-card-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hero-combo-card-label {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #1a1a1a;
    margin: 5px 0 5px 0;
}

.hero-combo-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.hero-combo-toggle {
    width: 52px;
    height: 28px;
    object-fit: contain;
}

.hero-combo-check {
    width: 33px;
    height: 33px;
    object-fit: contain;
}

.hero-combo-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.hero-combo-arrow-img {
    width: 50px;
    height: auto;
    object-fit: contain;
}

.hero-combo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #4080d8;
    color: #ffffff;
    border: 2px solid #4080d8;
    border-radius: 50px;
    padding: 16px 40px;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.34;
    letter-spacing: -0.44px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 16px;
}

.hero-combo-button:hover {
    background-color: #3570c4;
    border-color: #3570c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px 0 rgba(64, 128, 216, 0.3);
}

.hero-combo-button:active {
    transform: translateY(0);
}

/* ============================================
   COMBO CONTAINER SECTION
   ============================================ */

.combo-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 30px;
    gap: 30px;
}

.combo-heading {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.combo-title {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: clamp(25px, 3vw, 33px);
    line-height: 1.3;
    color: #333a3f;
    letter-spacing: 1.2px;
    margin: 0;
}

.combo-subtitle {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 27px;
    color: #565656;
    letter-spacing: -0.4462px;
    max-width: 900px;
    margin: 0;
}

.combos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 40px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.combo-card {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 15px;
    width: 266px;
    height: 94px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
}

.combo-input,
.combo-output {
    width: 45px;
    height: 45px;
    position: absolute;
    overflow: hidden;
}

.combo-input {
    left: 60px;
    top: 11px;
}

.combo-output {
    left: 169px;
    top: 11px;
}

.combo-input img,
.combo-output img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.combo-arrow {
    position: absolute;
    left: 50%;
    top: 28.5px;
    transform: translateX(-50%) translateY(-50%) rotate(90deg) scaleY(-1);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 0;
    color: #acacac;
    letter-spacing: 0.0703px;
    width: 28px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.combo-text {
    position: absolute;
    left: 50%;
    top: 49px;
    transform: translateX(-50%);
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 38.4px;
    color: #333a3f;
    text-align: center;
    width: 266px;
    letter-spacing: 0.0703px;
    margin: 0;
}

/* Combos Grid - Show only first 8 cards by default */
.combos-grid:not(.expanded) .combo-card:nth-child(n+9) {
    display: none;
}

.combos-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding: 12px 28px;
    background-color: transparent;
    border: 2px solid #628bb9;
    border-radius: 50px;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #628bb9;
    cursor: pointer;
    transition: all 0.2s ease;
}

.combos-toggle:hover {
    background-color: #628bb9;
    color: #ffffff;
}

.combos-toggle-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.combos-toggle[aria-expanded="true"] .combos-toggle-icon {
    transform: rotate(180deg);
}

/* ============================================
   POST TYPES SECTION
   ============================================ */

.post-types-container {
    width: 100%;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 30px;
    gap: 40px;
}

.post-types-heading {
    width: 100%;
    text-align: center;
}

.post-types-title {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: clamp(25px, 3vw, 33px);
    line-height: 1.3;
    color: #333a3f;
    text-align: center;
    letter-spacing: 1.2px;
    margin: 0;
}

.post-types-grid {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    justify-content: center;
    align-items: flex-start;
}

.post-type-box {
    width: 100%;
    max-width: 500px;
    min-width: 280px;
    flex: 1 1 400px;
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0);
    padding: 15px;
    gap: 15px;
}

.post-type-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
}

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

.post-type-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.post-type-title {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 23px;
    line-height: 28.16px;
    color: #6380a7;
    letter-spacing: -0.4366px;
    margin: 0;
}

.post-type-description {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.5px;
    color: #565656;
    letter-spacing: -0.3125px;
    margin: 0;
}

.post-type-description p {
    margin: 0 0 0.5em;
}

.post-type-description p:last-child {
    margin-bottom: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 30px;
    gap: 40px;
}

.faq-heading {
    width: 100%;
    text-align: center;
}

.faq-title {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: clamp(25px, 3vw, 33px);
    line-height: 1.3;
    color: #333a3f;
    text-align: center;
    letter-spacing: 1.2px;
    margin: 0;
}

.faqs-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
}

.faq-button {
    background: #ffffff;
    border: none;
    width: 100%;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
    gap: 15px;
}

.faq-button:hover {
    background-color: #fafafa;
}

.faq-button:focus {
    outline: none;
}

.faq-question {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 17.6px;
    line-height: 28.16px;
    color: #333a3f;
    letter-spacing: -0.4366px;
    flex: 1;
    margin: 0;
}

.faq-icon {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 38.4px;
    color: #565656;
    letter-spacing: 0.0703px;
    width: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

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

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

.faq-text {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25.6px;
    color: #333a3f;
    letter-spacing: -0.3125px;
    padding: 0 24px 24px 24px;
    margin: 0;
}

.faq-text p {
    margin: 0 0 0.75em;
}

.faq-text p:last-child {
    margin-bottom: 0;
}

.faq-text ul,
.faq-text ol {
    margin: 0.5em 0;
    padding-left: 1.5em;
}

.faq-text a {
    color: #0066cc;
    text-decoration: underline;
}

.faq-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.faq-cta-button {
    background-color: #3c77c8;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    width: fit-content;
    padding: 14px 28px;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28.16px;
    letter-spacing: .5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.faq-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px 0 rgba(60, 119, 200, 0.3);
    background-color: #3469b5;
}

/* ============================================
   INPUTS BLOCK SECTION
   ============================================ */

.inputs-block {
    width: 100%;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 50px;
    gap: 30px;
}

.inputs-header {
    width: 80%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.inputs-title {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: clamp(23px, 2.5vw, 25px);
    line-height: normal;
    color: #707070;
    text-align: center;
    letter-spacing: 0.3711px;
    max-width: 550px;
    margin: 0;
}

.inputs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.input-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 87px;
}

.input-icon {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.input-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 19.2px;
    color: #666;
    text-align: center;
    width: 100%;
}

/* ============================================
   WHY CONTAINER SECTION
   ============================================ */

.why-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 30px;
    gap: 40px;
}

.why-header {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.why-title {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: clamp(25px, 3vw, 33px);
    line-height: 1.3;
    color: #333a3f;
    letter-spacing: 1.2px;
    margin: 0;
}

.why-subtitle {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 27px;
    color: #565656;
    letter-spacing: -0.4462px;
    max-width: 900px;
    margin: 0;
}

.why-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.why-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 386px;
    min-width: 280px;
    flex: 1 1 350px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.why-card-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.why-card-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.why-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-card-title {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 38.4px;
    color: #6380a7;
    letter-spacing: 0.0703px;
    margin: 0;
    flex: 1;
}

.why-card-text {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.5px;
    color: #565656;
    letter-spacing: -0.3125px;
    margin: 10px 0 0 0;
}

.why-card-text p {
    margin: 0 0 0.5em;
}

.why-card-text p:last-child {
    margin-bottom: 0;
}

/* ============================================
   SOCIAL PROOF CONTAINER SECTION
   ============================================ */

.social-proof-container {
    width: 100%;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    gap: 30px;
}

.social-proof-title {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: clamp(23px, 2.5vw, 25px);
    line-height: normal;
    color: #707070;
    text-align: center;
    letter-spacing: 0.3711px;
    margin: 0;
}

.social-proof-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

.social-proof-image {
    width: 100%;
    max-width: 709px;
}

.social-proof-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ============================================
   NUMBERS CONTAINER SECTION
   ============================================ */

.numbers-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 30px;
    gap: 40px;
}

.numbers-heading {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.numbers-title {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.3;
    color: #333a3f;
    letter-spacing: 0.3711px;
    margin: 0;
}

.numbers-subtitle {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 27px;
    color: #565656;
    letter-spacing: -0.4462px;
    max-width: 900px;
    margin: 0;
}

.numbers-grid {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.numbers-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    padding-top: 40px;
}

.numbers-circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    z-index: 0;
    background: #dfe5ea;
    border-radius: 50%;
}

.numbers-circle img {
    display: none;
}

.numbers-value {
    position: relative;
    z-index: 1;
    font-family: Lustria !important;
    font-weight: 700;
    font-size: 75px;
    line-height: 1;
    color: #375a7b !important;
    text-align: center;
    letter-spacing: 0.3711px;
    margin: 0;
    margin-top: -30px;
}

.numbers-label {
    position: relative;
    z-index: 1;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.2;
    color: #7a7a7a;
    text-align: center;
    letter-spacing: 0;
    margin: 0;
    max-width: 150px;
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs {
    width: 100%;
    background-color: #f8f9fa;
    padding: 20px 50px;
}

.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: #666;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: #999;
}

.breadcrumb-link {
    color: #6a6a6a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #333a3f;
    text-decoration: underline;
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.footer {
    width: 100%;
    background: linear-gradient(90deg, rgb(38, 38, 38) 0%, rgb(38, 38, 38) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    flex: 1 1 200px;
    min-width: 150px;
}

.footer-heading {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 28.16px;
    color: #f9fafb;
    letter-spacing: 0.425px;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    width: 100%;
}

.footer-link {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.5px;
    color: #f9fafb;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-link:hover,
.footer-link:focus {
    text-decoration: underline;
    opacity: 0.9;
}

/* Copyright */
.copyright {
    width: 100%;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
}

.copyright-text {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.5px;
    color: #919191;
    text-align: center;
}

/* ============================================
   SCROLL POPUP
   ============================================ */

.popup-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    pointer-events: none;
    visibility: hidden;
}

.popup-overlay.active {
    visibility: visible;
}

.popup-modal {
    position: relative;
    background-color: #bbe0f2;
    border-radius: 16px;
    padding: 20px 25px;
    max-width: 340px;
    width: auto;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateX(120%);
    transition: transform 0.6s ease;
    pointer-events: auto;
}

.popup-overlay.active .popup-modal {
    transform: translateX(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s ease;
}

.popup-close:hover {
    color: #333;
}

.popup-title {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.popup-text {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #1a1a1a;
    margin: 0 0 30px 0;
}

.popup-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.popup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.popup-btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
}

.popup-btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

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

.popup-btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet and below - Hamburger menu */
@media (max-width: 1024px) {
    .nav {
        padding: 15px 20px;
        min-height: 70px;
        flex-wrap: wrap;
        position: relative;
    }

    .nav-logo {
        order: 1;
    }

    .nav-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
        width: 100%;
        z-index: 10;
    }

    .nav-menu[aria-expanded="true"],
    .nav-menu.active {
        display: flex;
    }

    .nav-menu-item {
        width: 100%;
        border-bottom: 1px solid #e7e7e7;
    }

    .nav-menu-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 15px 10px;
        line-height: 22.5px;
        text-align: left;
        width: 100%;
    }

    .nav-cta {
        width: 100%;
        margin-top: 10px;
        padding: 15px;
        text-align: center;
        text-decoration: none;
        display: block;
    }

    /* Mobile dropdown styles */
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 15px 10px;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        background: #f5f5f5;
        border-radius: 0;
        padding: 15px 0;
        display: none;
        min-width: auto;
    }

    .nav-mega-menu {
        flex-direction: column;
        gap: 20px;
        min-width: auto;
    }

    .nav-mega-column {
        min-width: auto;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-mega.active .nav-mega-menu {
        display: flex;
    }

    .nav-dropdown.active .nav-dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown-link {
        padding: 10px 20px;
        font-size: 14px;
    }

    .nav-dropdown-heading {
        padding: 5px 20px 10px;
        font-size: 14px;
    }

    /* Hero stacks on tablet */
    .hero {
        padding: 40px 20px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        align-items: center;
        order: 2;
    }

    .hero-heading-wrapper {
        align-items: center;
    }

    .hero-heading {
        text-align: center;
        max-width: 100%;
    }

    .hero-subheading {
        text-align: center;
        max-width: 100%;
    }

    .hero-image-container {
        width: 100%;
        max-width: 50%;
        height: auto;
        aspect-ratio: 272 / 178;
        order: 1;
    }

    /* Hero Posts responsive */
    .hero-posts-heading {
        font-size: 42px;
    }

    .hero-posts-subheading {
        font-size: 20px;
    }

    .hero-posts-button {
        font-size: 18px;
        padding: 14px 32px;
    }

    /* Hero Combo responsive */
    .hero-combo-heading {
        font-size: 40px;
    }

    .hero-combo-subheading {
        font-size: 18px;
    }

    .hero-combo-cards {
        gap: 16px;
    }

    .hero-combo-card {
        min-width: 180px;
        padding: 24px 24px 20px;
    }

    .hero-combo-button {
        font-size: 18px;
        padding: 14px 32px;
    }

    /* Sections padding adjustment */
    .combo-container,
    .post-types-container,
    .faq-section,
    .inputs-block,
    .why-container,
    .social-proof-container,
    .numbers-container {
        padding: 40px 20px;
    }

    /* Post types - 2 columns, align left but grid centered */
    .post-types-grid {
        justify-content: flex-start;
        width: fit-content;
        max-width: 100%;
        margin: 0 auto;
    }

    .post-type-box {
        flex: 0 0 auto;
        width: 45%;
        min-width: 280px;
        max-width: 500px;
    }

    /* Why cards - 2 columns */
    .why-card {
        flex: 1 1 45%;
        max-width: none;
    }

    /* Numbers - wrap */
    .numbers-grid {
        gap: 40px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .logo-img {
        height: 38px;
        width: 120px;
    }

    .hero-heading {
        font-size: 33px;
    }

    .hero-button {
        padding: 12px 24px;
        font-size: 17px;
    }

    /* Hero Posts 768px */
    .hero-posts-heading {
        font-size: 36px;
    }

    .hero-posts-subheading {
        font-size: 18px;
    }

    .hero-posts-button {
        font-size: 17px;
        padding: 12px 28px;
    }

    .hero-posts {
        clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
        padding-bottom: 70px;
        margin-bottom: -50px;
    }

    /* Hero Combo 768px */
    .hero-combo-heading {
        font-size: 34px;
    }

    .hero-combo-subheading {
        font-size: 17px;
    }

    .hero-combo-cards {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-combo-arrow {
        transform: rotate(90deg);
    }

    .hero-combo-card {
        max-width: 100%;
        min-width: 200px;
    }

    .hero-combo-button {
        font-size: 17px;
        padding: 12px 28px;
    }

    /* Combo cards - 2 columns, align left but grid centered */
    .combos-grid {
        justify-content: flex-start;
        width: fit-content;
        max-width: 100%;
        margin: 0 auto;
    }

    .combo-card {
        width: 266px;
        min-width: 240px;
        margin: auto;
    }

    /* Post types stack - centered */
    .post-types-grid {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .post-type-box {
        flex: 1 1 100%;
        width: 100%;
    }

    /* FAQ adjustments */
    .faq-button {
        padding: 15px 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-text {
        padding: 0 20px 20px;
    }

    /* Why cards stack */
    .why-card {
        flex: 1 1 100%;
        max-width: 500px;
    }

    /* Input items smaller */
    .input-item {
        width: 75px;
    }

    .input-icon {
        width: 50px;
        height: 50px;
    }

    /* Numbers stack */
    .numbers-section {
        min-width: 150px;
    }

    /* Breadcrumbs */
    .breadcrumbs {
        padding: 15px 20px;
    }

    /* Footer stack */
    .footer-content {
        gap: 30px;
    }

    .footer-column {
        flex: 1 1 100%;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .nav {
        padding: 10px 15px;
    }

    .logo-img {
        height: 32px;
        width: 100px;
    }

    .hero {
        padding: 30px 15px;
        min-height: auto;
    }

    .hero-heading {
        font-size: 32px;
    }

    .hero-button {
        width: 100%;
        max-width: 200px;
    }

    .hero-image-container {
        max-width: 100%;
    }

    /* Hero Posts mobile */
    .hero-posts {
        padding: 30px 20px 60px;
    }

    .hero-posts-heading {
        font-size: 28px;
    }

    .hero-posts-subheading {
        font-size: 16px;
    }

    .hero-posts-button {
        font-size: 16px;
        padding: 12px 24px;
        width: 100%;
        max-width: 250px;
    }

    .hero-combo {
        padding: 30px 20px 70px;
    }

    .hero-combo-heading {
        font-size: 26px;
    }

    .hero-combo-subheading {
        font-size: 16px;
    }

    .hero-combo-card {
        padding: 20px 20px 16px;
        min-width: 160px;
    }

    .hero-combo-card-icon-wrap {
        width: 60px;
        height: 60px;
    }

    .hero-combo-card-icon {
        width: 32px;
        height: 32px;
    }

    .hero-combo-card-label {
        font-size: 16px;
    }

    .hero-combo-button {
        font-size: 16px;
        padding: 12px 24px;
        width: 100%;
        max-width: 250px;
    }

    .hero-posts {
        clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
        padding-bottom: 60px;
        margin-bottom: -40px;
    }

    /* Sections padding */
    .combo-container,
    .post-types-container,
    .faq-section,
    .inputs-block,
    .why-container,
    .social-proof-container,
    .numbers-container {
        padding: 30px 15px;
    }

    /* Breadcrumbs mobile */
    .breadcrumbs {
        padding: 12px 15px;
    }

    .breadcrumb-item {
        font-size: 13px;
    }

    /* Combo cards stack - full width on mobile */
    .combos-grid {
        gap: 28px 10px;
        justify-content: flex-start;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .combo-card {
        width: 100%;
        min-width: auto;
    }

    /* Post type smaller icon */
    .post-type-icon {
        width: 45px;
        height: 45px;
    }

    .post-type-title {
        font-size: 18px;
    }

    /* FAQ mobile */
    .faq-button {
        padding: 12px 15px;
        min-height: 70px;
    }

    .faq-question {
        font-size: 14px;
        line-height: 1.4;
    }

    .faq-text {
        font-size: 14px;
        padding: 0 15px 15px;
    }

    /* Input items grid */
    .inputs-grid {
        gap: 20px;
    }

    .input-item {
        width: 65px;
    }

    .input-icon {
        width: 45px;
        height: 45px;
    }

    .input-label {
        font-size: 11px;
    }

    /* Why cards */
    .why-card {
        padding: 15px;
    }

    .why-card-icon {
        width: 32px;
        height: 32px;
    }

    .why-card-title {
        font-size: 18px;
    }

    /* Numbers */
    .numbers-grid {
        gap: 30px;
    }

    .numbers-section {
        width: 100%;
        min-width: auto;
        padding-top: 25px;
    }

    .numbers-circle {
        width: 80px;
        height: 80px;
    }

    .numbers-label {
        font-size: 17px;
        color: #7a7a7a;
        line-height: 1.2;
        letter-spacing: 0;
        font-weight: 400;
        max-width: 150px;
    }

    /* Footer */
    .footer {
        padding: 30px 15px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-heading {
        font-size: 15px;
    }

    .footer-link {
        font-size: 12px;
    }

    .copyright {
        padding: 15px;
    }

    .copyright-text {
        font-size: 12px;
    }

    /* Popup mobile */
    .popup-modal {
        padding: 30px 25px;
        border-radius: 12px;
    }

    .popup-title {
        font-size: 26px;
    }

    .popup-text {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .popup-btn {
        padding: 12px 24px;
        font-size: 15px;
        flex: 1;
        min-width: 120px;
    }
}
