/* ===============================================
   Tentang Kami Page Styles
   =============================================== */

/* Hero Section - Tentang Kami Specific */
.hero-section-new .hero-title {
    color: white !important;
}

.hero-section-new .hero-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Hero Section - Button Styling (Same as Homepage) */
.hero-section-new .hero-cta {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
}

.hero-section-new .hero-cta .btn,
.hero-section-new .hero-cta .btn-large,
.hero-section-new .hero-cta .btn-primary,
.hero-section-new .hero-cta .btn-secondary {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    display: inline-flex !important;
    padding: 14px 32px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

/* Button Primary - Elegant Style */
.hero-section-new .hero-cta .btn-primary {
    background: #25D366 !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25) !important;
}

.hero-section-new .hero-cta .btn-primary:hover {
    background: #20BA5A !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
    color: white !important;
}

/* Button Secondary - Elegant Style */
.hero-section-new .hero-cta .btn-secondary {
    background: white !important;
    color: #1e40af !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(30, 64, 175, 0.1) !important;
}

.hero-section-new .hero-cta .btn-secondary:hover {
    background: #f8fafc !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
    color: #1e40af !important;
    border-color: rgba(30, 64, 175, 0.2) !important;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    /* Hide hero image on tablet */
    .hero-section-new .hero-image {
        display: none !important;
    }

    .hero-section-new .hero-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-section-new .hero-content {
        text-align: center;
    }
}

/* Responsive - Mobile tetap vertikal */
@media (max-width: 768px) {
    .hero-section-new .hero-cta {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .hero-section-new .hero-cta .btn,
    .hero-section-new .hero-cta .btn-large,
    .hero-section-new .hero-cta .btn-primary,
    .hero-section-new .hero-cta .btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        flex: 1 1 100% !important;
    }

    /* Hide hero image on mobile - already hidden from tablet */
    .hero-section-new .hero-image {
        display: none !important;
    }
}

/* About Company Section */
.about-company-section {
    padding: 80px 0;
    background: #fff;
}

.about-company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left: Image Side */
.about-company-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.about-main-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}

.about-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-image-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Cards */
.about-floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 16px;
    animation: float 3s ease-in-out infinite;
}

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

.card-reviews {
    top: 15%;
    left: -40px;
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 20px;
    animation-delay: 0s;
}

.card-reviews .card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #60a5fa, #0ea5e9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.card-reviews .card-title {
    font-weight: 700;
    font-size: 16px;
    color: #1e293b;
}

.card-reviews .card-subtitle {
    font-size: 12px;
    color: #64748b;
}

.card-explore {
    top: 10%;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e40af, #0ea5e9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation-delay: 0.5s;
}

.explore-circle {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
}

.explore-text {
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    max-width: 80px;
}

.card-sales {
    bottom: 10%;
    right: -20px;
    width: 200px;
    padding: 16px;
    animation-delay: 1s;
}

.sales-header {
    margin-bottom: 8px;
}

.sales-label {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sales-percentage {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.sales-chart {
    margin-bottom: 8px;
}

.sales-bar {
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9 0%, #0ea5e9 70%, #e2e8f0 70%);
    border-radius: 2px;
}

/* Right: Content Side */
.about-company-content {
    padding-left: 20px;
}

.about-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.about-company-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-text {
    color: #60a5fa;
}

.about-company-description {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
}

/* Features Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
}

.about-feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.about-feature-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

/* CTA Buttons */
.about-company-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1e40af, #0ea5e9);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.btn-about-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(14, 165, 233, 0.4);
}

.btn-about-secondary {
    color: #0f172a;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #0f172a;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.btn-about-secondary:hover {
    color: #0ea5e9;
    border-color: #0ea5e9;
}

/* Core Values Section */
.core-values-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e40af, #0ea5e9);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.value-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(30, 64, 175, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon-box {
    background: linear-gradient(135deg, #1e40af, #0ea5e9);
    color: white;
    transform: scale(1.1);
}

.value-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    margin-top: 0;
}

.value-description {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Decorative Elements */
.values-decoration {
    position: absolute;
    z-index: 1;
}

.values-decoration-left {
    left: 5%;
    top: 20%;
    animation: float-slow 6s ease-in-out infinite;
}

.values-decoration-right {
    right: 5%;
    bottom: 15%;
    animation: float-slow 8s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(10px, -10px) rotate(5deg);
    }
}

/* Our Approach Section */
.our-approach-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.approach-header {
    text-align: center;
    margin-bottom: 80px;
}

.approach-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(30, 64, 175, 0.15));
    color: #0ea5e9;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.approach-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.highlight-gradient {
    background: linear-gradient(135deg, #1e40af, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.approach-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline */
.approach-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.approach-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.approach-step:last-child {
    margin-bottom: 0;
}

/* Step Indicator */
.step-indicator {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
}

.step-number-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 3px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.approach-step:hover .step-number-circle {
    background: linear-gradient(135deg, #1e40af, #0ea5e9);
    border-color: #0ea5e9;
    transform: scale(1.1);
}

.step-number {
    font-size: 20px;
    font-weight: 800;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.approach-step:hover .step-number {
    color: white;
}

.step-connector {
    width: 3px;
    height: 100%;
    min-height: 60px;
    background: linear-gradient(180deg, #e2e8f0, #f1f5f9);
    margin-top: -10px;
}

.approach-step:last-child .step-connector {
    display: none;
}

/* Step Content */
.step-content {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 24px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-content:hover {
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateX(8px);
}

.step-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.step-content:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.gradient-pink {
    background: linear-gradient(135deg, #60a5fa, #0ea5e9);
}

.gradient-blue {
    background: linear-gradient(135deg, #1e40af, #0ea5e9);
}

.gradient-green {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.gradient-orange {
    background: linear-gradient(135deg, #0ea5e9, #60a5fa);
}

.gradient-purple {
    background: linear-gradient(135deg, #1e40af, #60a5fa);
}

.gradient-indigo {
    background: linear-gradient(135deg, #0a1172, #1e40af);
}

.step-details {
    flex: 1;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    margin-top: 0;
}

.step-description {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 70px;
}

.why-choose-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(30, 64, 175, 0.15));
    color: #0ea5e9;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.why-choose-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.why-choose-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1e40af, #0ea5e9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.2);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon-wrapper {
    margin-bottom: 24px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
    margin-top: 0;
    line-height: 1.4;
}

.benefit-description {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
}

.benefit-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #475569;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-badge {
    background: linear-gradient(135deg, #1e40af, #0ea5e9);
    color: white;
    transform: translateY(-2px);
}

/* Background Decoration */
.why-choose-bg-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

/* CTA Section Elegant */
.cta-section-elegant {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a1172 0%, #1e40af 50%, #0ea5e9 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.cta-elegant-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left: Content */
.cta-elegant-content {
    color: white;
}

.cta-elegant-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: #60a5fa;
}

.cta-elegant-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.cta-highlight {
    background: linear-gradient(135deg, #60a5fa, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-elegant-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 540px;
}

/* Features List */
.cta-elegant-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

.cta-feature-item svg {
    color: #60a5fa;
    flex-shrink: 0;
}

/* Buttons */
.cta-elegant-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary {
    background: white;
    color: #0a1172;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.cta-btn-whatsapp {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-btn-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Right: Illustration */
.cta-elegant-illustration {
    position: relative;
    height: 500px;
}

.cta-illustration-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Stat Cards */
.cta-stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float-gentle 4s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.cta-stat-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.cta-stat-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

.cta-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #60a5fa, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* ===============================================
   Responsive Design
   =============================================== */

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .about-company-grid {
        gap: 40px;
    }

    .about-company-title {
        font-size: 36px;
    }

    .card-explore {
        width: 100px;
        height: 100px;
    }

    /* Hide floating cards on tablet */
    .card-reviews,
    .card-explore,
    .card-sales {
        display: none !important;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .cta-elegant-wrapper {
        gap: 60px;
    }

    .cta-elegant-title {
        font-size: 42px;
    }

    .cta-elegant-illustration {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-company-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-company-image {
        order: 2;
    }

    .about-company-content {
        order: 1;
        padding-left: 0;
    }

    .about-company-title {
        font-size: 32px;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .about-company-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Hide floating cards on mobile - already hidden from tablet breakpoint */
    .card-reviews,
    .card-explore,
    .card-sales {
        display: none !important;
    }

    .core-values-section {
        padding: 60px 0;
    }

    .values-main-title {
        font-size: 36px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .values-decoration {
        display: none;
    }

    .our-approach-section {
        padding: 60px 0;
    }

    .approach-main-title {
        font-size: 32px;
    }

    .approach-header {
        margin-bottom: 50px;
    }

    .approach-step {
        gap: 20px;
    }

    .step-indicator {
        width: 50px;
    }

    .step-number-circle {
        width: 50px;
        height: 50px;
    }

    .step-number {
        font-size: 16px;
    }

    .step-content {
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }

    .step-icon {
        width: 56px;
        height: 56px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 14px;
    }

    .why-choose-us-section {
        padding: 60px 0;
    }

    .why-choose-title {
        font-size: 32px;
    }

    .why-choose-header {
        margin-bottom: 50px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 24px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-title {
        font-size: 18px;
    }

    .why-choose-bg-decoration {
        display: none;
    }

    .cta-section-elegant {
        padding: 80px 0;
    }

    .cta-elegant-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-elegant-title {
        font-size: 36px;
    }

    .cta-elegant-description {
        font-size: 16px;
    }

    .cta-elegant-buttons {
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .cta-elegant-illustration {
        height: 300px;
    }

    .cta-illustration-bg {
        width: 300px;
        height: 300px;
    }

    .cta-stat-card {
        position: static;
        margin: 10px 0;
    }
}
