/* 
    CV GLOBAL DIRGA - DESIGN SYSTEM REDESIGN
    Theme: White Gold (Emas Putih) & Premium Reference Layout
*/

:root {
    /* Color Palette */
    --clr-gold: #c4a56a;
    --clr-gold-light: #e5d5b7;
    --clr-gold-dark: #8e724b;
    --clr-white-gold: #fdfdfb;
    --clr-platinum: #f5f5f0;
    --clr-white: #ffffff;
    --clr-black: #0b1c1c;
    --clr-dark: #122a2a;
    --clr-gray: #666666;
    --clr-gray-light: #eef1f1;

    /* Gradients */
    --grad-gold: linear-gradient(135deg, #c4a56a 0%, #e5d5b7 50%, #c4a56a 100%);
    --grad-dark: linear-gradient(135deg, #0b1c1c 0%, #122a2a 100%);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;

    /* Spacing & Borders */
    --container-width: 1300px;
    --section-padding: 120px;
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.03);
    --shadow-premium: 0 20px 60px rgba(11, 28, 28, 0.08);
}

/* --- Global Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--clr-black);
    background-color: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.gold {
    color: var(--clr-gold);
}

.mt-4 {
    margin-top: 2rem;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: var(--section-padding) 0;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--clr-white);
}

.bg-dark {
    background: var(--grad-dark);
}

.bg-light-gold {
    background: var(--clr-platinum);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: capitalize;
}

.btn-primary {
    background-color: var(--clr-black);
    color: var(--clr-white);
}

.btn-gold {
    background-color: var(--clr-gold);
    color: var(--clr-white);
}

.btn-gold:hover {
    background-color: var(--clr-gold-dark);
    transform: translateY(-2px);
}

.btn-play {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-white);
    font-weight: 500;
}

.btn-play .icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-outline-dark {
    border: 1px solid var(--clr-black);
    color: var(--clr-black);
}

.btn-dark {
    background-color: var(--clr-black);
    color: var(--clr-white);
}

.btn-lg {
    padding: 20px 50px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border-radius: var(--radius-sm);
}

.btn-lg .icon {
    font-size: 1.4rem;
}

/* --- Badges --- */
.badge {
    background: rgba(196, 165, 106, 0.15);
    color: var(--clr-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.badge-sm {
    color: #e67e22;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition-smooth);
    color: var(--clr-white);
    /* Default white for transparent state */
}

.navbar .logo-text {
    color: var(--clr-white);
}

.navbar .nav-links a {
    color: rgba(255, 255, 255, 0.7);
}

.navbar .nav-links a:hover {
    color: var(--clr-gold);
}

.navbar .btn-primary {
    background-color: var(--clr-white);
    color: var(--clr-black);
}

.navbar.scrolled {
    background: var(--clr-white);
    padding: 15px 0;
    box-shadow: var(--shadow-soft);
}

.navbar.scrolled .logo-text {
    color: var(--clr-black);
}

.navbar.scrolled .nav-links a {
    color: #555;
}

.navbar.scrolled .nav-links a:hover {
    color: var(--clr-gold);
}

.navbar.scrolled .btn-primary {
    background-color: var(--clr-black);
    color: var(--clr-white);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-cta-mobile {
    display: none;
}

.menu-close-btn {
    display: none;
}

/* Hidden by default on desktop, shown only inside the mobile menu */
.menu-footer {
    display: none;
}

/* --- Hero Section Ref --- */
.hero-ref {
    background-color: #0b1c1c;
    min-height: 100vh;
    padding-top: 180px;
    padding-bottom: 0px;
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    /* Stretch to fill height */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-end;
    /* Align content to bottom */
    width: 100%;
}

.hero-content {
    padding-bottom: 120px;
    /* Give some bottom space for text while image stays flush */
}

.hero-content h1 {
    margin-top: 3rem;
    font-size: 5.6rem;
    /* Increased for Golden Ratio feel (approx 90px) */
    line-height: 0.95;
    margin-bottom: 2.5rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.15rem;
    /* Slightly larger but more readable */
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    max-width: 580px;
    font-weight: 300;
}

.hero-btns-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 4rem;
}

.hero-btns {
    display: flex;
    gap: 30px;
    align-items: center;
}

.hero-trust {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust .stars {
    color: #f39c12;
    font-size: 1.1rem;
    margin-right: 8px;
}

.hero-trust .score {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.image-accent-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(196, 165, 106, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-img-main {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    vertical-align: bottom;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    /* Only top radius */
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%),
        linear-gradient(to right, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%),
        linear-gradient(to right, black 95%, transparent 100%);
}

.floating-badge {
    position: absolute;
    top: 50px;
    right: -20px;
    background: var(--clr-white);
    color: var(--clr-black);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    max-width: 250px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-badge p {
    font-size: 0.9rem;
    opacity: 1;
    margin: 0;
}

/* --- About Section Ref --- */
.about-flex {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.about-image-col {
    flex: 1;
}

.about-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.about-profile-col {
    flex: 1;
}

.founder-card {
    background-color: #0b1c1c;
    color: var(--clr-white);
    padding: 40px;
    height: 100%;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
}

.founder-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid var(--clr-gold);
}

.founder-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.founder-info p {
    font-size: 0.9rem;
    color: var(--clr-gold);
    margin-bottom: 30px;
}

.founder-quote {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 40px;
    flex-grow: 1;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.about-text-col {
    flex: 1;
    padding-left: 20px;
}

.about-text-col h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.about-text-col>p {
    font-size: 1rem;
    color: var(--clr-gray);
    margin-bottom: 2.5rem;
}

.mission-vision {
    margin-bottom: 3rem;
}

.mv-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.mv-icon {
    width: 50px;
    height: 50px;
    background: rgba(196, 165, 106, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.mv-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.mv-item p {
    font-size: 0.9rem;
    color: var(--clr-gray);
}

/* --- Services Grid Ref --- */
.services-grid-ref {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card-ref {
    background: var(--clr-white);
    padding: 60px 40px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
}

.service-card-ref:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.service-icon-circle {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    border: 1px solid #eee;
}

.service-subtitle {
    font-size: 1rem;
    color: var(--clr-gold);
    margin-bottom: 70px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.service-card-ref {
    background: var(--clr-white);
    padding: 60px 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.service-card-ref::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: left;
}

.service-card-ref:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--clr-gold-light);
}

.service-card-ref:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--clr-platinum);
    color: var(--clr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition-smooth);
}

.service-card-ref:hover .service-icon-wrapper {
    background: var(--clr-gold);
    color: var(--clr-white);
    transform: rotateY(180deg);
}

.service-icon {
    width: 32px;
    height: 32px;
}

.service-card-ref h3 {
    font-size: 1.35rem;
    margin-bottom: 20px;
    color: var(--clr-black);
    font-weight: 700;
}

.service-card-ref p {
    font-size: 0.95rem;
    color: var(--clr-gray);
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

.services.section-padding {
    padding: 160px 0;
}

.services-cta-box {
    background: var(--clr-white);
    padding: 60px 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); /* Subtler, more elegant shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(196, 165, 106, 0.1); /* Very subtle gold hairline */
    margin: 80px auto 0;
    width: 100%;
    max-width: 800px;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--clr-black);
    letter-spacing: -0.5px;
}

.btn-consult {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 1.1rem;
    width: 100%;       /* Match the reference image where the button spans strongly */
    max-width: 500px;  /* Control max width so it doesn't get ridiculously wide */
    border-radius: 8px; /* Slightly more rounded like reference */
}

/* --- Why Us Ref --- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.features-list {
    margin-top: 3rem;
}

.features-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.features-list h4 {
    font-size: 1.2rem;
}

.features-list p {
    font-size: 0.95rem;
    color: var(--clr-gray);
}

.why-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

/* --- Process Section Ref --- */
.process h2 {
    font-size: 3.5rem;
    margin-bottom: 4rem;
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.9rem;
    opacity: 0.6;
}

.step-line {
    width: 100px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 20px 40px;
}

/* --- Final CTA Section --- */
.final-cta {
    background: linear-gradient(rgba(245, 245, 240, 0.9), rgba(245, 245, 240, 0.9)),
        url('hero-bg.png');
    /* Subtle texture if available */
    background-size: cover;
    background-position: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--clr-black);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--clr-gray);
    margin-bottom: 3.5rem;
}

/* --- Footer --- */
.footer {
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 60px;
}

.footer-info .logo {
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: #888;
    max-width: 350px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 2rem;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #888;
}

.footer-links a:hover {
    color: var(--clr-gold);
}

.footer-contact p {
    color: #888;
    margin-bottom: 20px;
}

.footer-bottom {
    padding-top: 40px;
    color: #555;
    font-size: 0.9rem;
}

/* --- Mobile Menu Button --- */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--clr-black);
    transition: var(--transition-smooth);
}

.navbar:not(.scrolled) .mobile-menu-btn span {
    background-color: var(--clr-white);
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .about-flex {
        flex-direction: column;
    }

    .services-grid-ref {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    /* --- Navigation (Off-Canvas) --- */
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(11, 28, 28, 0.98);
        /* Transparent dark */
        backdrop-filter: blur(15px);
        /* Premium blur effect */
        -webkit-backdrop-filter: blur(15px);
        z-index: 2000;
        padding: 50px 40px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Flow from top */
        align-items: center;
        gap: 60px;
        transition: var(--transition-smooth);
    }

    .nav-menu-wrapper.active {
        right: 0;
    }

    .menu-close-btn {
        display: flex;
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 2.2rem;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--clr-white);
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition-smooth);
        line-height: 1;
        padding-bottom: 5px;
        /* Adjust for &times; vertical alignment */
    }

    .menu-close-btn:hover {
        background: var(--clr-gold);
        border-color: var(--clr-gold);
        color: var(--clr-black);
        transform: rotate(90deg);
    }

    .nav-menu-wrapper .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav-menu-wrapper .nav-links a {
        font-size: 1.4rem;
        /* Diperkecil menjadi medium */
        font-weight: 600;
        color: var(--clr-white);
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .menu-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: auto;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        gap: 25px;
    }

    .menu-footer-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--clr-gold);
        font-weight: 700;
        opacity: 0.8;
    }

    .menu-contact-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .menu-address,
    .menu-phone,
    .menu-email {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.5);
        letter-spacing: 0.5px;
        transition: var(--transition-smooth);
        display: block;
    }

    .menu-phone:hover,
    .menu-email:hover {
        color: var(--clr-gold);
    }

    .menu-contact-info span.gold {
        margin-right: 8px;
        font-size: 1rem;
    }

    .menu-social {
        display: flex;
        gap: 20px;
    }

    .menu-social a {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--clr-gold);
        border: 1px solid rgba(196, 165, 106, 0.2);
        border-radius: 50%;
        transition: var(--transition-smooth);
    }

    .menu-social a:hover {
        background: var(--clr-gold);
        color: var(--clr-black);
        border-color: var(--clr-gold);
        transform: translateY(-5px);
    }

    /* --- Sections --- */
    .hero-ref {
        padding-top: 150px;
        padding-bottom: 0;
        align-items: flex-end;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
        /* No gap between text and image to keep it tight */
    }

    .hero-content {
        padding-bottom: 60px;
        /* Space between text and image */
    }

    .hero-content h1 {
        font-size: 3.5rem;
        line-height: 1.0;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 0.95rem;
        opacity: 0.6;
        line-height: 1.7;
        margin: 0 auto 2.5rem;
    }

    .hero-btns-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 3rem;
    }

    .hero-trust {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 15px;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .floating-badge {
        right: auto;
        left: 20px;
        bottom: 20px;
        top: auto;
        max-width: 200px;
    }

    .about-flex {
        gap: 30px;
    }

    .about-image-col {
        height: 300px;
    }

    .about-text-col {
        padding-left: 0;
    }

    .about-text-col h2 {
        font-size: 2.2rem;
    }

    .services-grid-ref {
        grid-template-columns: 1fr;
    }

    .service-card-ref {
        padding: 40px 25px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .why-content h2 {
        font-size: 2.2rem;
    }

    .features-list li {
        flex-direction: column;
        align-items: center;
    }

    .process h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .steps-grid {
        flex-direction: column;
        gap: 50px;
    }

    .step-line {
        display: none;
    }

    .step-item {
        position: relative;
    }

    .step-item:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -35px;
        left: 50%;
        width: 1px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-info .logo {
        justify-content: center;
    }

    .footer-info p {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .container {
        padding: 0 20px;
    }
}