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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 16px;
}

.ab-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.ab-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.ab-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.ab-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ab-logo {
    width: 50px;
    height: 50px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.ab-company-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ab-company-main {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.ab-company-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
    line-height: 1;
    letter-spacing: 0.02em;
}

.ab-nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.ab-nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 20px;
    border-radius: 25px;
}

.ab-nav-menu a:hover,
.ab-nav-active {
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.ab-nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.ab-nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.ab-main {
    margin-top: 100px;
}

.ab-hero {
    padding: 140px 0 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.ab-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    transform: rotate(-15deg);
    z-index: 1;
}

.ab-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.06) 0%, transparent 60%);
    transform: rotate(25deg);
    z-index: 1;
}

.ab-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ab-hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.ab-hero-title .highlight {
    color: #ff6b35;
}

.ab-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #666666;
    font-weight: 400;
    max-width: 90%;
}

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

.ab-btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ab-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
}

.ab-btn-secondary {
    background: transparent;
    color: #1a1a1a;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ab-btn-secondary:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(26, 26, 26, 0.2);
}

.ab-hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.ab-hero-visual img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

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

.ab-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2c3e50;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ab-section-description {
    font-size: 1.3rem;
    color: #34495e;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

.ab-overview {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.ab-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.ab-overview-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ab-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(247, 147, 30, 0.03) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ab-overview-featured {
    border: 2px solid #ff6b35;
    transform: scale(1.05);
}

.ab-overview-featured::before {
    opacity: 1;
}

.ab-overview-card:hover::before {
    opacity: 1;
}

.ab-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.ab-overview-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.ab-overview-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ab-overview-card:hover .ab-overview-icon {
    transform: scale(1.1);
}

.ab-overview-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.ab-overview-description {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 500;
}

.ab-overview-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ab-feature-tag {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.ab-overview-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ab-overview-link:hover {
    color: #e55a2b;
    transform: translateX(5px);
}

.ab-overview-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.ab-overview-link:hover::after {
    transform: translateX(3px);
}

.ab-products {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    position: relative;
    z-index: 10;
}

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

.ab-products-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.ab-product-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ab-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #ff6b35;
}

.ab-product-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    flex-shrink: 0;
}

.ab-product-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.ab-product-info p {
    color: #34495e;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 500;
}

.ab-products-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ab-products-visual img:hover {
    transform: scale(1.02);
}

.ab-venture {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

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

.ab-venture-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ab-venture-visual img:hover {
    transform: scale(1.02);
}

.ab-venture-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.ab-venture-stat {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ab-venture-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #ff6b35;
}

.ab-venture-stat .ab-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 8px;
}

.ab-venture-stat .ab-stat-label {
    color: #666666;
    font-size: 0.9rem;
    font-weight: 600;
}

.ab-venture-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.ab-venture-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ab-venture-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #ff6b35;
}

.ab-feature-icon {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    flex-shrink: 0;
}

.ab-venture-feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 6px;
}

.ab-venture-feature p {
    color: #34495e;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 500;
}

.ab-advantages {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    position: relative;
    z-index: 10;
}

.ab-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.ab-advantage-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ab-advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ab-advantage-card:hover::before {
    opacity: 1;
}

.ab-advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
}

.ab-advantage-card .ab-advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: block;
}

.ab-advantage-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.ab-advantage-description {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.ab-advantage-detail {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ab-advantage-detail span {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.ab-cases {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.ab-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.ab-case-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.ab-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(247, 147, 30, 0.03) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ab-case-featured {
    border: 2px solid #ff6b35;
    transform: scale(1.02);
}

.ab-case-featured::before {
    opacity: 1;
}

.ab-case-card:hover::before {
    opacity: 1;
}

.ab-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.ab-case-featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.ab-case-category {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.ab-case-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.ab-case-description {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 500;
}

.ab-case-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.ab-case-result {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.ab-result-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff6b35;
    display: block;
    margin-bottom: 5px;
}

.ab-result-label {
    color: #666666;
    font-size: 0.9rem;
    font-weight: 600;
}

.ab-case-client {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.ab-case-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ab-case-info strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    display: block;
    margin-bottom: 2px;
}

.ab-case-info span {
    color: #34495e;
    font-size: 1rem;
    font-weight: 500;
}

.ab-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.ab-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    transform: rotate(-15deg);
}

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

.ab-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

.ab-cta-highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.ab-cta-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
}

.ab-cta-description strong {
    color: #ff6b35;
}

.ab-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.ab-btn-cta-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

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

.ab-btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 20px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ab-btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.ab-cta-guarantee {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 600;
}

.ab-footer {
    background: #f8f9fa;
    color: #2c3e50;
    padding: 80px 0 30px;
}

.ab-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.ab-footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ab-footer-description {
    color: #34495e;
    line-height: 1.7;
    margin: 20px 0 30px;
    font-size: 1.1rem;
    font-weight: 500;
}

.ab-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ab-contact-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ab-contact-item span {
    color: #95a5a6;
    min-width: 70px;
    font-weight: 500;
}

.ab-contact-item a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.ab-contact-item a:hover {
    color: #ff6b35;
}

.ab-footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.ab-footer-links a {
    color: #34495e;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1.05rem;
}

.ab-footer-links a:hover {
    color: #ff6b35;
}

.ab-footer-address {
    color: #34495e;
    line-height: 1.7;
    font-style: normal;
    font-size: 1.1rem;
    font-weight: 500;
}

.ab-footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 30px;
    text-align: center;
    color: #95a5a6;
}

/* Personal Products Page Styles */
.ab-breadcrumb {
    padding: 20px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.ab-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ab-breadcrumb-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ab-breadcrumb-link:hover {
    color: #ff6b35;
}

.ab-breadcrumb-separator {
    color: #999;
    font-size: 12px;
}

.ab-breadcrumb-current {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
}



.ab-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}



.ab-product-overview {
    padding: 100px 0;
    background: white;
}

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

.ab-overview-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.ab-overview-item:hover {
    transform: translateY(-10px);
}

.ab-overview-icon {
    margin-bottom: 20px;
}

.ab-overview-icon img {
    width: 64px;
    height: 64px;
}

.ab-overview-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.ab-overview-description {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
    font-weight: 500;
}

.ab-product-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
}

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

.ab-category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.ab-category-card:hover {
    transform: translateY(-10px);
}

.ab-category-featured {
    border: 2px solid #ff6b35;
    position: relative;
}

.ab-category-featured::before {
    content: 'POPULER';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.ab-category-header {
    padding: 40px 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
}

.ab-category-icon {
    margin-bottom: 20px;
}

.ab-category-icon img {
    width: 48px;
    height: 48px;
}

.ab-category-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.ab-category-content {
    padding: 30px;
}

.ab-category-description {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 500;
}

.ab-category-features {
    list-style: none;
    margin-bottom: 30px;
}

.ab-category-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    font-size: 14px;
}

.ab-category-features li:last-child {
    border-bottom: none;
}

.ab-category-features li::before {
    content: '✓';
    color: #ff6b35;
    font-weight: bold;
    margin-right: 10px;
}

.ab-category-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.ab-category-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.ab-button-disabled {
    background: #ccc !important;
    cursor: not-allowed;
    color: #999 !important;
}

.ab-button-disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.ab-requirements {
    padding: 100px 0;
    background: white;
}

.ab-requirements-content {
    max-width: 800px;
    margin: 0 auto;
}

.ab-requirements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.ab-requirement-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.ab-requirement-item:hover {
    transform: translateY(-5px);
}

.ab-requirement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ab-requirement-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.ab-requirement-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.ab-requirement-content p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.7;
    font-weight: 500;
}

.ab-requirements-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.ab-requirements-note p {
    color: #8b6914;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.ab-interest-rates {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
}

.ab-rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.ab-rate-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ab-rate-card:hover {
    transform: translateY(-10px);
}

.ab-rate-header {
    margin-bottom: 30px;
}

.ab-rate-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.ab-rate-percentage {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 10px;
}

.ab-rate-period {
    font-size: 1rem;
    color: #34495e;
    font-weight: 500;
}

.ab-rate-features {
    list-style: none;
}

.ab-rate-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #34495e;
    font-size: 15px;
    font-weight: 500;
}

.ab-rate-features li:last-child {
    border-bottom: none;
}

.ab-rate-features li::before {
    content: '•';
    color: #ff6b35;
    font-weight: bold;
    margin-right: 10px;
}

.ab-rates-note {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.ab-rates-note p {
    color: #0c4a6e;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.ab-success-stories {
    padding: 100px 0;
    background: white;
}

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

.ab-story-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.ab-story-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.ab-story-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.ab-story-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.ab-story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab-story-info {
    flex: 1;
}

.ab-story-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.ab-story-role {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 10px;
    font-weight: 500;
}

.ab-story-product {
    font-size: 0.8rem;
    color: #ff6b35;
    font-weight: 600;
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.ab-story-content {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
    font-style: italic;
    font-weight: 500;
}

.ab-story-content::before {
    content: '"';
    color: #ff6b35;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.ab-story-content::after {
    content: '"';
    color: #ff6b35;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

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



.ab-btn-primary:hover {
    background: #1f2937;
}

.ab-btn-outline {
    background: transparent;
    color: #1a1a1a;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ab-btn-outline:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(26, 26, 26, 0.2);
}

.ab-btn-secondary {
    background: transparent;
    color: #1a1a1a;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ab-btn-secondary:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(26, 26, 26, 0.2);
}

.ab-hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.ab-hero-visual img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Privacy Notice */
.ab-privacy-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
}

.ab-privacy-notice.show {
    transform: translateY(0);
}

.ab-privacy-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.ab-privacy-text {
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.5;
    flex: 1;
}

.ab-privacy-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ab-privacy-link:hover {
    color: #f7931e;
}

.ab-privacy-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.ab-btn-accept {
    padding: 10px 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ab-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.ab-btn-settings {
    padding: 10px 25px;
    background: transparent;
    color: #2c3e50;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ab-btn-settings:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .ab-container {
        padding: 0 30px;
    }

    .ab-hero {
        padding: 120px 0;
        min-height: 60vh;
    }

    .ab-hero-content {
        padding: 0 24px;
    }

    .ab-hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .ab-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .ab-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .ab-btn-primary, 
    .ab-btn-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .ab-breadcrumb-nav {
        flex-wrap: wrap;
        gap: 5px;
    }

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

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

    .ab-requirements-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .ab-story-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
} 