/* ============================================
   TBD AGENCY LANDING PAGE - BRUTALIST/CARTOON THEME
   Colors matched from tbdagency.id
   ============================================ */

/* --- VARIABLES --- */
:root {
    --primary: #0074DA;
    --primary-dark: #010D26;
    --primary-light: #E6F3FF;
    --blue-mid: #084DB3;
    --blue-deep: #052745;
    --accent-yellow: #FFD600;
    --accent-red: #FF0000;
    --accent-orange: #FF9900;
    --white: #FFFFFF;
    --black: #000000;
    --gray-light: #EFF4FC;
    --gray-mid: #4C4C4C;
    --gray-text: #334862;
    --border-thick: 3px solid var(--black);
    --border-cartoon: 4px solid var(--black);
    --shadow-cartoon: 6px 6px 0px var(--black);
    --shadow-cartoon-sm: 4px 4px 0px var(--black);
    --shadow-cartoon-lg: 8px 8px 0px var(--black);
    --shadow-cartoon-blue: 6px 6px 0px var(--primary);
    --shadow-cartoon-yellow: 6px 6px 0px var(--accent-yellow);
    --shadow-cartoon-red: 6px 6px 0px var(--accent-red);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 0px;
    --radius-sm: 0px;
}

/* --- RESET --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--primary-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- BUTTONS (CARTOON/BRUTALIST THEME) --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 28px;
    border: var(--border-cartoon);
    cursor: pointer;
    transition: all 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.btn:hover {
    transform: translate(-2px, -2px);
}

.btn:active {
    transform: translate(4px, 4px);
    box-shadow: none !important;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--black);
    box-shadow: var(--shadow-cartoon);
}

.btn-primary:hover {
    box-shadow: 8px 8px 0px var(--black);
}

.btn-outline {
    background: var(--white);
    color: var(--black);
    box-shadow: var(--shadow-cartoon);
}

.btn-outline:hover {
    background: var(--gray-light);
    box-shadow: 8px 8px 0px var(--black);
}

.btn-danger {
    background: var(--accent-red);
    color: var(--white);
    box-shadow: var(--shadow-cartoon);
}

.btn-danger:hover {
    box-shadow: 8px 8px 0px var(--black);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 6px 6px 0px rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    box-shadow: 8px 8px 0px rgba(255,255,255,0.4);
}

.btn-lg {
    font-size: 17px;
    padding: 16px 32px;
}

.btn-xl {
    font-size: 19px;
    padding: 18px 40px;
}

/* --- BADGE CARTOON --- */
.badge-cartoon {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    padding: 8px 20px;
    border: 3px solid var(--black);
    background: var(--accent-yellow);
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-cartoon-sm);
    margin-bottom: 16px;
}

.badge-cartoon.badge-red {
    background: var(--accent-red);
    color: var(--white);
}

.badge-cartoon.badge-blue {
    background: var(--primary);
    color: var(--white);
}

.badge-cartoon.badge-yellow {
    background: var(--accent-yellow);
    color: var(--black);
}

/* --- TEXT HIGHLIGHTS --- */
.highlight-red {
    background: var(--accent-red);
    color: var(--white);
    padding: 2px 12px;
    display: inline-block;
}

.highlight-yellow {
    background: var(--accent-yellow);
    color: var(--black);
    padding: 2px 12px;
    display: inline-block;
}

.highlight-blue {
    color: var(--primary);
}

/* --- SECTION HEADER --- */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-mid);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    border-bottom: var(--border-thick);
    padding: 12px 0;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-yellow);
    transition: width 0.2s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    font-size: 14px !important;
    padding: 10px 20px !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--black);
    transition: all 0.3s;
}

.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: 65px;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: var(--border-thick);
    padding: 24px;
    z-index: 999;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 2px solid var(--gray-light);
    text-transform: uppercase;
}

.mobile-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding-top: 100px;
    background: var(--white);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: 80vh;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    padding: 8px 20px;
    border: 3px solid var(--black);
    background: var(--accent-yellow);
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: var(--shadow-cartoon-sm);
    margin-bottom: 24px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 18px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-img-wrapper {
    position: relative;
}

.hero-img-wrapper img {
    border: var(--border-cartoon);
    box-shadow: var(--shadow-cartoon-lg);
    background: var(--primary-light);
}

.hero-sticker {
    position: absolute;
    width: 64px;
    height: 64px;
    border: 3px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-cartoon-sm);
    animation: float 3s ease-in-out infinite;
}

.sticker-1 {
    top: -20px;
    right: -20px;
    background: var(--accent-yellow);
    color: var(--black);
}

.sticker-2 {
    bottom: 20px;
    left: -20px;
    background: var(--accent-red);
    color: var(--white);
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Partners */
.hero-partners {
    padding: 40px 0;
    border-top: var(--border-thick);
    margin-top: 40px;
    background: var(--gray-light);
    border-bottom: var(--border-thick);
}

.partners-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-mid);
    text-align: center;
    margin-bottom: 20px;
}

.partners-scroll {
    overflow: hidden;
    width: 100%;
}

.partners-track {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.partners-track img {
    height: 48px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.partners-track img:hover {
    filter: grayscale(0%);
    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: 24px;
}

.problem-card {
    padding: 36px;
    border: var(--border-cartoon);
    background: var(--white);
    box-shadow: var(--shadow-cartoon);
    transition: all 0.2s;
}

.problem-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px var(--black);
}

.problem-icon {
    width: 56px;
    height: 56px;
    border: 3px solid var(--black);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-cartoon-sm);
}

.problem-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.problem-card p {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   IMPACT SECTION
   ============================================ */
.section-impact {
    padding: 100px 0;
    background: var(--primary-dark);
    color: var(--white);
    position: relative;
}

.section-impact .section-header h2 {
    color: var(--white);
}

.section-impact .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.impact-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 48px;
}

.impact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border: 3px solid var(--white);
    margin-bottom: 28px;
    font-family: var(--font-heading);
}

.impact-short {
    background: var(--accent-orange);
    color: var(--black);
    box-shadow: 4px 4px 0px var(--accent-yellow);
}

.impact-long {
    background: var(--accent-red);
    color: var(--white);
    box-shadow: 4px 4px 0px rgba(255,0,0,0.5);
}

.impact-header i {
    font-size: 22px;
}

.impact-header h3 {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.impact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.impact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.impact-list li i {
    color: var(--accent-red);
    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: 56px;
    height: 56px;
    border: 3px solid var(--white);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    box-shadow: var(--shadow-cartoon-sm);
}

.impact-cta {
    text-align: center;
}

/* ============================================
   SOLUTION 1
   ============================================ */
.section-solution1 {
    padding: 100px 0;
    background: var(--white);
}

.solution1-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sol1-card {
    padding: 36px 28px;
    border: var(--border-cartoon);
    background: var(--white);
    box-shadow: var(--shadow-cartoon);
    position: relative;
    transition: all 0.2s;
}

.sol1-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px var(--black);
}

.sol1-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 16px;
    -webkit-text-stroke: 2px var(--primary);
}

.sol1-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sol1-card p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
}

/* ============================================
   TBD HADIR
   ============================================ */
.section-tbd {
    padding: 100px 0;
    background: var(--primary-light);
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
}

.tbd-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.tbd-text h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.tbd-desc {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 28px;
}

.tbd-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.tbd-service-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border: 3px solid var(--black);
    background: var(--white);
    box-shadow: var(--shadow-cartoon-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.15s;
}

.tbd-service-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--black);
    background: var(--accent-yellow);
}

.tbd-service-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.tbd-img-card {
    position: relative;
}

.tbd-main-img {
    border: var(--border-cartoon);
    box-shadow: var(--shadow-cartoon-lg);
    background: var(--white);
}

.tbd-floating-card {
    position: absolute;
    border: 3px solid var(--black);
    background: var(--white);
    box-shadow: var(--shadow-cartoon);
    overflow: hidden;
}

.tbd-floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-1 {
    width: 180px;
    top: -30px;
    right: -30px;
    animation: float 4s ease-in-out infinite;
}

.card-2 {
    width: 160px;
    bottom: -20px;
    left: -30px;
    animation: float 4s ease-in-out infinite 2s;
}

/* ============================================
   WHY TBD - USP
   ============================================ */
.section-why {
    padding: 100px 0;
    background: var(--white);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.usp-card {
    padding: 36px 28px;
    border: var(--border-cartoon);
    background: var(--white);
    box-shadow: var(--shadow-cartoon);
    text-align: center;
    transition: all 0.2s;
}

.usp-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px var(--primary);
    border-color: var(--primary);
}

.usp-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border: 3px solid var(--black);
    background: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-cartoon-sm);
}

.usp-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.usp-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.usp-card p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.7;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.section-portfolio {
    padding: 100px 0;
    background: var(--gray-light);
    border-top: var(--border-thick);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    border: var(--border-cartoon);
    background: var(--white);
    box-shadow: var(--shadow-cartoon);
    overflow: hidden;
    transition: all 0.2s;
}

.portfolio-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px var(--black);
}

.portfolio-img {
    border-bottom: var(--border-cartoon);
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 24px;
}

.portfolio-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.portfolio-info p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* ============================================
   TEAM
   ============================================ */
.section-team {
    padding: 100px 0;
    background: var(--white);
    border-top: var(--border-thick);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    border: var(--border-cartoon);
    background: var(--white);
    padding: 32px 24px;
    box-shadow: var(--shadow-cartoon);
    transition: all 0.2s;
}

.team-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px var(--primary);
}

.team-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border: 3px solid var(--black);
    overflow: hidden;
    border-radius: 50%;
    box-shadow: var(--shadow-cartoon-sm);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.team-card p {
    font-size: 14px;
    color: var(--gray-mid);
    font-weight: 500;
}

/* ============================================
   CTA FINAL
   ============================================ */
.section-cta {
    padding: 100px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border: 4px solid var(--accent-yellow);
    opacity: 0.2;
    transform: rotate(15deg);
}

.section-cta::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border: 4px solid var(--primary);
    opacity: 0.2;
    transform: rotate(-20deg);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 8px;
}

.cta-box h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER (Matched from tbdagency.id)
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 0;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer-logo-img {
    max-width: 200px;
    margin-bottom: 24px;
}

.footer-address {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-spacer {
    height: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.social-icons a:hover {
    border-color: var(--primary);
    background: var(--primary);
    transform: translate(-2px, -2px);
    box-shadow: 3px 3px 0px rgba(255,255,255,0.2);
}

.social-icons img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   FLOATING WA BUTTON
   ============================================ */
.floating-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border: 3px solid var(--black);
    box-shadow: var(--shadow-cartoon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    z-index: 999;
    transition: all 0.2s;
    animation: pulse 2s infinite;
}

.floating-wa:hover {
    transform: translate(-3px, -3px) scale(1.05);
    box-shadow: 8px 8px 0px var(--black);
}

@keyframes pulse {
    0%, 100% { box-shadow: var(--shadow-cartoon); }
    50% { box-shadow: 6px 6px 0px var(--black), 0 0 0 8px rgba(37, 211, 102, 0.25); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .solution1-grid,
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tbd-content {
        gap: 40px;
    }

    .tbd-text h2 {
        font-size: 34px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .cta-box h3 {
        font-size: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 20px;
        gap: 32px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-image {
        order: -1;
    }

    .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: 24px;
    }

    .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: 32px;
    }

    .tbd-image {
        order: -1;
    }

    .card-1 {
        width: 120px;
        top: -15px;
        right: -10px;
    }

    .card-2 {
        width: 110px;
        bottom: -10px;
        left: -10px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .cta-box h3 {
        font-size: 22px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        justify-content: center;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-problems,
    .section-impact,
    .section-solution1,
    .section-tbd,
    .section-why,
    .section-portfolio,
    .section-team,
    .section-cta {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .btn-xl {
        font-size: 16px;
        padding: 14px 28px;
    }

    .btn-lg {
        font-size: 15px;
        padding: 14px 24px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .problem-card,
    .sol1-card,
    .usp-card {
        padding: 24px 20px;
    }

    .problem-card h3,
    .sol1-card h3,
    .usp-card h3 {
        font-size: 17px;
    }

    .tbd-text h2 {
        font-size: 28px;
    }

    .tbd-desc {
        font-size: 14px;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .cta-box h3 {
        font-size: 20px;
    }

    .cta-box p {
        font-size: 14px;
    }

    .partners-track img {
        height: 36px;
    }

    .partners-track {
        gap: 32px;
    }

    .floating-wa {
        width: 56px;
        height: 56px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

    .sol1-number {
        font-size: 44px;
    }

    .impact-header h3 {
        font-size: 17px;
    }

    .impact-list li {
        font-size: 14px;
    }

    .team-grid {
        max-width: 260px;
    }

    .team-card {
        padding: 24px 16px;
    }

    .team-img {
        width: 100px;
        height: 100px;
    }
}
