/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1b1b1b;
}

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

/* Header */
.header {
    background-color: #1b1b1b;
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo h1 {
    color: #ffa31a;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    transition: color 0.3s ease;
}

.logo:hover h1 {
    color: #ff8c00;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffa31a;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-container {
    position: relative;
    display: inline-block;
}

.phone-btn {
    background: none;
    border: none;
    color: #ffa31a;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.phone-btn:hover {
    background-color: rgba(255, 163, 26, 0.1);
    transform: scale(1.1);
}

.phone-tooltip {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #333;
    color: #ffa31a;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.phone-tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #333;
}

.phone-container:hover .phone-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-cta {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #ffa31a;
    color: #1b1b1b;
}

.btn-primary:hover {
    background-color: #e8921a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 163, 26, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #808080;
}

.btn-secondary:hover {
    border-color: #ffa31a;
    color: #ffa31a;
}

.btn-cta {
    background: linear-gradient(135deg, #ffa31a, #ff8c00);
    color: #1b1b1b;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 163, 26, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 163, 26, 0.4);
    border-color: #ffffff;
}

/* Hero Section */
.hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #1b1b1b 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 163, 26, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero content for pages without visual element */
.hero-content:has(.hero-text:only-child) {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.125rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

/* Hero title for single-column pages */
.hero-content:has(.hero-text:only-child) .hero-title {
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffa31a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Compact hero for text-only pages */
.hero.compact {
    padding: 8px 0 6px !important;
    min-height: 40vh !important;
    overflow: hidden;
}

/* Text styles for compact hero */
.hero.compact .hero-title {
    font-size: 1.8rem !important;
    margin-bottom: 0.2rem !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
}

.hero.compact .hero-subtitle {
    font-size: 1rem !important;
    margin-bottom: 0.1rem !important;
    line-height: 1.2 !important;
}

.hero.compact .hero-description {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
    line-height: 1.2 !important;
}

.highlight {
    color: #ffa31a;
}

.hero-subtitle {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 0.6rem;
}

.hero-description {
    color: #999999;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

/* Hero subtitle and description for single-column pages */
.hero-content:has(.hero-text:only-child) .hero-subtitle {
    font-size: 0.8rem;
    color: #cccccc;
    margin-bottom: 0.05rem;
    font-weight: 500;
}

.hero-content:has(.hero-text:only-child) .hero-description {
    font-size: 0.7rem;
    color: #aaaaaa;
    margin-bottom: 0.1rem;
    line-height: 1.2;
}

.hero-actions {
    margin-bottom: 1rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 0.8rem;
}

.hero-features span {
    color: #cccccc;
    font-size: 0.8rem;
}

/* SMS Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sms-icon {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.sms-icon::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 163, 26, 0.1) 0%, transparent 70%);
    border-radius: 50px;
    z-index: -1;
    animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

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

.phone {
    width: 220px;
    height: 380px;
    background: linear-gradient(145deg, #3a3a3a, #1a1a1a);
    border-radius: 35px;
    padding: 25px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.7),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    border: 1px solid #444;
    transition: transform 0.3s ease;
}

.phone:hover {
    transform: translateY(-5px) rotateX(5deg);
}

.phone::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: #555;
    border-radius: 3px;
}

.phone::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    border: 2px solid #555;
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-radius: 25px;
    padding: 35px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.8);
}

.screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(135deg, #1a1a1a, #000);
    border-radius: 18px 18px 0 0;
}

.message {
    background: linear-gradient(135deg, #ffa31a, #ff8c00, #ff9500);
    color: #1b1b1b;
    padding: 25px;
    border-radius: 25px;
    max-width: 95%;
    box-shadow: 
        0 6px 20px rgba(255, 163, 26, 0.5),
        0 2px 8px rgba(255, 163, 26, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    animation: messagePulse 2s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.message::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ff8c00;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.sender {
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
}

.message p {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #222222;
}

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

.feature-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 163, 26, 0.1);
    border-color: #ffa31a;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #ffa31a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #1b1b1b;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 163, 26, 0.1);
    border-color: #ffa31a;
}

.benefit-card h3 {
    color: #ffa31a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffa31a, #ff8c00);
    text-align: center;
}

.cta-content h2 {
    color: #1b1b1b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #1b1b1b;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta .btn-cta {
    background-color: #ffffff;
    color: #1b1b1b;
    border: 3px solid #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.cta .btn-cta:hover {
    background-color: #1b1b1b;
    border-color: #1b1b1b;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    background-color: #111111;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: #ffa31a;
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

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

/* Responsive Design */
/* ===================== MOBILE STYLES ===================== */
@media (max-width: 768px) {
    /* Убираем горизонтальный скролл */
    html {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Header mobile */
    .header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 8px 15px;
    }
    
    .header-actions {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    /* Hero mobile */
    .hero {
        padding: 30px 0 20px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-visual {
        order: -1;
        display: flex;
        justify-content: center;
    }
    
    .phone {
        width: 160px;
        height: 280px;
        padding: 15px;
    }
    
    .sms-icon {
        animation: none;
    }
    
    .message {
        padding: 12px;
        max-width: 120px;
    }
    
    .sender {
        font-size: 0.8rem;
    }
    
    .message p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    /* Features mobile */
    .features {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
        text-align: center;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Benefits mobile */
    .benefits {
        padding: 40px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 20px;
        text-align: center;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* CTA mobile */
    .cta {
        padding: 40px 0;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .cta p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-section a {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .footer-bottom {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* Compact hero mobile */
    .hero.compact {
        padding: 15px 0 10px !important;
        min-height: 60px !important;
    }
    
    .hero.compact .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero.compact .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .hero.compact .hero-description {
        font-size: 0.8rem !important;
    }
}

/* ===================== SMALL MOBILE STYLES ===================== */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Header small mobile */
    .header {
        padding: 10px 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    /* Hero small mobile */
    .hero {
        padding: 20px 0 15px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .phone {
        width: 140px;
        height: 240px;
        padding: 12px;
    }
    
    .message {
        padding: 10px;
        max-width: 100px;
    }
    
    .sender {
        font-size: 0.7rem;
    }
    
    .message p {
        font-size: 0.7rem;
    }
    
    /* Sections small mobile */
    .features,
    .benefits,
    .cta {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .feature-card,
    .benefit-card {
        padding: 15px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card h3,
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p,
    .benefit-card p {
        font-size: 0.85rem;
    }
    
    .cta h2 {
        font-size: 1.6rem;
    }
    
    .cta p {
        font-size: 0.9rem;
    }
    
    .btn-cta {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    /* Footer small mobile */
    .footer {
        padding: 25px 0 15px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section a,
    .footer-section p {
        font-size: 0.85rem;
    }
    
    /* Compact hero small mobile */
    .hero.compact {
        padding: 10px 0 8px !important;
        min-height: 50px !important;
    }
    
    .hero.compact .hero-title {
        font-size: 1.2rem !important;
    }
    
    .hero.compact .hero-subtitle {
        font-size: 0.8rem !important;
    }
    
    .hero.compact .hero-description {
        font-size: 0.7rem !important;
    }
}

/* ===================== ADDITIONAL MOBILE IMPROVEMENTS ===================== */

/* Убираем переполнения без лишнего скролла */
@media (max-width: 768px) {
    .container,
    .header-content,
    .hero-content,
    .features,
    .benefits,
    .cta,
    .footer-content {
        overflow-x: hidden;
    }
}

/* Улучшаем touch-интерфейс */
@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .btn-cta,
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .phone-btn {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Улучшаем читаемость на мобильных */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.2;
    }
    
    p {
        line-height: 1.6;
    }
}

/* Анимации для мобильных */
@media (max-width: 768px) {
    .feature-card,
    .benefit-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .feature-card:hover,
    .benefit-card:hover {
        transform: translateY(-5px);
    }
}

/* Дополнительные стили для существующего шаблона */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.max-w-4xl {
    max-width: 56rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Styles */
.faq {
    background-color: #222222;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border: none;
    color: #ffffff;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(145deg, #333, #2a2a2a);
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ffa31a;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #1e1e1e;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 1.5rem;
    color: #cccccc;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 163, 26, 0.1);
    border-color: #ffa31a;
}

.stars {
    margin-bottom: 1rem;
}

.star {
    color: #ffa31a;
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.testimonial-author {
    font-weight: 600;
    color: #ffa31a;
    margin-bottom: 0.5rem;
}

.testimonial-company {
    color: #999999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #cccccc;
    font-style: italic;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ffa31a, #ff8c00);
    text-align: center;
}

.cta-content h2 {
    color: #1b1b1b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #1b1b1b;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-button {
    background-color: #1b1b1b;
    color: #ffa31a;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* How it works section */
.how-it-works {
    background-color: #1b1b1b;
}

.step-card {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 163, 26, 0.1);
    border-color: #ffa31a;
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ffa31a;
    margin-bottom: 1rem;
}

.step-title {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Button styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-white {
    background-color: #ffffff;
    color: #1b1b1b;
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #1b1b1b;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero specific styles */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-image-container {
    text-align: center;
    margin: 2rem 0;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for existing template */
@media (max-width: 1024px) {
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-cols-4,
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}