* {
    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.6;
    color: #1a1a1a;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.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: #1a1a1a;
    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: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    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: #ffffff;
    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 {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.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-hero-stats {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    position: relative;
    z-index: 2;
}

.ab-stat-item {
    text-align: center;
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ab-stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.ab-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.ab-stat-item:nth-child(odd) .ab-stat-number {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab-stat-label {
    font-size: 1rem;
    color: #666666;
    font-weight: 500;
}

.ab-services {
    padding: 140px 0;
    background: #fafafa;
    position: relative;
}

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

.ab-section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.ab-section-description {
    font-size: 1.3rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.ab-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ab-service-card {
    background: white;
    padding: 60px 40px;
    border-radius: 24px;
    text-align: left;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f5f5f5;
    position: relative;
    overflow: hidden;
}

.ab-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.ab-service-card:hover {
    transform: translateY(-12px) rotate(-1deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.ab-service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 35px;
    display: block;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-radius: 16px;
}

.ab-service-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.ab-service-description {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.ab-service-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.ab-service-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

.ab-advantages {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(247, 147, 30, 0.05) 100%);
}

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

.ab-advantage-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.ab-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f5f5f5;
}

.ab-advantage-item:hover {
    transform: translateX(10px) translateY(-5px) scale(1.02);
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

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

.ab-advantage-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.ab-advantage-item p {
    color: #7f8c8d;
}

.ab-advantages-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ab-testimonials {
    padding: 160px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.ab-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.ab-testimonials-wrapper {
    position: relative;
    z-index: 2;
}

.ab-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.ab-testimonial-card {
    background: white;
    padding: 40px 30px 35px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.ab-testimonial-featured {
    background: linear-gradient(135deg, #fff 0%, #fdfbfb 100%);
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.15);
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.ab-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.ab-testimonial-featured::before {
    transform: scaleX(1);
}

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

.ab-testimonial-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 35px 90px rgba(255, 107, 53, 0.2);
}

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

.ab-testimonial-quote-icon {
    font-size: 3.5rem;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, serif;
    opacity: 0.8;
}

.ab-testimonial-rating {
    margin-bottom: 25px;
}

.ab-stars {
    color: #ffc107;
    font-size: 1.3rem;
    letter-spacing: 3px;
    text-shadow: 0 1px 3px rgba(255, 193, 7, 0.3);
}

.ab-testimonial-content {
    margin-bottom: 35px;
}

.ab-testimonial-content p {
    color: #374151;
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    position: relative;
}

.ab-testimonial-author-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid #f3f4f6;
}

.ab-testimonial-avatar {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    flex-shrink: 0;
}

.ab-testimonial-author {
    flex: 1;
}

.ab-testimonial-author strong {
    display: block;
    color: #1f2937;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.ab-testimonial-author span {
    color: #6b7280;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.ab-author-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    color: #ff6b35;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.ab-testimonials-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    background: white;
    padding: 50px 60px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.ab-testimonial-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.ab-stat-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 53, 0.2);
    flex-shrink: 0;
}

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

.ab-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab-stat-text {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.ab-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

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

.ab-cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.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.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
    font-weight: 400;
    color: #e2e8f0;
}

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

.ab-cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.ab-btn-cta-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 ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border: none;
    display: inline-block;
}

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

.ab-btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.ab-btn-cta-secondary:hover {
    background: white;
    color: #1a202c;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.ab-cta-guarantee {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #cbd5e0;
}



.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;
    height: 100%;
}

.ab-footer-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 20px 0 30px;
    font-size: 1rem;
}

.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: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.ab-footer-address {
    color: #7f8c8d;
    line-height: 1.6;
    font-style: normal;
    font-size: 1rem;
}

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

/* 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) {
    html {
        scroll-padding-top: 85px;
    }
    
    .ab-container {
        padding: 0 24px;
    }
    
    .ab-nav {
        padding: 16px 24px;
    }
    
    .ab-brand {
        gap: 10px;
    }
    
    .ab-logo {
        width: 40px;
        height: 40px;
    }
    
    .ab-company-main {
        font-size: 1.1rem;
    }
    
    .ab-company-sub {
        font-size: 0.8rem;
    }
    
    .ab-nav-menu {
        display: none;
    }
    
    .ab-nav-toggle {
        display: flex;
    }
    
    .ab-main {
        margin-top: 85px;
    }
    
    .ab-hero {
        padding: 120px 0 100px;
    }
    
    .ab-hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        padding: 0 24px;
    }
    
    .ab-hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .ab-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 24px;
    }
    
    .ab-section-title {
        font-size: 2.4rem;
    }
    
    .ab-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ab-service-card {
        padding: 40px 30px;
        text-align: center;
    }
    
    .ab-advantages-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ab-testimonials {
        padding: 120px 0;
    }
    
    .ab-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .ab-testimonial-featured {
        transform: scale(1);
    }
    
    .ab-testimonial-card {
        padding: 30px 25px;
    }
    
    .ab-testimonial-quote-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .ab-testimonial-author-section {
        gap: 15px;
        padding-top: 20px;
    }
    
    .ab-testimonial-avatar {
        width: 60px !important;
        height: 60px !important;
        border: 3px solid #ff6b35;
    }
    
    .ab-testimonials-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .ab-testimonial-stat {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .ab-stat-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .ab-stat-number {
        font-size: 1.8rem;
    }
    
    .ab-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ab-hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .ab-btn-primary, .ab-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .ab-cta {
        padding: 80px 0;
    }
    
    .ab-cta-title {
        font-size: 2.2rem;
    }
    
    .ab-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .ab-btn-cta-primary,
    .ab-btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
} 