@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;400;500;600;700&display=swap');

:root {
    --primary-green: #00D88A;
    --gradient-green: linear-gradient(90deg, #19D08E 0%, #26FFB1 100%);
    --text-dark: #262626;
    --text-gray: rgba(38, 38, 38, 0.5);
    /* Opacity 0.5 as seen in Frame 914 */
    --white: #FFFFFF;
    --container-width: 1281px;
    --font-family: 'Google Sans', 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 80px;
}

html {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
    /* Common gutter */
}

/* Header Styles */
.header {
    width: 100%;
    padding: 20px 0;
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.highlight {
    color: #26ffb1;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo img {
    width: 209px;
    height: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-item {
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    opacity: 0.5;
    transition: color 0.3s ease, opacity 0.3s ease;
    padding: 10px 0;
}

.nav-item:hover {
    color: var(--primary-green);
    opacity: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.consult-text {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-green);
    text-decoration: none;
}

.consult-text:hover {
    text-decoration: underline;
}

.hotline-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gradient-green);
    border: 1px solid transparent;
    border-radius: 15px;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hotline-btn:hover {
    border: 1px solid var(--gradient, #19D08E);
    background: linear-gradient(90deg, #002232 0%, #064666 100%);
    box-shadow: 0 4px 7.5px 0 rgba(6, 70, 102, 0.28);
}

.hotline-btn img {
    width: 32px;
    height: 32px;
}

.hotline-number {
    font-size: 20px;
    font-weight: 400;
}

/* ====== Dropdown Menu ====== */
.nav-dropdown-wrap {
    position: relative;
}

.nav-item.has-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-dropdown-wrap:hover .dropdown-arrow,
.nav-dropdown-wrap.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Panel */
.dropdown-mega {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 100;
}

.nav-dropdown-wrap:hover .dropdown-mega,
.nav-dropdown-wrap.open .dropdown-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Two-column layout container */
.dropdown-mega-inner {
    background: linear-gradient(160deg, #002232 0%, #064666 60%, #002232 100%);
    border-radius: 16px;
    padding: 0;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Left column */
.dropdown-col-left {
    display: flex;
    flex-direction: column;
    min-width: 250px;
    padding: 12px;
}

/* Right column - children appear here */
.dropdown-col-right {
    display: none;
    flex-direction: column;
    min-width: 230px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.15);
}

.dropdown-col-right.has-items {
    display: flex;
}

/* --- Left column items --- */
.dropdown-parent {
    display: flex;
    flex-direction: column;
}

/* Hide the nested .dropdown-sub (JS moves children to right col) */
.dropdown-sub {
    display: none !important;
}

.dropdown-parent-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dropdown-parent:last-child>.dropdown-parent-link,
.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-parent.active>.dropdown-parent-link {
    background: var(--gradient-green);
    color: #fff;
    border-bottom-color: transparent;
}

.dropdown-child-arrow {
    transition: opacity 0.2s ease;
    opacity: 0.35;
    flex-shrink: 0;
    color: #fff;
}

.dropdown-parent.active>.dropdown-parent-link .dropdown-child-arrow {
    opacity: 1;
}

/* Standalone links (depth 1, no children) */
.dropdown-link {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dropdown-link:hover,
.dropdown-link.active {
    background: var(--gradient-green);
    color: #fff;
    border-bottom-color: transparent;
}

/* --- Right column items --- */
.dropdown-child-link {
    display: flex;
    align-items: center;
    padding: 13px 18px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-child-link:last-child {
    border-bottom: none;
}

.dropdown-child-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.dropdown-child-link.active {
    background: var(--gradient-green);
    color: #fff;
}

/* Hide mobile sub on desktop */
.dropdown-mobile-sub {
    display: none;
}

/* Hero Styles */
.hero {
    padding: 80px 0;
    overflow: hidden;
}

.hero-container {
    display: flex;
    /* align-items: center; */
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -2.4px;
    /* -5% of 48px */
    color: var(--accent-green);
    /* #26FFB1 */
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    /* #262626 */
    margin-bottom: 40px;
    max-width: 612px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gradient-green);
    border-radius: 58px;
    text-decoration: none;
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
    border-radius: 58px;
    border: 1px solid var(--gradient, #19D08E);
    background: linear-gradient(90deg, #002232 0%, #064666 100%);
    box-shadow: 0 4px 7.5px 0 rgba(6, 70, 102, 0.28);
}

.hero-btn img {
    width: 24px;
    height: 24px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 31px;
}

/* Hero Dots Positioning */
.hero-dots {
    position: absolute;
    z-index: 1;
    /* Below the main image */
    pointer-events: none;
}

.dots-top {
    top: 0;
}

.dots-bottom {
    bottom: 0;
}

/* Decorative Background Elements */
.bg-rect {
    position: absolute;
    z-index: 1;
    border-radius: 35px;
}

.rect-1 {
    width: 100%;
    height: 90%;
    background: #EAF9F3;
    top: 5%;
    left: 5%;
    transform: rotate(-2deg);
}

.rect-2 {
    width: 100%;
    height: 90%;
    background: var(--white);
    top: -5%;
    left: -5%;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    transform: rotate(2deg);
}


/* Stats & Partners Section */
.stats-partners {
    padding: 100px 0;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    gap: 137px;
    margin-bottom: 133px;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 150px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -7.5px;
    /* -5% */
    background: var(--gradient-green);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.stat-line {
    width: 100%;
    height: 1px;
    background-color: #000000;
    margin: 30px 0;
}

.stat-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-dark);
}

.partners-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 74px;
}

.partners-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -2.4px;
    color: var(--text-dark);
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 126px;
}

.partners-logos img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}


/* Pain Points Section */
.pain-points {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.pain-points-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.pain-points-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 504px;
}

.main-portrait {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Floating Elements */
.cards-overlay {
    position: absolute;
    top: 70px;
    left: -154px;
    /* Based on absolute x:0 vs x:154 in design */
    width: 266px;
    height: auto;
    z-index: 10;
}

.search-typewriter-overlay {
    position: absolute;
    top: calc(70px + 115px);
    /* cards-overlay top + offset past + icon inside card */
    left: calc(-154px + 24px);
    /* cards-overlay left + card padding */
    width: 218px;
    /* card width minus padding */
    z-index: 11;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    overflow: hidden;
}

.search-typewriter-text {
    font-size: 22px;
    font-weight: 400;
    color: #3c3c3c;
    line-height: 1.35;
    white-space: normal;
    word-break: break-word;
}

.search-typewriter-cursor {
    font-size: 22px;
    color: #3c3c3c;
    animation: blink-cursor 0.7s step-end infinite;
    margin-left: 1px;
    flex-shrink: 0;
}

@keyframes blink-cursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.gradient-decoration {
    position: absolute;
    bottom: 58px;
    /* 550 - 381 - 110/2? No, I'll use top/left for absolute accuracy */
    right: -55px;
    /* 603 relative to woman's 658 end */
    width: 110px;
    height: 110px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.decoration-icon {
    width: 43px;
}

/* Pain Points List */
.pain-points-list {
    flex: 1;
    max-width: 550px;
}

.pain-item {
    margin-bottom: 24px;
}

.pain-item p {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #000000;
}

/* Quote / Empathy Section */
.quote-empathy {
    padding: 100px 0;
    text-align: center;
    background-color: var(--white);
}

.empathy-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.main-quote {
    font-size: 48px;
    font-weight: 400;
    /* As specified in node 11:713 */
    line-height: 1.25;

    max-width: 1030px;
    margin: 0 auto;
}

.quote {
    color: #00CD83;
}

/* Services Section */
.services {
    padding: 100px 0;
    text-align: center;
}

.services-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -2.4px;
    color: var(--text-dark);
    margin-bottom: 80px;
    max-width: 1283px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    padding: 0 10px;
}

.service-card {
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    min-height: 550px;
    position: relative;
}

.service-card:hover {
    border-color: var(--xm, #262626);
    background: #EEF7F0;
    box-shadow: 0 4px 28px 0 rgba(0, 0, 0, 0.10);
}

.service-card:hover .service-btn {
    background: var(--gradient-green);
}

.service-card .card-icon {
    width: 85px;
    height: 85px;
    margin-bottom: 35px;
}

.service-card .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card .card-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 28px;
    min-height: 70px;
}


.ctm-projects-link {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #14313A;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ctm-projects-link:hover {
    color: #00D88A;
}

.service-card .card-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 40px;
    flex-grow: 1;
}

.service-btn {
    display: inline-block;
    padding: 10px 32px;
    border-radius: 58px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    background-color: var(--text-dark);
    color: var(--white);
    transition: background 0.3s ease;
}

/* Card Specifics */
.card-search {
    background-color: #EEF7F0;
}

.card-map {
    background-color: #EFF5FE;
}

.card-website {
    background-color: #FDF1F0;
}

.card-branding {
    background-color: #FEF9E6;
}

/* USP Section */
.usp-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    background-color: #FFFFFF;
}

.usp-bg-deco {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1911px;
    height: auto;
    background-color: #f9f9f9;
    /* Requirement from node 1:382 */
    pointer-events: none;
    z-index: 1;
}

.usp-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.usp-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.usp-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1330px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 3;
}

.usp-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 290px;
}

/* Staggered (Zigzag) Layout based on Figma y-offsets */
.usp-item:nth-child(1),
.usp-item:nth-child(3) {
    margin-top: 96px;
    /* y:96 */
}

.usp-item:nth-child(2),
.usp-item:nth-child(4) {
    margin-top: 0;
    /* y:0 */
}

.usp {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.usp-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

.usp-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.usp-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    /* #00D88A */
    margin-bottom: 8px;
    line-height: 1.25;
}

.usp-desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-dark);
    opacity: 0.66;
    text-align: justify;
}

/* Case Studies Section */
.case-studies {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.case-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -2.4px;
    color: var(--text-dark);
}

.view-all {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    color: #14313A;
    transition: color 0.3s ease;
}

.view-all:hover {
    background: var(--gradient, linear-gradient(90deg, #19D08E 0%, #26FFB1 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.view-all img {
    height: 22px;
}

.blog-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.blog-card-link:hover {
    text-decoration: none !important;
}

.case-grid {
    display: grid;
    grid-template-columns: 315px 315px 1fr;
    grid-template-rows: auto auto;
    gap: 34px;
    max-width: 1323px;
    margin: 0 auto;
}

.case-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.case-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

.case-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-item:hover .case-image img {
    transform: scale(1.08);
}

.case-project-name {
    transition: -webkit-text-fill-color 0.3s ease;
}

.case-item:hover .case-project-name {
    background: var(--gradient, linear-gradient(90deg, #19D08E 0%, #26FFB1 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.case-info {
    text-align: left;
    margin-top: 10px;
}

.case-category {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 4px;
}

.case-project-name {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 1.25;
}

/* Positioning for Staggered look */
.project-1 {
    grid-column: 3;
    grid-row: 1;
}

.project-2 {
    grid-column: 1;
    grid-row: 1;
}

.project-3 {
    grid-column: 2;
    grid-row: 1;
}

.project-4 {
    grid-column: 1 / span 2;
    grid-row: 2;
}

.project-5 {
    grid-column: 3;
    grid-row: 2;
}

.project-1 .case-image img,
.project-4 .case-image img {
    height: 100%;
}

.project-2 .case-image img,
.project-3 .case-image img,
.project-5 .case-image img {
    height: 100%;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.testimonials-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1323px;
    margin: 0 auto;
    position: relative;
}

.testimonials-left {
    flex: 0 0 570px;
    z-index: 2;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -2.4px;
    color: var(--text-dark);
    margin-bottom: 50px;
}

/* Featured Testimonial Card */
.testimonial-featured {
    display: flex;
    align-items: stretch;
    gap: 23px;
    width: 570px;
    min-height: 176px;
    margin-bottom: 20px;
}

.accent-bar {
    width: 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

.accent-cyan {
    background-color: #7DECFF;
}

.accent-gray {
    background-color: #E0E0E0;
}

.testimonial-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
}

.testimonial-author-info {
    margin-bottom: 3px;
}

.author-details {
    display: flex;
    flex-direction: column;
    width: 195px;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    opacity: 0.89;
    line-height: 1.25;
}

.author-company {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    opacity: 0.56;
    line-height: 1.25;
}

.testimonial-quote {
    position: relative;
}

.quote-mark {
    font-size: 80px;
    font-weight: 700;
    color: #14313A;
    position: absolute;
    top: 0;
    left: 0;
}

.quote-text {
    font-size: 28px;
    font-weight: 700;
    color: #14313A;
    line-height: 1.25;
    padding-top: 50px;
}

/* Client List */
.client-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.client-card {
    display: flex;
    align-items: stretch;
    gap: 23px;
    width: 226px;
    min-height: 78px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.client-card:hover {
    opacity: 0.7;
}

.client-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    opacity: 0.89;
    line-height: 1.25;
}

.client-company {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    opacity: 0.56;
    line-height: 1.25;
}

/* Right Side */
.testimonials-right {
    flex: 0 0 682px;
    position: relative;
}

.testimonials-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    text-align: right;
    margin-bottom: 45px;
    max-width: 415px;
    margin-left: auto;
}

.testimonial-image {
    width: 682px;
    height: 479px;
    border-radius: 12px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Workflow Process Section */
.workflow {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.workflow-wrap {
    max-width: 1323px;
    margin: 0 auto;
    position: relative;
}

.workflow-line-top {
    width: 100%;
    height: 1px;
    background-color: #000000;
}

.workflow-label {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.25;
    margin-top: 18px;
    margin-bottom: 40px;
}

.workflow-grid {
    display: flex;
    gap: 140px;
}

.workflow-col-left {
    flex: 0 0 auto;
    width: 357px;
    margin-left: 469px;
}

.workflow-col-right {
    flex: 0 0 auto;
    width: 357px;
}

.workflow-step {
    position: relative;
}

.step-num {
    font-size: 106px;
    font-weight: 100;
    line-height: 1.19;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 14%, rgba(250, 250, 250, 1) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: -30px;
}

.workflow-flex {
    display: flex;
    margin-bottom: 20px;
    align-items: end;
    justify-content: flex-start;
}

.step-name {
    font-size: 28px;
    font-family: "Google Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #000000;
    line-height: normal;
    transition: color 0.3s ease;
}

.step-num {
    transition: background 0.3s ease;
}

.workflow-step:hover .step-name {
    color: var(--x1, #26FFB1);
}

.workflow-step:hover .step-num {
    background: #26FFB1;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-text {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 1.25;
    text-align: justify;
    width: 357px;
}

.workflow-line-mid {
    width: 356px;
    height: 1px;
    background-color: #000000;
    margin: 40px 0;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.faq-wrap {
    max-width: 1323px;
    margin: 0 auto;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    letter-spacing: -2.4px;
    margin-bottom: 60px;
}

.faq-line {
    width: 100%;
    height: 1px;
    background-color: #000000;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
}

.faq-q-text {
    font-size: 32px;
    font-weight: 400;
    color: #000000;
    line-height: 1.25;
}

.faq-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #30E0FF;
    border: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    width: 68px;
    height: 68px;
    background-color: #006678;
}

/* Plus/Minus icon */
.toggle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    background-color: #FFFFFF;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.toggle-icon::before {
    width: 18px;
    height: 1px;
}

.toggle-icon::after {
    width: 1px;
    height: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 30px;
}

.faq-answer p {
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    line-height: 1.25;
    padding-left: 5px;
}

/* Expert Section */
.expert {
    background-color: #FFFFFF;
}

.expert-wrap {
    max-width: 1339px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
    min-height: 631px;
}

.expert-label {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.25;
    /* position: absolute;
    top: 73px;
    left: 0; */
}

.expert-bio {
    flex: 0 0 359px;
}

.expert-name {
    font-size: 32px;
    font-weight: 700;
    color: #14313A;
    line-height: 1.25;
    margin-bottom: 4px;
}

.expert-name a {
    transition: color 0.3s ease;
}

.expert-name a:hover {
    color: #19D08E !important;
    /* Saltech brand green */
}


.expert-role {
    font-size: 18px;
    font-weight: 400;
    color: #14313A;
    line-height: 1.25;
}

.expert-line {
    width: 186px;
    height: 1px;
    background-color: #000000;
    margin: 12px 0;
}

.expert-exp {
    font-size: 20px;
    font-weight: 400;
    color: #14313A;
    line-height: 1.25;
    margin-bottom: 40px;
}

.expert-texts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expert-paragraph {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    opacity: 0.6;
    line-height: 1.25;
    width: 359px;
}

.expert-portrait {
    position: relative;
    width: 550px;
    height: 580px;
}

.expert-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.expert-portrait a {
    display: block;
    width: 100%;
    height: 100%;
}

.expert-portrait a:hover .expert-photo {
    transform: scale(1.02);
}


.expert-logo-overlay {
    position: absolute;
    top: 59px;
    left: 43px;
    width: 78px;
    height: 78px;
    z-index: 2;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.blog-wrap {
    max-width: 1355px;
    margin: 0 auto;
}

.blog-title {
    font-size: 48px;
    font-weight: 700;
    color: #2F2F2F;
    line-height: 1.25;
    letter-spacing: -2.4px;
    margin-bottom: 44px;
}

.blog-grid {
    display: flex;
    gap: 71px;
}

.blog-card {
    flex: 0 0 401px;
    cursor: pointer;
}

.blog-image {
    width: 401px;
    height: 219px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 13px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-card:hover .blog-card-title {
    background: var(--gradient, linear-gradient(90deg, #19D08E 0%, #26FFB1 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-excerpt {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    opacity: 0.59;
    line-height: 1.25;
    margin-bottom: 22px;
    width: 406px;
}

.blog-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #2F2F2F;
    line-height: 1.25;
    width: 354px;
}

/* Footer Section */
.footer {
    padding-top: 2px;
    position: relative;
    overflow: hidden;
    min-height: 742px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-card {
    width: 100%;
    max-width: 1354px;
    min-height: 450px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 2px;
    z-index: 10;
}

.footer-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.footer-card-content {
    position: relative;
    z-index: 1;
    padding: 37px 33px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-card-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-card-left {
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex: 1;
    min-width: 300px;
}

.footer-logo-small {
    width: 41px;
    height: 43px;
}

.footer-cta-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 682px;
}

.footer-cta-title {
    font-size: 32px;
    font-weight: 400;
    color: #26FFB1;
    line-height: 1.25;
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 21px;
    width: 355px;
    max-width: 100%;
}

.footer-social-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-social-row a svg {
    width: 20px;
    height: 20px;
}

.footer-nav-groups {
    display: flex;
    gap: 80px;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-nav-title {
    font-size: 32px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.25;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list a {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-list a:hover {
    color: #26FFB1;
}

/* Footer Card Bottom */
.footer-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-company-info {
    font-size: 18px;
    color: #D3DDE2;
    line-height: 1.5;
}

.footer-company-info p {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 43px;
}

.footer-legal-links a {
    font-size: 14px;
    color: #D3DDE2;
    text-decoration: none;
}

/* Watermark */
.footer-watermark-wrap {
    position: absolute;
    top: 425px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.footer-watermark-svg {
    width: 1920px;
    max-width: 150%;
    height: auto;
    pointer-events: none;
    opacity: 0.8;
}

/* Service Tags Bar */
.footer-service-bar {
    position: relative;
    width: 100%;
    height: 95px;
    background-color: #001520;
    background-image: url('assets/images/footer-service-bar.svg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 20;
    margin-top: 100px;
}

.service-bar-scroll {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.service-bar-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    padding-right: 40px;
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-tag-star {
    font-size: 32px;
}

.service-tag-label {
    font-size: 32px;
    font-weight: 400;
}

.service-separator {
    color: #00FFA3;
    font-size: 32px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .footer-card {
        width: 95%;
    }

    .footer-nav-groups {
        gap: 40px;
    }

    .footer-cta-title,
    .footer-nav-title {
        font-size: 24px;
    }

    .service-tag-label,
    .service-tag-star,
    .service-separator {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .footer-card-top {
        flex-direction: column;
    }

    .footer-nav-groups {
        flex-direction: column;
    }

    .footer-card-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .ctm-projects-link {
        font-size: 16px;
    }
}

/* Responsive */
/* ==========================================
   HAMBURGER MENU
   ========================================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================
   RESPONSIVE - 1256px (Laptop nhỏ)
   ========================================== */
@media (max-width: 1256px) {
    .container {
        padding: 0 30px;
    }

    .stats-row {
        gap: 60px;
        margin-bottom: 80px;
    }

    .stat-number {
        font-size: 100px;
        letter-spacing: -5px;
    }

    .partners-logos {
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pain-points-container {
        gap: 40px;
    }

    .cards-overlay {
        left: -80px;
        width: 200px;
    }

    .main-quote {
        font-size: 36px;
    }

    .services-title {
        font-size: 36px;
    }

    .usp-grid {
        gap: 24px;
    }

    .usp-item {
        width: auto;
        flex: 1;
    }

    .case-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .testimonials-container {
        gap: 30px;
    }

    .testimonials-left {
        flex: 0 0 450px;
    }

    .testimonials-right {
        flex: 1;
    }

    .testimonial-featured {
        width: 100%;
    }

    .testimonial-image {
        width: 100%;
        height: auto;
        aspect-ratio: 682 / 479;
    }

    .workflow-grid {
        gap: 60px;
    }

    .workflow-col-left {
        margin-left: 200px;
    }

    .blog-grid {
        gap: 30px;
    }

    .blog-card {
        flex: 1;
    }

    .blog-image {
        width: 100%;
        height: auto;
        aspect-ratio: 401 / 219;
    }

    .blog-excerpt {
        width: 100%;
    }

    .blog-card-title {
        width: 100%;
    }

    .expert-wrap {
        min-height: auto;
    }

    .expert-portrait {
        width: 400px;
        height: 430px;
    }

    .expert-paragraph {
        width: 100%;
    }

    .footer-nav-groups {
        gap: 40px;
    }
}

/* ==========================================
   RESPONSIVE - 1024px (Tablet)
   ========================================== */
@media (max-width: 1024px) {

    /* Header */
    .header-left {
        gap: 20px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 80px;
        gap: 16px;
        z-index: 1000;
        opacity: 0.5;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.mobile-open {
        display: flex;
        opacity: 1;
    }

    .nav-menu.mobile-open .nav-item {
        font-size: 20px;
        padding: 10px 0;
    }

    /* Mobile Dropdown */
    .nav-dropdown-wrap {
        position: static;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-item.has-dropdown {
        justify-content: center;
    }

    .dropdown-mega {
        position: static;
        transform: none;
        padding-top: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        width: 90vw;
        max-width: 400px;
    }

    .nav-dropdown-wrap.open .dropdown-mega {
        display: block;
        margin-top: 10px;
    }

    .dropdown-mega-inner {
        flex-direction: column;
        min-width: auto;
        padding: 8px;
        border-radius: 14px;
    }

    .dropdown-col-left {
        min-width: auto;
        padding: 4px;
    }

    .dropdown-col-right {
        display: none !important;
    }

    .dropdown-sub {
        display: none !important;
    }

    .dropdown-mobile-sub {
        display: flex;
        flex-direction: column;
        padding-left: 12px;
        margin-top: 4px;
    }

    .dropdown-mobile-sub .dropdown-child-link {
        font-size: 14px;
        padding: 10px 14px;
        white-space: normal;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-mobile-sub .dropdown-child-link:last-child {
        border-bottom: none;
        margin-bottom: 5px;
    }

    .dropdown-parent.expanded>.dropdown-mobile-sub,
    .dropdown-parent.active>.dropdown-mobile-sub {
        display: flex;
    }

    .dropdown-parent {
        min-width: auto;
    }

    .dropdown-parent-link,
    .dropdown-link {
        font-size: 15px;
        padding: 12px 14px;
        white-space: normal;
    }

    .dropdown-child-link {
        font-size: 14px;
        padding: 10px 14px;
        white-space: normal;
    }

    .dropdown-child-arrow {
        transform: rotate(90deg);
    }

    .dropdown-parent.active>.dropdown-parent-link .dropdown-child-arrow,
    .dropdown-parent.expanded>.dropdown-parent-link .dropdown-child-arrow {
        transform: rotate(-90deg);
    }

    .consult-text {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 50px 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1.8px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        justify-content: center;
    }

    .image-wrapper {
        max-width: 400px;
    }

    /* Stats */
    .stats-partners {
        padding: 60px 0;
    }

    .stats-row {
        gap: 30px;
        margin-bottom: 60px;
    }

    .stat-number {
        font-size: 100px;
        letter-spacing: -3.6px;
    }

    .stat-text {
        font-size: 16px;
    }

    .partners-title {
        font-size: 32px;
        letter-spacing: -1.6px;
    }

    .partners-block {
        gap: 40px;
    }

    .partners-logos {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .partners-logos img {
        max-height: 45px;
    }

    /* Pain Points */
    .pain-points {
        padding: 60px 0;
    }

    .pain-points-container {
        flex-direction: column;
        gap: 40px;
    }

    .visual-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .cards-overlay {
        left: -40px;
        width: 160px;
        top: 50px;
    }

    .search-typewriter-overlay {
        top: calc(50px + 75px);
        left: calc(-40px + 18px);
        width: 130px;
    }

    .search-typewriter-text,
    .search-typewriter-cursor {
        font-size: 16px;
    }

    .gradient-decoration {
        width: 80px;
        height: 80px;
        right: -20px;
        bottom: 40px;
    }

    .decoration-icon {
        width: 30px;
    }

    .pain-points-list {
        max-width: 100%;
        width: 100%;
    }

    .pain-item p {
        font-size: 22px;
        text-align: center;
    }

    /* Quote */
    .quote-empathy {
        padding: 60px 0;
    }

    .main-quote {
        font-size: 30px;
    }

    /* Services */
    .services {
        padding: 60px 0;
    }

    .services-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card {
        min-height: auto;
        padding: 30px 16px;
    }

    .service-card .card-title {
        font-size: 22px;
        min-height: auto;
    }

    /* USP */
    .usp-section {
        padding: 80px 0;
    }

    .usp-grid {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .usp-item {
        width: calc(50% - 15px);
        flex: none;
    }

    .usp-item:nth-child(1),
    .usp-item:nth-child(3) {
        margin-top: 0;
    }

    .usp-desc {
        font-size: 16px;
    }

    /* Case Studies */
    .case-studies {
        padding: 60px 0;
    }

    .case-header {
        margin-bottom: 40px;
    }

    .case-title {
        font-size: 32px;
        letter-spacing: -1.6px;
    }

    .case-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .project-1 {
        grid-column: 1 / span 2;
        grid-row: 1;
    }

    .project-2 {
        grid-column: 1;
        grid-row: 2;
    }

    .project-3 {
        grid-column: 2;
        grid-row: 2;
    }

    .project-4 {
        grid-column: 1 / span 2;
        grid-row: 3;
    }

    .project-5 {
        grid-column: 1 / span 2;
        grid-row: 4;
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-container {
        flex-direction: column;
        gap: 40px;
    }

    .testimonials-left {
        flex: none;
        width: 100%;
    }

    .testimonials-title {
        font-size: 32px;
        letter-spacing: -1.6px;
    }

    .testimonial-featured {
        width: 100%;
    }

    .quote-text {
        font-size: 22px;
    }

    .testimonials-right {
        flex: none;
        width: 100%;
    }

    .testimonials-subtitle {
        text-align: left;
        margin-left: 0;
        max-width: 100%;
    }

    .testimonial-image {
        width: 100%;
        height: auto;
        aspect-ratio: 682 / 479;
    }

    /* Workflow */
    .workflow {
        padding: 60px 0;
    }

    .workflow-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .workflow-col-left,
    .workflow-col-right {
        display: contents;
    }

    .workflow-step {
        max-width: 100%;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    .workflow-step:last-child {
        border-bottom: none;
    }

    .step-num {
        font-size: 64px;
        margin-bottom: -15px;
        opacity: 0.8;
    }

    .step-name {
        font-size: 22px;
    }

    .step-text {
        width: 100%;
        font-size: 16px;
    }

    .workflow-line-mid {
        display: none;
    }

    /* FAQ */
    .faq {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 32px;
        letter-spacing: -1.6px;
        margin-bottom: 40px;
    }

    .faq-q-text {
        font-size: 24px;
    }

    .faq-answer p {
        font-size: 32px;
    }

    /* Expert */
    .expert-wrap {
        flex-wrap: wrap;
        gap: 30px;
        min-height: auto;
    }

    .expert-label {
        width: 100%;
    }

    .expert-bio {
        flex: 1;
        min-width: 280px;
    }

    .expert-portrait {
        width: 350px;
        height: 370px;
    }

    .expert-paragraph {
        width: 100%;
    }

    /* Blog */
    .blog {
        padding: 60px 0;
    }

    .blog-title {
        font-size: 32px;
        letter-spacing: -1.6px;
    }

    .blog-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .blog-card {
        flex: 0 0 calc(50% - 15px);
    }

    .blog-image {
        width: 100%;
        height: auto;
        aspect-ratio: 401 / 219;
    }

    .blog-excerpt {
        width: 100%;
        font-size: 16px;
    }

    .blog-card-title {
        width: 100%;
        font-size: 22px;
    }

    /* Footer */
    .footer-card {
        width: 95%;
    }

    .footer-nav-groups {
        gap: 40px;
    }

    .footer-cta-title,
    .footer-nav-title {
        font-size: 24px;
    }

    .service-tag-label,
    .service-tag-star,
    .service-separator {
        font-size: 18px;
    }
}

/* ==========================================
   RESPONSIVE - 768px (Mobile)
   ========================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Header */
    .hotline-number {
        display: none;
    }

    .hotline-btn {
        padding: 8px;
        border-radius: 50%;
    }

    .logo img {
        width: 150px;
    }

    /* Hero */
    .hero {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: -1.4px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    .image-wrapper {
        max-width: 300px;
    }

    /* Stats */
    .stats-partners {
        padding: 40px 0;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .stat-number {
        font-size: 100px;
        letter-spacing: -3px;
    }

    .stat-line {
        width: 200px;
    }

    .partners-title {
        font-size: 24px;
        text-align: center;
    }

    .partners-block {
        gap: 30px;
    }

    .partners-logos {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 30px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }

    .partners-logos::-webkit-scrollbar {
        display: none;
    }

    .partners-logos img {
        max-height: 40px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    /* Pain Points */
    .pain-points {
        padding: 40px 0;
    }

    .cards-overlay {
        display: block;
        left: -20px;
        width: 150px;
        top: 40px;
    }

    .search-typewriter-overlay {
        display: flex;
        top: calc(40px + 65px);
        left: calc(-20px + 16px);
        width: 120px;
    }

    .search-typewriter-text,
    .search-typewriter-cursor {
        font-size: 14px;
    }

    .gradient-decoration {
        width: 60px;
        height: 60px;
        right: -10px;
        bottom: 20px;
    }

    .pain-item p {
        font-size: 18px;
        margin-bottom: 16px;
        text-align: left;
    }

    .pain-item .divider {
        opacity: 0.2;
    }

    /* Quote */
    .quote-empathy {
        padding: 40px 0;
    }

    .empathy-title {
        font-size: 16px;
    }

    .main-quote {
        font-size: 22px;
    }

    /* Services */
    .services {
        padding: 40px 0;
    }

    .services-title {
        font-size: 24px;
        margin-bottom: 30px;
        letter-spacing: -1.2px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px 16px;
    }

    .service-card .card-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .service-card .card-desc {
        margin-bottom: 24px;
    }

    .service-btn {
        font-size: 16px;
        padding: 10px 24px;
    }

    /* USP */
    .usp-section {
        padding: 40px 0;
    }

    .usp-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .usp-grid {
        flex-direction: column;
        gap: 24px;
    }

    .usp-item {
        width: 100%;
    }

    .usp-item:nth-child(1),
    .usp-item:nth-child(3) {
        margin-top: 0;
    }

    /* Case Studies */
    .case-studies {
        padding: 40px 0;
    }

    .case-header {
        margin-bottom: 24px;
    }

    .case-title {
        font-size: 24px;
    }

    .case-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-1 {
        grid-column: 1;
        grid-row: auto;
    }

    .project-2 {
        grid-column: 1;
        grid-row: auto;
    }

    .project-3 {
        grid-column: 1;
        grid-row: auto;
    }

    .project-4 {
        grid-column: 1;
        grid-row: auto;
    }

    .project-5 {
        grid-column: 1;
        grid-row: auto;
    }

    /* Testimonials */
    .testimonials {
        padding: 40px 0;
    }

    .testimonials-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .quote-mark {
        font-size: 50px;
    }

    .quote-text {
        font-size: 18px;
        padding-top: 35px;
    }

    .client-card {
        width: 100%;
    }

    /* Workflow */
    .workflow {
        padding: 40px 0;
    }

    .step-num {
        font-size: 56px;
        margin-bottom: -15px;
    }

    .step-name {
        font-size: 20px;
    }

    .step-text {
        font-size: 15px;
    }

    /* FAQ */
    .faq {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .faq-q-text {
        font-size: 18px;
    }

    .faq-toggle {
        width: 36px;
        height: 36px;
    }

    .faq-item.active .faq-toggle {
        width: 48px;
        height: 48px;
    }

    .faq-answer p {
        font-size: 22px;
    }

    /* Expert */
    .expert-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .expert-label {
        text-align: left;
    }

    .expert-bio {
        flex: none;
        width: 100%;
        text-align: left;
    }

    .expert-name {
        font-size: 26px;
    }

    .expert-portrait {
        width: 100%;
        height: auto;
        aspect-ratio: 550 / 580;
    }

    .expert-photo {
        border-radius: 12px;
    }

    /* Blog */
    .blog {
        padding: 40px 0;
    }

    .blog-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .blog-grid {
        flex-direction: column;
        gap: 24px;
    }

    .blog-card {
        flex: none;
        width: 100%;
    }

    .blog-card-title {
        font-size: 20px;
    }

    .blog-excerpt {
        font-size: 14px;
    }

    /* Footer */
    .footer {
        min-height: auto;
    }

    .footer-card {
        min-height: auto;
    }

    .footer-card-top {
        flex-direction: column;
    }

    .footer-nav-groups {
        flex-direction: column;
    }

    .footer-card-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-watermark-wrap {
        top: 300px;
    }

    .footer-service-bar {
        height: 60px;
        margin-top: 40px;
    }

    .footer-company-info {
        font-size: 14px;
    }

    .footer-cta-title {
        font-size: 20px;
    }

    .footer-nav-title {
        font-size: 20px;
    }

    .footer-nav-list a {
        font-size: 15px;
    }
}

/* ==========================================
   RESPONSIVE - 480px (Small Mobile)
   ========================================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .stat-number {
        font-size: 100px;
        letter-spacing: -2.5px;
    }

    .pain-item p {
        font-size: 16px;
        line-height: 1.4;
    }

    .main-quote {
        font-size: 24px;
    }

    .faq-q-text {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 18px;
    }

    .step-num {
        font-size: 44px;
    }

    .testimonials-title {
        font-size: 24px;
    }

    .quote-text {
        font-size: 16px;
    }
}