/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
}
.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 25px;
}
.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 40px;
}
.btn-custom {
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0, 0.1);
}
.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--btn-hover-shadow);
}
.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    box-shadow: none;
}
.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: white !important;
    box-shadow: 0 8px 20px var(--btn-hover-shadow);
}
.hero-shape {
    position: absolute;
    top: -50px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13,110,253,0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    border-radius: 50%;
}

/* About & Features Section */
.section-title {
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 0;
    width: 50%;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--btn-hover-shadow);
}
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e6ca6f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
}
.feature-title {
    font-weight: 700;
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}
.feature-text {
    color: #6c757d;
    line-height: 1.7;
}

/* How it works */
.step-wrapper {
    text-align: center;
    position: relative;
}
.step-number {
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px var(--btn-hover-shadow);
    position: relative;
    z-index: 2;
    border: 3px solid var(--primary-color);
}
.step-line {
    position: absolute;
    top: 30px;
    right: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    z-index: 1;
    opacity: 0.3;
}
@media (max-width: 768px) {
    .step-line { display: none; }
}
.step-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #024f5a 100%);
    color: white;
    padding: 80px 0;
    border-radius: 40px;
    margin: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(3, 132, 152, 0.2);
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.cta-section .btn-light {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    font-weight: 800;
}
.cta-section .btn-light:hover {
    background-color: #e6ca6f;
    color: var(--primary-color);
    box-shadow: 0 8px 20px var(--gold-hover-shadow);
    transform: translateY(-3px);
}

/* Logo Animation */
@keyframes float-logo {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.hero-logo {
    animation: float-logo 4s ease-in-out infinite;
}
