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

:root {
    /* Color Palette */
    --bg-main: #ffffff;
    --bg-soft: #f3f7fa;
    --bg-card: rgba(255, 255, 255, 0.85);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-white: #ffffff;
    
    --primary-blue: #0077b6;
    --accent-teal: #00b4d8;
    --accent-coral: #ff7043;
    --accent-coral-hover: #f4511e;
    
    --border-soft: rgba(0, 119, 182, 0.08);
    --border-accent: rgba(0, 119, 182, 0.15);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing & Utilities */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow-soft: 0 10px 30px -10px rgba(0, 74, 111, 0.05);
    --shadow-medium: 0 20px 40px -15px rgba(0, 74, 111, 0.1);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
}

/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Rules - NO TEXT SHADOWS */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Reusable Components & Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-bounce);
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent-coral);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--accent-coral-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(255, 112, 67, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: rgba(0, 119, 182, 0.05);
    transform: translateY(-2px);
}

/* Header & Navigation Styling */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.site-header.scrolled .nav-container {
    padding: 0.75rem 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-teal);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-blue);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-quick {
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 0; /* Let the stats banner provide bottom padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(0, 119, 182, 0.05) 0%, transparent 60%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(rgba(0, 119, 182, 0.03) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
}

.hero-tagline {
    background-color: rgba(0, 180, 216, 0.08);
    color: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats-banner {
    width: 100%;
    background-color: var(--bg-soft);
    padding: 3.5rem 0;
    z-index: 10;
    margin-top: auto;
}

.stats-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-number-wrapper {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 800;
}

.stat-suffix {
    font-size: 1.6rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illust-bg {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.08), rgba(0, 180, 216, 0.12));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: absolute;
    z-index: -1;
    animation: blob-animate 12s infinite alternate ease-in-out;
}

.illust-img-wrapper {
    width: 320px;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--bg-main);
    box-shadow: var(--shadow-medium);
    transform: rotate(2deg);
    transition: var(--transition-smooth);
}

.illust-img-wrapper:hover {
    transform: rotate(0) scale(1.03);
}

.illust-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-card {
    position: absolute;
    background-color: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-accent);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-card.badge-1 {
    bottom: 20px;
    left: -40px;
    animation: float-y 5s infinite alternate ease-in-out;
}

.badge-card.badge-2 {
    top: 30px;
    right: -20px;
    animation: float-y 5s infinite alternate-reverse ease-in-out 1s;
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 112, 67, 0.1);
    color: var(--accent-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.badge-text h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.badge-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Sections General Layout */
.section {
    padding: 100px 0;
    position: relative;
}

.section-bg-soft {
    background-color: var(--bg-soft);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4.5rem;
}

.section-subtitle {
    color: var(--accent-teal);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-teal);
    box-shadow: var(--shadow-medium);
}

/* Featured Article Card */
.featured-article-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    margin-bottom: 3rem;
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
    transition: var(--transition-bounce);
}

.featured-article-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-teal);
    box-shadow: var(--shadow-medium);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.08), rgba(0, 180, 216, 0.08));
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-bounce);
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link i {
    transition: var(--transition-bounce);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* Trust Badges / Keunggulan */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.trust-card {
    background-color: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-soft);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
}

.trust-card:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-teal);
    transform: translateY(-2px);
}

.trust-card:hover .trust-icon {
    background-color: var(--accent-teal);
    color: white;
}

.trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 180, 216, 0.08);
    color: var(--accent-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.25rem;
    transition: var(--transition-smooth);
}

.trust-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.trust-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* About Page Grid & Image Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
}

.about-img-box {
    width: 100%;
    max-width: 480px;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--bg-main);
    box-shadow: var(--shadow-medium);
    margin: 0 auto;
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Coverage Area Section */
.coverage {
    overflow: hidden;
}

.coverage-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.coverage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.coverage-item {
    background-color: var(--bg-soft);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid var(--accent-teal);
}

.coverage-item i {
    color: var(--accent-teal);
}

.coverage-map-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-soft);
    height: 400px;
}

.coverage-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Workflow Section (Cara Kerja) */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    position: relative;
}

.step-card {
    position: relative;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--bg-soft);
    border: 2px solid var(--border-soft);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: var(--transition-bounce);
}

.step-card:hover .step-number {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.step-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-soft);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question i {
    transition: var(--transition-smooth);
    color: var(--primary-blue);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.faq-item.active {
    background-color: var(--bg-card);
    border: 1px solid var(--border-accent);
    box-shadow: var(--shadow-soft);
}

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

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 200px;
}

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: var(--radius-lg);
    padding: 5rem 3rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.cta-banner h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn {
    border: 2px solid white;
}

/* Footer Section */
.site-footer {
    background-color: var(--bg-soft);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-soft);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-teal);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--primary-blue);
    transform: translateX(4px);
}

.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-item {
    display: flex;
    gap: 12px;
}

.info-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-top: 4px;
}

.info-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.info-item a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid var(--border-soft);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition-bounce);
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* Keyframe Animations */
@keyframes blob-animate {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    100% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

@keyframes float-y {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 1.85rem; }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats-banner {
        position: relative;
        margin-top: 3rem;
        border-bottom: 1px solid var(--border-soft);
    }
    
    .stats-banner-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-illustration {
        order: -1;
    }
    
    .coverage-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .featured-article-card {
        grid-template-columns: 1fr;
    }
    
    .featured-article-card > div:first-child {
        order: 2;
    }
    
    .featured-article-card > div:last-child {
        order: 1;
        min-height: 260px; /* Adjust height slightly on tablet/mobile for better aspect ratio */
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-main);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        border-bottom: 0px solid var(--border-soft);
        box-shadow: var(--shadow-medium);
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        max-height: 450px;
        border-bottom: 1px solid var(--border-soft);
    }
    
    .nav-link {
        padding: 1.25rem 2rem;
        display: block;
        border-bottom: 1px solid var(--border-soft);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 110px;
        padding-bottom: 0;
    }
    
    .illust-bg {
        width: 280px;
        height: 280px;
    }
    
    .illust-img-wrapper {
        width: 240px;
        height: 300px;
        margin-bottom: 1rem;
    }
    
    .hero-illustration {
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 2rem;
    }
    
    .badge-card {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 280px;
        box-sizing: border-box;
        animation: none !important;
        margin: 0 auto;
    }
    
    .trust-grid {
        margin-top: 0;
        padding-top: 40px;
    }
    
    .about-img-box {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1, .hero-title {
        font-size: 2.1rem !important;
    }
    h2 {
        font-size: 1.6rem !important;
    }
    .container {
        padding: 0 1.25rem;
    }
    .btn {
        white-space: nowrap !important;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.85rem !important;
    }
}
