/* Premium CSS Reset & Curated Dark Theme */
:root {
    --bg-dark: #07080a;
    --bg-card: rgba(16, 20, 26, 0.75);
    --bg-card-hover: rgba(22, 28, 36, 0.9);
    --border-color: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(34, 197, 94, 0.4);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-green: #22c55e;
    --accent-green-bright: #4ade80;
    --accent-blue: #2563eb;
    --accent-blue-bright: #3b82f6;
    --accent-glow: rgba(34, 197, 94, 0.25);
    --font-sans: 'Outfit', sans-serif;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 30px 60px -15px rgba(0, 0, 0, 0.85);
}

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

body {
    background-color: var(--bg-dark);
    /* High-tech CSS Grid dot pattern background */
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
    background-size: 32px 32px, 64px 64px, 64px 64px;
    background-position: center center;
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Glow Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    -webkit-filter: blur(130px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
    transition: var(--transition);
}

.orb-1 {
    top: 8%;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.22) 0%, transparent 70%);
}

.orb-2 {
    top: 45%;
    right: -150px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
}

.orb-3 {
    bottom: 12%;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
}

/* Kapsayıcı (Container) */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background-color: rgba(7, 8, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.logo-icon {
    font-size: 1.6rem;
    animation: pulseIcon 2.5s infinite;
}

@keyframes pulseIcon {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(34, 197, 94, 0.4)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.8)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(34, 197, 94, 0.4)); }
}

.logo-accent {
    color: var(--accent-green);
    background: linear-gradient(90deg, var(--accent-green-bright) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-call:hover {
    background-color: var(--accent-blue-bright);
    border-color: var(--accent-blue-bright);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 120px 0;
    background-image: 
        linear-gradient(180deg, rgba(7, 8, 10, 0.95) 0%, rgba(7, 8, 10, 0.55) 50%, rgba(7, 8, 10, 0.98) 100%), 
        url('images/engine.png');
    background-size: cover;
    background-position: center right;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.18);
    color: var(--accent-green-bright);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-green-bright);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent-green-bright) 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

/* Hero "Hemen Arayın" & "WhatsApp" Butonları (İlk Açılışta Görünür) */
.hero-cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-call-large {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-blue-bright) 0%, var(--accent-blue) 100%);
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-call-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
}

.btn-whatsapp-outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(34, 197, 94, 0.05);
    border: 2px solid var(--accent-green-bright);
    color: var(--accent-green-bright);
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-whatsapp-outline:hover {
    background-color: var(--accent-green);
    color: #022c10;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}

.bullet-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: rgba(34, 197, 94, 0.15);
    color: var(--accent-green-bright);
    border-radius: 50%;
    font-size: 0.85rem;
}

/* Premium Form Card */
.hero-form-wrapper {
    width: 100%;
}

.form-card {
    background: rgba(18, 22, 28, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 3px solid var(--accent-green-bright);
    padding: 36px 30px;
    border-radius: 24px;
    box-shadow: 
        0 30px 60px -15px rgba(0, 0, 0, 0.85),
        0 0 50px rgba(34, 197, 94, 0.05);
}

.form-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.form-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-green-bright);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, .form-group select {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-primary);
    padding: 14px 18px;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-group select option {
    background-color: #12161c;
    color: var(--text-primary);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--accent-green-bright);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.15);
}

.btn-submit-wizard {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-green-bright) 0%, var(--accent-green) 100%);
    border: none;
    color: #022c10;
    padding: 16px;
    border-radius: 14px;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
    margin-top: 10px;
}

.btn-submit-wizard:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
}

/* Titles */
.section-title {
    font-size: 2.7rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 40%, #a1a1a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Brands Section */
.brands {
    padding: 120px 0;
    position: relative;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.brand-card {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 40px 32px;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
}

.brand-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 
        0 20px 40px -15px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(34, 197, 94, 0.08);
}

.card-glow {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: var(--transition);
}

.brand-card:hover .card-glow {
    transform: scale(1.6);
}

.brand-icon {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.brand-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.brand-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Intermediate Action Banner (Bizi Arayın Banner) */
.action-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(8, 9, 12, 0.8) 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.action-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.action-banner-container {
    position: relative;
    z-index: 1;
}

.action-banner h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.action-banner p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
}

.btn-call-banner {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-blue-bright) 0%, var(--accent-blue) 100%);
    color: var(--text-primary);
    padding: 16px 40px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-call-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
}

/* Categories Section */
.categories {
    padding: 120px 0;
    background: rgba(18, 22, 28, 0.45);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.category-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 
        0 25px 45px -10px rgba(0, 0, 0, 0.75),
        0 0 30px rgba(34, 197, 94, 0.12);
}

.category-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.category-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(180deg, rgba(16, 20, 26, 0) 0%, rgba(16, 20, 26, 0.95) 100%);
}

.category-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-img-wrapper img {
    transform: scale(1.1);
}

.category-card-content {
    padding: 28px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: rgba(16, 20, 26, 0.95);
}

.category-card-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.category-card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
}

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

.benefit-item {
    text-align: center;
    padding: 24px;
}

.benefit-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 68px;
    height: 68px;
    background-color: rgba(34, 197, 94, 0.08);
    color: var(--accent-green-bright);
    border-radius: 50%;
    margin-bottom: 24px;
}

.benefit-item h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: rgba(18, 22, 28, 0.4);
    border-top: 1px solid var(--border-color);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.rating {
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #fbbf24;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.author {
    color: var(--accent-green-bright);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* FAQ */
.faq {
    padding: 120px 0;
}

.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    font-weight: 800;
    font-size: 1.15rem;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-green-bright);
    background-color: rgba(255, 255, 255, 0.01);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 0 solid transparent;
}

.faq-answer p {
    padding: 0 30px 24px 30px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-item.active {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-green-bright);
}

.faq-item.active .faq-answer {
    border-top: 1px solid var(--border-color);
}

/* Contact & Map */
.contact {
    padding: 120px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    align-items: center;
}

.text-left {
    text-align: left;
}

.contact-desc {
    color: var(--text-secondary);
    margin-bottom: 36px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-details {
    list-style: none;
    margin-bottom: 30px;
}

.contact-details li {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.contact-details a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border-bottom: 1px dashed var(--accent-green-bright);
}

.contact-details a:hover {
    color: var(--accent-green-bright);
}

/* Footer */
.footer {
    background-color: #040507;
    padding: 70px 0 40px 0;
    border-top: 1px solid var(--border-color);
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: justify;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

/* Mobil Alt Sabit Hızlı Aksiyon Çubuğu (Mobile Sticky Footer) */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    display: none; /* Masaüstünde gizli */
    z-index: 9999;
    background: rgba(7, 8, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.8);
}

.sticky-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 800;
    height: 100%;
    transition: var(--transition);
}

.sticky-call {
    background: linear-gradient(135deg, var(--accent-blue-bright) 0%, var(--accent-blue) 100%);
    color: var(--text-primary);
}

.sticky-call:active {
    background: var(--accent-blue-bright);
}

.sticky-whatsapp {
    background: linear-gradient(135deg, var(--accent-green-bright) 0%, var(--accent-green) 100%);
    color: #022c10;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-whatsapp:active {
    background: var(--accent-green-bright);
}

/* Mobile Responsive Media Queries */
@media (max-width: 992px) {
    .hero {
        padding: 150px 0 90px 0;
        background-position: center center;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    /* Mobil Sabit Alt Çubuğu Aktif Et */
    .mobile-sticky-bar {
        display: flex;
    }
    
    /* Mobil alt barın arkada metin kapatmaması için body boşluğu */
    body {
        padding-bottom: 65px;
    }
    
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn-call-large, .btn-whatsapp-outline {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }
    
    .form-card {
        padding: 30px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .btn-call {
        padding: 10px 16px;
    }
    
    .action-banner h2 {
        font-size: 1.8rem;
    }
    
    .btn-call-banner {
        width: 100%;
        font-size: 1rem;
        padding: 14px 20px;
    }
}
