/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: #333;
    overflow-x: hidden;
}

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

/* Responsive container padding */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #274472 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    min-height: 48px; /* Better touch target */
}

/* Responsive button sizing */
@media (max-width: 768px) {
    .btn {
        padding: 14px 28px;
        font-size: 15px;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        min-height: 44px;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #274472 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
        height: 70px;
    }
}

.nav-logo h2 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3a8a 0%, #274472 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .nav-logo h2 {
        font-size: 24px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 16px;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 0;
    display: block;
}

@media (max-width: 768px) {
    .nav-menu a {
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
}

.nav-menu a:hover {
    color: #1e3a8a;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #1e3a8a 0%, #274472 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #274472 100%);
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23274472' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
        padding: 100px 20px 50px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 100px 16px 40px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 13px;
        padding: 6px 14px;
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #0f172a;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
}

.hero-description {
    font-size: 20px;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .hero-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 28px;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

.pricing-note {
    margin-top: 16px;
    color: #0f172a;
    font-weight: 500;
}

@media (max-width: 480px) {
    .pricing-note {
        font-size: 14px;
        margin-top: 12px;
    }
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 550px;
}

@media (max-width: 768px) {
    .hero-image-container {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        max-width: 320px;
    }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 480px) {
    .hero-image {
        border-radius: 16px;
    }
}

.hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(30, 58, 138, 0.25);
}

.process-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .process-badges {
        gap: 12px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .process-badges {
        gap: 8px;
        margin-top: 16px;
    }
}

.process-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    border: 1px solid rgba(30, 58, 138, 0.1);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .process-badge {
        padding: 10px 16px;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .process-badge {
        padding: 8px 14px;
        gap: 6px;
        border-radius: 25px;
    }
}

.process-badge:hover {
    transform: translateY(-3px);
}

.process-badge:nth-child(1) { animation-delay: 0.3s; }
.process-badge:nth-child(2) { animation-delay: 0.5s; }
.process-badge:nth-child(3) { animation-delay: 0.7s; }

.process-badge i {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1e3a8a 0%, #274472 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .process-badge i {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .process-badge i {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

.process-badge span {
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .process-badge span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .process-badge span {
        font-size: 12px;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 40px;
    }
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 24px;
        line-height: 1.3;
    }
}

.section-header p {
    font-size: 18px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-header p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-header p {
        font-size: 15px;
        line-height: 1.6;
    }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    .section-badge {
        font-size: 13px;
        padding: 6px 14px;
    }
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: #ffffff;
}

@media (max-width: 768px) {
    .problem {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .problem {
        padding: 60px 0;
    }
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

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

@media (max-width: 480px) {
    .problem-grid {
        gap: 24px;
    }
}

.problem-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .problem-card {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .problem-card {
        padding: 24px;
        border-radius: 12px;
    }
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    .problem-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
}

.problem-icon i {
    font-size: 28px;
    color: white;
}

@media (max-width: 480px) {
    .problem-icon i {
        font-size: 24px;
    }
}

.problem-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0f172a;
}

@media (max-width: 768px) {
    .problem-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .problem-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

.problem-card p {
    color: #475569;
    line-height: 1.7;
}

@media (max-width: 480px) {
    .problem-card p {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: #f8faff;
}

@media (max-width: 768px) {
    .solution {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .solution {
        padding: 60px 0;
    }
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 1024px) {
    .solution-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.solution-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0f172a;
}

@media (max-width: 768px) {
    .solution-text h2 {
        font-size: 28px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .solution-text h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

.solution-text p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .solution-text p {
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .solution-text p {
        font-size: 15px;
        margin-bottom: 24px;
    }
}

.solution-features {
    margin-bottom: 40px;
}

@media (max-width: 480px) {
    .solution-features {
        margin-bottom: 32px;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .feature-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .feature-item {
        gap: 10px;
        margin-bottom: 12px;
    }
}

.feature-item i {
    color: #1e3a8a;
    font-size: 20px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .feature-item i {
        font-size: 18px;
    }
}

.feature-item span {
    font-size: 16px;
    font-weight: 500;
    color: #0f172a;
}

@media (max-width: 480px) {
    .feature-item span {
        font-size: 15px;
    }
}

.automation-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .automation-diagram {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .automation-diagram {
        gap: 24px;
    }
}

.automation-step {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

@media (max-width: 480px) {
    .automation-step {
        min-width: 100px;
    }
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1e3a8a 0%, #274472 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.4);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .step-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .step-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
}

.step-icon:hover {
    transform: translateY(-5px);
}

.step-icon i {
    color: white;
    font-size: 36px;
}

@media (max-width: 768px) {
    .step-icon i {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .step-icon i {
        font-size: 28px;
    }
}

.automation-step h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0f172a;
}

@media (max-width: 768px) {
    .automation-step h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .automation-step h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

.automation-step p {
    font-size: 16px;
    color: #475569;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .automation-step p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .automation-step p {
        font-size: 14px;
    }
}

.automation-arrow {
    color: #1e3a8a;
    font-size: 28px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .automation-arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }
}

/* Vision Section */
.vision {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.85) 50%, rgba(39, 68, 114, 0.85) 100%),
        url('carlos-muza-hpjSkU2UYSU-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .vision {
        padding: 80px 0;
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .vision {
        padding: 60px 0;
    }
}

.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='60' cy='60' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.vision::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 1;
}

.vision-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.vision h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@media (max-width: 768px) {
    .vision h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .vision h2 {
        font-size: 26px;
        margin-bottom: 30px;
        line-height: 1.3;
    }
}

.vision-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border-radius: 30px;
    padding: 80px 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

@media (max-width: 768px) {
    .vision-card {
        padding: 60px 30px;
        border-radius: 24px;
        margin: 0 16px;
    }
}

@media (max-width: 480px) {
    .vision-card {
        padding: 40px 20px;
        border-radius: 20px;
        margin: 0 16px;
    }
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.vision-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .vision-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .vision-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
}

.vision-icon i {
    font-size: 48px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .vision-icon i {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .vision-icon i {
        font-size: 32px;
    }
}

.vision-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .vision-card h3 {
        font-size: 26px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .vision-card h3 {
        font-size: 22px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
}

.vision-card p {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .vision-card p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .vision-card p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Effects Section */
.effects {
    padding: 100px 0;
    background: #ffffff;
}

@media (max-width: 768px) {
    .effects {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .effects {
        padding: 60px 0;
    }
}

.effects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

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

@media (max-width: 480px) {
    .effects-grid {
        gap: 24px;
    }
}

.effect-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .effect-card {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .effect-card {
        padding: 24px;
        border-radius: 12px;
    }
}

.effect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e3a8a 0%, #274472 100%);
}

.effect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.effect-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a8a 0%, #274472 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

@media (max-width: 480px) {
    .effect-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
}

.effect-icon i {
    font-size: 28px;
    color: white;
}

@media (max-width: 480px) {
    .effect-icon i {
        font-size: 24px;
    }
}

.effect-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0f172a;
}

@media (max-width: 768px) {
    .effect-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .effect-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

.effect-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .effect-card p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
}

.effect-benefit {
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

@media (max-width: 480px) {
    .effect-benefit {
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8faff;
}

@media (max-width: 768px) {
    .features {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 60px 0;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.feature-card {
    text-align: center;
    padding: 40px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fd 100%);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 24px;
        border-radius: 12px;
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #274472 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0f172a;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

.feature-card p {
    color: #475569;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .feature-card p {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* Company Section */
.company {
    padding: 100px 0;
    background: #ffffff;
}

@media (max-width: 768px) {
    .company {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .company {
        padding: 60px 0;
    }
}

.company-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.company-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0f172a;
}

@media (max-width: 768px) {
    .company-info h2 {
        font-size: 28px;
        text-align: center;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .company-info h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .detail-item {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .detail-item {
        padding: 16px 0;
    }
}

.detail-label {
    font-weight: 600;
    color: #1e3a8a;
}

@media (max-width: 480px) {
    .detail-label {
        font-size: 15px;
    }
}

.detail-value {
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .detail-value {
        font-size: 15px;
    }
}

.detail-value a {
    color: #1e3a8a;
    text-decoration: none;
}

.detail-value a:hover {
    text-decoration: underline;
}

.company-visual {
    text-align: center;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #1e3a8a 0%, #274472 100%);
    color: white;
    padding: 32px 40px;
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.3);
}

@media (max-width: 768px) {
    .company-badge {
        padding: 24px 32px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .company-badge {
        padding: 20px 24px;
        border-radius: 16px;
        gap: 12px;
    }
}

.company-badge i {
    font-size: 32px;
}

@media (max-width: 768px) {
    .company-badge i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .company-badge i {
        font-size: 24px;
    }
}

.company-badge span {
    font-size: 28px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .company-badge span {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .company-badge span {
        font-size: 20px;
    }
}

.company-visual p {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .company-visual p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .company-visual p {
        font-size: 15px;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

@media (max-width: 768px) {
    .contact {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 0;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #0f172a;
}

@media (max-width: 768px) {
    .contact-info h2 {
        font-size: 28px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-info h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

.contact-info p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .contact-info p {
        font-size: 16px;
        text-align: center;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .contact-info p {
        font-size: 15px;
        margin-bottom: 24px;
    }
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 480px) {
    .contact-methods {
        gap: 16px;
    }
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8faff;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .contact-method {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-method {
        padding: 16px;
        gap: 12px;
    }
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a 0%, #274472 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .contact-method i {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

.contact-method span {
    font-weight: 500;
    color: #0f172a;
}

@media (max-width: 480px) {
    .contact-method span {
        font-size: 15px;
    }
}

/* Contact Form */
.contact-form {
    background: #f8faff;
    padding: 40px;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 24px;
        border-radius: 12px;
    }
}

.form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 480px) {
    .form {
        gap: 20px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #333;
}

@media (max-width: 480px) {
    .form-group label {
        font-size: 15px;
    }
}

.form-group input,
.form-group textarea {
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
    min-height: 44px; /* Better touch target */
}

@media (max-width: 480px) {
    .form-group input,
    .form-group textarea {
        padding: 14px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 480px) {
    .form-group textarea {
        min-height: 100px;
    }
}

.form-group select {
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
    min-height: 44px; /* Better touch target */
}

@media (max-width: 480px) {
    .form-group select {
        padding: 14px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 20px;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 30px;
        margin-bottom: 20px;
    }
}

.footer-logo h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .footer-logo h3 {
        font-size: 28px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-logo h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
}

.footer-logo p {
    color: #999;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .footer-logo p {
        text-align: center;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .footer-logo p {
        font-size: 14px;
    }
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

@media (max-width: 480px) {
    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 480px) {
    .footer-section ul {
        gap: 10px;
    }
}

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (max-width: 480px) {
    .footer-section a {
        font-size: 14px;
    }
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

@media (max-width: 480px) {
    .footer-bottom {
        padding-top: 16px;
        font-size: 14px;
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 100px 20px 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }

    .hero-service-name {
        font-size: 40px;
        padding: 6px 18px;
        border-radius: 12px;
    }

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

    .step-icon i {
        font-size: 32px;
    }

    .automation-step h4 {
        font-size: 18px;
    }

    .automation-step p {
        font-size: 15px;
    }

    .vision h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .vision-card {
        padding: 60px 30px;
        border-radius: 24px;
    }

    .vision-icon {
        width: 100px;
        height: 100px;
    }

    .vision-icon i {
        font-size: 40px;
    }

    .vision-card h3 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .vision-card p {
        font-size: 18px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 350px;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .automation-diagram {
        flex-direction: column;
        gap: 30px;
    }
    
    .automation-arrow {
        transform: rotate(90deg);
    }
    
    .company-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .detail-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }

    .process-badges {
        gap: 16px;
        margin-top: 32px;
    }

    .process-badge {
        padding: 12px 18px;
    }

    .process-badge span {
        font-size: 14px;
    }

    .process-badge i {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }

    .hero-service-name {
        font-size: 32px;
        padding: 4px 14px;
        border-radius: 10px;
        margin-top: 6px;
    }

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

    .step-icon i {
        font-size: 28px;
    }

    .automation-step h4 {
        font-size: 16px;
    }

    .automation-step p {
        font-size: 14px;
    }

    .vision {
        padding: 80px 0;
    }

    .vision h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .vision-card {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .vision-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .vision-icon i {
        font-size: 32px;
    }

    .vision-card h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .vision-card p {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .problem-grid,
    .effects-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        max-width: 280px;
    }
    
    .process-badges {
        gap: 12px;
        margin-top: 20px;
    }

    .process-badge {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: #ffffff;
}

@media (max-width: 768px) {
    .cta {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .cta {
        padding: 60px 0;
    }
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .cta-wrapper {
        gap: 24px;
    }
}

.cta-toggle {
    display: inline-flex;
    gap: 12px;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .cta-toggle {
        gap: 8px;
        margin-bottom: 16px;
        justify-content: center;
    }
}

.cta-tab {
    padding: 10px 16px;
    border-radius: 999px;
    border: 2px solid #1e3a8a;
    background: white;
    color: #1e3a8a;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .cta-tab {
        padding: 8px 14px;
        font-size: 14px;
        flex: 1;
        text-align: center;
    }
}

.cta-tab.active {
    background: linear-gradient(135deg, #1e3a8a 0%, #274472 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.25);
}

.cta-form {
    background: #f8faff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
    .cta-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .cta-form {
        padding: 20px;
        border-radius: 12px;
    }
}

.cta-subnote {
    margin-top: 12px;
    color: #64748b;
    font-size: 13px;
}

@media (max-width: 480px) {
    .cta-subnote {
        font-size: 12px;
        margin-top: 10px;
    }
}

.cta-aside {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fd 100%);
    border-radius: 16px;
    padding: 24px;
    height: fit-content;
}

@media (max-width: 768px) {
    .cta-aside {
        order: -1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cta-aside {
        padding: 20px;
        border-radius: 12px;
    }
}

.cta-offer {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .cta-offer {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

.cta-price {
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .cta-price {
        font-size: 15px;
        margin-bottom: 14px;
    }
}

.cta-steps .step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .cta-steps .step {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-steps .step {
        gap: 10px;
        margin-bottom: 8px;
        font-size: 14px;
    }
}

.cta-steps .step span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1e3a8a;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .cta-steps .step span {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 12px;
    display: none;
    gap: 12px;
    padding: 0 16px;
    z-index: 1001;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: flex;
        bottom: 16px;
        padding: 0 16px;
    }
    
    .sticky-cta .btn {
        flex: 1;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .sticky-cta {
        gap: 8px;
        bottom: 12px;
        padding: 0 12px;
    }
    
    .sticky-cta .btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}

 