/* ============================================
   TBD AGENCY LANDING PAGE
   Theme matched exactly from tbdagency.id
   Fonts: Manrope (body), Inter (headings)
   Primary: #0074DA, Dark: #010D26
   ============================================ */

/* --- VARIABLES --- */
:root {
    --primary: #0074DA;
    --primary-dark: #010D26;
    --primary-deep: #052745;
    --primary-light: #E6F3FF;
    --primary-lighter: #EFF4FC;
    --blue-mid: #084DB3;
    --blue-link: #003E74;
    --accent-orange: #FF9900;
    --accent-green: #25D366;
    --white: #FFFFFF;
    --black: #000000;
    --text-body: #2d2936;
    --text-gray: #4C4C4C;
    --text-heading: #010D26;
    --text-muted: #989898;
    --text-light-blue: #7FC0FB;
    --bg-light: #EFF4FC;
    --bg-blue-light: #E6F3FF;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-sm: 8px;
    --border-radius-pill: 99px;
    --border-radius-btn: 6px;
    --shadow-soft: 1px 4px 5px 0px rgba(0,0,0,0.09);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --gradient-blue: linear-gradient(136deg, rgba(0, 101, 189, 1) 25%, rgba(1, 13, 38, 1) 100%);
}

/* --- RESET --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- BUTTONS (Matched from TBD) --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    padding: 0 20px;
    height: 54px;
    line-height: 52px;
    border: none;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--blue-mid);
}

.btn-light {
    background: var(--bg-light);
    color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.btn-light:hover {
    background: var(--primary-light);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--bg-light);
}

.btn-orange {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-orange:hover {
    background: #e68a00;
}

.btn-wa {
    background: var(--accent-green);
    color: var(--white);
}

.btn-wa:hover {
    background: #1fb855;
}

.btn-lg {
    font-size: 20px;
    height: 54px;
    line-height: 52px;
    padding: 0 28px;
}

.btn-sm {
    font-size: 16px;
    height: 46px;
    line-height: 44px;
    padding: 0 18px;
}

.btn-pill {
    border-radius: var(--border-radius-pill);
}

.btn i {
    font-size: 1.1em;
}

/* --- TEXT STYLES --- */
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.text-gray { color: var(--text-gray); }

/* --- SECTION HEADER --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-header h2.text-white {
    color: var(--white);
}

.section-subtitle {
    font-size: 19px;
    color: var(--text-gray);
    max-width: 640px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.7;
}

.section-subtitle.text-white {
    color: rgba(255,255,255,0.75);
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 20px;
    border-radius: var(--border-radius-pill);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label.text-white {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
}

/* ============================================
   NAVBAR (Matched from TBD - rounded bottom)
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.navbar .nav-inner {
    background: var(--white);
    padding: 0 40px;
    border-bottom-left-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

.navbar.scrolled .nav-inner {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    max-width: 1280px;
    margin: 0 auto;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex: 1;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    font-weight: 800;
}

.nav-cta {
    height: 46px !important;
    line-height: 46px !important;
    font-size: 16px !important;
    padding: 0 18px !important;
    border-radius: var(--border-radius-btn) !important;
}

.nav-cta .fa-whatsapp {
    color: var(--accent-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-heading);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 24px 20px;
    z-index: 999;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-bottom-left-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: var(--text-body);
    padding: 14px 0;
    border-bottom: 1px solid var(--bg-light);
}

.mobile-link:hover {
    color: var(--primary);
}

.mobile-cta {
    margin-top: 16px;
    justify-content: center;
    width: 100%;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding-top: 90px;
    background: var(--white);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 90px);
    padding: 60px 0;
}

.hero-content {
    padding-right: 20px;
    padding-bottom: 40px;
}

.hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 8px 22px;
    border-radius: var(--border-radius-pill);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-content h1 .text-primary {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 44px;
    max-width: 520px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-image {
    padding-left: 20px;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
}

/* Partners */
.hero-partners {
    padding: 52px 0;
    background: var(--primary);
}

.partners-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    text-align: center;
    margin-bottom: 24px;
}

.partners-scroll {
    overflow: hidden;
    width: 100%;
}

.partners-track {
    display: flex;
    gap: 56px;
    align-items: center;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.partners-track img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s;
}

.partners-track img:hover {
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   PROBLEMS SECTION
   ============================================ */
.section-problems {
    padding: 100px 0;
    background: var(--white);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.problem-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.problem-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.problem-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

/* ============================================
   IMPACT SECTION (Dark gradient bg)
   ============================================ */
.section-impact {
    padding: 100px 0;
    background: var(--gradient-blue);
    color: var(--white);
}

.impact-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 56px;
    align-items: start;
    margin-bottom: 56px;
}

.impact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: var(--border-radius);
    margin-bottom: 28px;
}

.impact-short {
    background: var(--accent-orange);
    color: var(--white);
}

.impact-long {
    background: rgba(180,0,0,0.8);
    color: var(--white);
}

.impact-header i {
    font-size: 22px;
}

.impact-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.01em;
}

.impact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.impact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}

.impact-list li i {
    color: var(--accent-orange);
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.impact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.divider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
}

.impact-cta {
    text-align: center;
}

/* ============================================
   SOLUTION 1
   ============================================ */
.section-solution1 {
    padding: 100px 0;
    background: var(--bg-light);
}

.solution1-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.sol1-card {
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.sol1-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.sol1-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.sol1-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.sol1-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 500;
}

/* ============================================
   TBD HADIR
   ============================================ */
.section-tbd {
    padding: 100px 0;
    background: var(--white);
}

.tbd-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tbd-text h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.tbd-desc {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 32px;
    font-weight: 500;
}

.tbd-services {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.tbd-service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-heading);
    transition: all 0.3s ease;
}

.tbd-service-item:hover {
    background: var(--primary-light);
    transform: translateX(4px);
}

.tbd-service-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.tbd-img-card {
    position: relative;
}

.tbd-main-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

.tbd-floating-card {
    position: absolute;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    background: var(--white);
}

.tbd-floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-1 {
    width: 180px;
    top: -20px;
    right: -20px;
    animation: floatSmooth 4s ease-in-out infinite;
}

.card-2 {
    width: 160px;
    bottom: -15px;
    left: -20px;
    animation: floatSmooth 4s ease-in-out infinite 2s;
}

@keyframes floatSmooth {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   WHY TBD - USP
   ============================================ */
.section-why {
    padding: 100px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.usp-card {
    padding: 40px 28px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.usp-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,116,218,0.2);
}

.usp-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.usp-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--white);
    letter-spacing: -0.01em;
}

.usp-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-weight: 500;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.section-portfolio {
    padding: 100px 0;
    background: var(--bg-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.portfolio-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.portfolio-img {
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 28px;
}

.portfolio-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.portfolio-info p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 500;
}

/* ============================================
   TEAM
   ============================================ */
.section-team {
    padding: 100px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 860px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.team-card h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.team-card p {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 600;
}

/* ============================================
   CTA FINAL (Gradient background like TBD)
   ============================================ */
.section-cta {
    padding: 120px 0;
    background: var(--gradient-blue);
    position: relative;
    overflow: hidden;
}

.cta-box {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.cta-box p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 44px;
    line-height: 1.8;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER (Matched exactly from tbdagency.id)
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.2fr 1fr 0.2fr 1fr;
    gap: 0;
    padding-bottom: 52px;
}

.footer-spacer-col {
    display: block;
}

.footer-logo-img {
    width: 220px;
    margin-bottom: 30px;
}

.footer-address {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
    padding: 0 5px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.footer-col p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 4px;
}

.footer-gap {
    height: 24px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.social-icons a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.social-icons img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 0;
    display: flex;
    justify-content: flex-end;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 0;
    text-align: right;
}

/* ============================================
   FLOATING WA BUTTON
   ============================================ */
.floating-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.floating-wa:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 46px;
    }

    .section-header h2,
    .tbd-text h2 {
        font-size: 34px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .cta-box h2 {
        font-size: 38px;
    }

    .cta-box p {
        font-size: 18px;
    }

    .solution1-grid,
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tbd-content {
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-spacer-col {
        display: none;
    }
}

/* Tablet Small / Mobile Landscape */
@media (max-width: 849px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        height: 70px;
    }

    .mobile-menu {
        top: 70px;
    }

    html {
        scroll-padding-top: 70px;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 48px 0 20px;
        gap: 40px;
    }

    .hero-content {
        padding-right: 0;
        padding-bottom: 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-label {
        font-size: 12px;
        padding: 6px 16px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-image {
        padding-left: 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        justify-content: center;
        width: 100%;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .impact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .impact-divider {
        padding-top: 0;
    }

    .divider-arrow {
        transform: rotate(90deg);
    }

    .solution1-grid,
    .usp-grid {
        grid-template-columns: 1fr;
    }

    .tbd-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tbd-image {
        order: -1;
    }

    .card-1 {
        width: 120px;
        top: -10px;
        right: -5px;
    }

    .card-2 {
        width: 110px;
        bottom: -10px;
        left: -5px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        justify-content: center;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-spacer-col {
        display: none;
    }

    .footer-bottom {
        justify-content: center;
    }

    .footer-bottom p {
        text-align: center;
    }

    .section-problems,
    .section-impact,
    .section-solution1,
    .section-tbd,
    .section-why,
    .section-portfolio,
    .section-team {
        padding: 72px 0;
    }
}

/* Mobile Portrait */
@media (max-width: 549px) {
    .hero-content h1 {
        font-size: 32px;
        letter-spacing: -0.01em;
    }

    .hero-label {
        font-size: 11px;
        padding: 5px 14px;
    }

    .hero-desc {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 32px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .section-label {
        font-size: 11px;
        padding: 5px 14px;
        margin-bottom: 12px;
    }

    .tbd-text h2 {
        font-size: 26px;
    }

    .tbd-desc {
        font-size: 15px;
    }

    .problem-card,
    .sol1-card {
        padding: 28px 24px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .cta-box p {
        font-size: 15px;
    }

    .section-cta {
        padding: 64px 0;
    }

    .partners-track img {
        height: 36px;
    }

    .partners-track {
        gap: 32px;
    }

    .floating-wa {
        width: 52px;
        height: 52px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
    }

    .team-img {
        width: 90px;
        height: 90px;
    }

    .team-card h4 {
        font-size: 16px;
    }

    .team-card p {
        font-size: 12px;
    }

    .btn-lg {
        font-size: 16px;
        height: 46px;
        line-height: 44px;
        padding: 0 18px;
    }

    .sol1-number {
        font-size: 40px;
    }

    .footer-logo-img {
        width: 160px;
    }

    .impact-header h3 {
        font-size: 17px;
    }

    .impact-list li {
        font-size: 14px;
    }
}
