:root {
    --abt-primary-color: #ff69b4;
    --abt-accent-color: #e91e63;
    --abt-pink-bg: #fce4ec;
    --abt-deeper-pink-bg: #f8bbd9;
    --abt-dark-color: #333;
    --abt-text-color: #666;
    --abt-white: #ffffff;
    --abt-light-gray: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--abt-text-color);
    overflow-x: hidden;
}

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

/* Hero Section with Logo */
.abt-hero-section {
    background: linear-gradient(135deg, var(--abt-primary-color) 0%, var(--abt-accent-color) 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.abt-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 150px 150px;
    animation: abt-float 20s infinite linear;
}

@keyframes abt-float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

.abt-logo-container {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.abt-logo-icon {
    width: 150px;
    height: 150px;
    background: var(--abt-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.abt-logo-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.abt-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.abt-logo-icon:hover::before {
    opacity: 1;
    transform: rotate(45deg) translateX(100%);
}

.abt-logo-icon:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.abt-logo-icon i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--abt-primary-color), var(--abt-accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.abt-hero-title {
    color: var(--abt-white);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.abt-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* Story Section */
.abt-story-section {
    padding: 100px 0;
    background: var(--abt-light-gray);
    position: relative;
}

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

.abt-section-title {
    font-size: 2.8rem;
    color: var(--abt-accent-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.abt-section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--abt-primary-color), var(--abt-accent-color));
    margin: 20px auto;
    border-radius: 2px;
}

.abt-section-subtitle {
    font-size: 1.2rem;
    color: var(--abt-text-color);
    max-width: 600px;
    margin: 0 auto;
}

.abt-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.abt-story-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.abt-story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.2), rgba(233, 30, 99, 0.2));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.abt-story-image:hover::before {
    opacity: 0;
}

.abt-story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.abt-story-image:hover img {
    transform: scale(1.08);
}

.abt-story-text h3 {
    font-size: 2.4rem;
    color: var(--abt-accent-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.abt-story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--abt-dark-color);
    margin-bottom: 25px;
}

.abt-highlight-quote {
    background: linear-gradient(135deg, var(--abt-pink-bg), var(--abt-deeper-pink-bg));
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--abt-accent-color);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--abt-dark-color);
    margin: 30px 0;
    position: relative;
}

.abt-highlight-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--abt-accent-color);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

/* Features Section */
.abt-features-section {
    padding: 100px 0;
    background: var(--abt-white);
}

.abt-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.abt-feature-card {
    background: var(--abt-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.abt-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.1), transparent);
    transition: left 0.6s ease;
}

.abt-feature-card:hover::before {
    left: 100%;
}

.abt-feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--abt-primary-color);
}

.abt-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--abt-primary-color), var(--abt-accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.abt-feature-icon i {
    font-size: 2rem;
    color: var(--abt-white);
}

.abt-feature-card h4 {
    font-size: 1.4rem;
    color: var(--abt-dark-color);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.abt-feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--abt-text-color);
    position: relative;
    z-index: 1;
}

/* Founder Section */
.abt-founder-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--abt-deeper-pink-bg) 0%, var(--abt-pink-bg) 100%);
}

.abt-founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.abt-founder-avatar {
    position: relative;
}

.abt-avatar-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--abt-primary-color), var(--abt-accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.abt-avatar-circle::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: var(--abt-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt-avatar-circle i {
    font-size: 4rem;
    color: var(--abt-accent-color);
    position: relative;
    z-index: 1;
}

.abt-founder-info h3 {
    font-size: 2.2rem;
    color: var(--abt-accent-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.abt-founder-title {
    font-size: 1.1rem;
    color: var(--abt-primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.abt-founder-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--abt-dark-color);
}

/* Stats Section */
.abt-stats-section {
    padding: 80px 0;
    background: var(--abt-white);
}

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

.abt-stat-item {
    text-align: center;
    padding: 30px 20px;
}

.abt-stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--abt-primary-color), var(--abt-accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.abt-stat-label {
    font-size: 1.1rem;
    color: var(--abt-text-color);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .abt-hero-title {
        font-size: 2.5rem;
    }

    .abt-hero-subtitle {
        font-size: 1.1rem;
    }

    .abt-story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .abt-founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .abt-section-title {
        font-size: 2.2rem;
    }

    .abt-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .abt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .abt-hero-section {
        padding: 80px 0 60px;
    }

    .abt-hero-title {
        font-size: 2rem;
    }

    .abt-logo-icon {
        width: 100px;
        height: 100px;
    }

    .abt-logo-icon i {
        font-size: 3rem;
    }

    .abt-story-section,
    .abt-features-section,
    .abt-founder-section {
        padding: 60px 0;
    }

    .abt-stats-grid {
        grid-template-columns: 1fr;
    }
}