/**
 * Landing Page - Car Accidents
 * Slam Dunk Attorney
 */

/* Base Reset & Variables */
:root {
    --sd-accent: #af4205;
    --sd-blue: #2f4088;
    --sd-dark: #212830;
    --sd-gray: #54595f;
}

/* Hide other CTAs */
.page-template-single-page-ad-landing #icw,
.page-template-single-page-ad-landing #icw--call--content,
.page-template-single-page-ad-landing #icw--alert,
.page-template-single-page-ad-landing .trp-floating-switcher {
    display: none !important;
}

.page-template-single-page-ad-landing .site-container .site-inner {
    width: 100%;
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.sd-landing-wrapper {
    background-color: var(--sd-dark);
    color: #ffffff;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.6;
}

.sd-landing-wrapper h1,
.sd-landing-wrapper h2,
.sd-landing-wrapper h3,
.sd-landing-wrapper h4,
.sd-landing-wrapper h5,
.sd-landing-wrapper h6,
.sd-landing-wrapper .sd-stat-number,
.sd-landing-wrapper .sd-btn {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 900;
}

.sd-landing-wrapper h2 {
    font-size: 32px;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.sd-landing-wrapper h4 {
    font-size: 20px;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

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

/* Sticky Mobile Call Header */
.sd-mobile-sticky {
    display: none;
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: var(--sd-accent);
    color: #fff;
    padding: 12px 15px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.sd-mobile-sticky span {
    font-weight: bold;
    font-size: 14px;
}

.sd-mobile-sticky a {
    background: #fff;
    color: var(--sd-accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulse 2s infinite;
}

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

/* Header */
.sd-header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sd-logo {
    font-weight: 900;
    font-size: 24px;
    line-height: 1;
}

.sd-logo span {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.7;
}

.sd-header-cta .phone {
    color: var(--sd-accent);
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
}

/* Hero Badge */
.sd-badge {
    display: inline-block;
    background: var(--sd-blue);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Hero Section */
.sd-hero {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: right center;
}

/* When featured image is set via inline style, hide default ::before and apply fade to hero */
.sd-hero[style*="background-image"] {
    background-color: var(--sd-dark);
    background-blend-mode: overlay;
}

.sd-hero[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--sd-dark);
    opacity: 0.85;
    z-index: 0;
}

/* Featured image overlay for fade effect */
.sd-hero[style*="background-image"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--sd-dark) 40%, rgba(33, 40, 48, 0.7) 70%, transparent 100%);
    z-index: 0;
    opacity: 1;
    filter: none;
    border-radius: 0;
}

.sd-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background-image: url('https://slamdunkattorney.com/wp-content/uploads/2024/05/car-accidents.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    transform: skewX(-10deg);
    transform-origin: top right;
}

.sd-hero::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--sd-blue);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(60px);
}

.sd-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sd-col-content {
    flex: 1;
    min-width: 300px;
}

.sd-col-form {
    flex: 0 0 400px;
    min-width: 300px;
}

.sd-hero h1 {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 15px;
    margin-bottom: 20px;
}

.sd-hero h1 span {
    color: var(--sd-accent);
}

.sd-check-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.sd-check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 18px;
    opacity: 0.9;
}

.sd-check-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23af4205' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'/%3E%3Cpath d='m9 11 3 3L22 4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Form Styling */
.sd-form-card {
    background: var(--sd-gray);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.sd-form-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
}

/* Gravity Forms Styling */
.sd-form-card .gform_title {
    color: #ffffff;
    font-weight: 900;
}

.sd-form-card .gform_description {
    color: #d0d1d5;
    font-size: 14px;
}

.sd-form-card .gform_required_legend {
    display: none;
}

.sd-form-card input:not(.gform_button),
.sd-form-card select {
    width: 100%;
    height: 45px;
    background-color: #212830 !important;
    border-radius: 8px !important;
    color: #ffffff;
    font-size: 16px !important;
    padding: 12px 15px;
}

.sd-form-card select {
    color: rgba(255,255,255,0.5) !important;
}

.sd-form-card input:not(.gform_button):focus,
.sd-form-card select:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--sd-accent);
}

.sd-form-card input::placeholder {
    color: rgba(255,255,255,0.5);
}

.sd-form-card p {
    color: #f3f4f6 !important;
}

.sd-form-card .gform-footer {
    margin-top: 16px;
}

.sd-form-card .gform_wrapper .gform-footer .gform_button.button {
    width: 100% !important;
    background: var(--sd-accent);
    border-radius: 8px !important;
    font-weight: 900 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-transform: uppercase !important;
}

.sd-form-card .gform_button svg {
    flex-shrink: 0;
}

.sd-form-card .gform_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(175,66,5,0.3);
}

.sd-form-card label {
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

/* Sections */
.sd-section-white {
    background: #ffffff;
    color: #333333;
    padding: 80px 0;
}

.sd-section-gray {
    background: var(--sd-gray);
    padding: 80px 0;
}

.sd-section-dark {
    background: var(--sd-dark);
    padding: 80px 0;
}

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

/* Tighter grid when 4+ items */
.sd-grid:has(.sd-edu-card:nth-child(4)) {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.sd-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sd-stat-box {
    text-align: center;
}

.sd-stat-number {
    font-size: 40px;
    font-weight: 900;
    color: var(--sd-blue);
    display: block;
}

/* Stat Box Animation */
.sd-stat-box {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sd-stat-box.sd-animate {
    opacity: 1;
    transform: translateY(0);
}

.sd-stat-box:nth-child(1) { transition-delay: 0s; }
.sd-stat-box:nth-child(2) { transition-delay: 0.15s; }
.sd-stat-box:nth-child(3) { transition-delay: 0.3s; }
.sd-stat-box:nth-child(4) { transition-delay: 0.45s; }

/* Result Cards */
.sd-result-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid var(--sd-accent);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    /* Animation initial state */
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.sd-result-card.sd-animate {
    opacity: 1;
    transform: scale(1);
}

.sd-result-card:nth-child(1) { transition-delay: 0s; }
.sd-result-card:nth-child(2) { transition-delay: 0.15s; }
.sd-result-card:nth-child(3) { transition-delay: 0.3s; }

.sd-result-card strong {
    font-size: 24px;
    font-weight: 900;
    color: var(--sd-accent);
    display: block;
    margin-bottom: 5px;
}

.sd-result-card .sd-case-type {
    font-weight: bold;
    color: #666;
    margin-bottom: 15px;
}

.sd-result-card .sd-quote {
    font-style: italic;
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.sd-stars {
    color: #f5c518;
    font-size: 14px;
}

/* Educational Cards */
.sd-edu-card {
    background: var(--sd-dark);
    padding: 30px;
    border-radius: 16px;
    /* Animation initial state */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sd-edu-card.sd-animate {
    opacity: 1;
    transform: translateY(0);
}

.sd-edu-card:nth-child(1) { transition-delay: 0s; }
.sd-edu-card:nth-child(2) { transition-delay: 0.2s; }
.sd-edu-card:nth-child(3) { transition-delay: 0.4s; }
.sd-edu-card:nth-child(4) { transition-delay: 0.6s; }

.sd-edu-card .sd-icon-box {
    width: 48px;
    height: 48px;
    background: var(--sd-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sd-edu-card .sd-icon-box svg {
    width: 24px;
    height: 24px;
}

.sd-edu-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Compact card styles when 4+ items */
.sd-grid:has(.sd-edu-card:nth-child(4)) .sd-edu-card {
    padding: 25px;
    border-radius: 12px;
}

.sd-grid:has(.sd-edu-card:nth-child(4)) .sd-icon-box {
    width: 44px;
    height: 44px;
    margin-bottom: 15px;
}

.sd-grid:has(.sd-edu-card:nth-child(4)) .sd-icon-box svg {
    width: 22px;
    height: 22px;
}

.sd-grid:has(.sd-edu-card:nth-child(4)) .sd-edu-card h4 {
    font-size: 17px;
    margin-bottom: 12px;
}

.sd-edu-card p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.6;
}

.sd-edu-card ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.sd-edu-card ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Compact text when 4+ items */
.sd-grid:has(.sd-edu-card:nth-child(4)) .sd-edu-card p {
    font-size: 13px;
    margin-bottom: 12px;
}

.sd-grid:has(.sd-edu-card:nth-child(4)) .sd-edu-card ul {
    padding-left: 18px;
    font-size: 13px;
}

.sd-grid:has(.sd-edu-card:nth-child(4)) .sd-edu-card ul li {
    margin-bottom: 6px;
}

.sd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    list-style: none !important;
    padding: 0;
    padding-left: 0 !important;
    opacity: 1 !important;
}

.sd-tag,
.sd-tags li {
    background: rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 0 !important;
}

/* Compact tags when 4+ items */
.sd-grid:has(.sd-edu-card:nth-child(4)) .sd-tags {
    gap: 6px;
    margin-top: 12px;
}

.sd-grid:has(.sd-edu-card:nth-child(4)) .sd-tags li {
    padding: 5px 10px;
    font-size: 11px;
}
    opacity: 1 !important;
}

.sd-tag,
.sd-tags li {
    background: rgba(255,255,255,0.15);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 0 !important;
}

/* Awards Bar */
.sd-awards-bar {
    background: #f5f5f5;
    padding: 40px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.sd-awards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.sd-award-item {
    display: block;
    height: 60px;
    filter: grayscale(100%);
    opacity: 0;
    transform: translateY(10px);
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.sd-awards-grid.sd-animate .sd-award-item {
    opacity: 0.6;
    transform: translateY(0);
}

.sd-awards-grid.sd-animate .sd-award-item:nth-child(1) { transition-delay: 0s; }
.sd-awards-grid.sd-animate .sd-award-item:nth-child(2) { transition-delay: 0.05s; }
.sd-awards-grid.sd-animate .sd-award-item:nth-child(3) { transition-delay: 0.1s; }
.sd-awards-grid.sd-animate .sd-award-item:nth-child(4) { transition-delay: 0.15s; }
.sd-awards-grid.sd-animate .sd-award-item:nth-child(5) { transition-delay: 0.2s; }
.sd-awards-grid.sd-animate .sd-award-item:nth-child(6) { transition-delay: 0.25s; }
.sd-awards-grid.sd-animate .sd-award-item:nth-child(7) { transition-delay: 0.3s; }
.sd-awards-grid.sd-animate .sd-award-item:nth-child(8) { transition-delay: 0.35s; }

.sd-award-item:hover {
    filter: grayscale(0%);
    opacity: 1 !important;
    transform: scale(1.05);
}

.sd-award-item img {
    height: 100%;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

/* Meet Attorney Section */
.sd-attorney-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.sd-attorney-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://slamdunkattorney.com/wp-content/uploads/2026/03/2025-12-03.webp');
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
}

.sd-attorney-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(33,40,48,0.98) 0%, rgba(33,40,48,0.95) 50%, rgba(33,40,48,0.75) 100%);
    z-index: 1;
}

.sd-attorney-row {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sd-attorney-photo {
    flex: 0 0 280px;
}

.sd-attorney-photo img {
    width: 280px;
    height: 280px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 4px solid var(--sd-accent);
}

.sd-attorney-content {
    flex: 1;
}

.sd-attorney-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.sd-attorney-quote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
    border-left: 4px solid var(--sd-accent);
}

.sd-attorney-name {
    font-weight: 900;
    font-size: 18px;
    color: var(--sd-accent);
}

.sd-attorney-title {
    font-size: 14px;
    opacity: 0.7;
}

/* Section Subheadings */
.sd-section-subheading {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Process Callout */
.sd-process-callout {
    text-align: center;
    margin-bottom: 50px;
}

.sd-process-callout p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Process Steps */
.sd-process {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.sd-process-line {
    position: absolute;
    left: 24px;
    top: 26px;
    bottom: 0;
    width: 4px;
    background: var(--sd-blue);
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 1.2s ease-out;
    height: calc(100% - 92px);
}

.sd-process.sd-animate .sd-process-line {
    transform: scaleY(1);
}

.sd-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sd-step.sd-animate {
    opacity: 1;
    transform: translateX(0);
}

.sd-step:nth-child(2) { transition-delay: 0.3s; }
.sd-step:nth-child(3) { transition-delay: 0.6s; }
.sd-step:nth-child(4) { transition-delay: 0.9s; }
.sd-step:last-child { margin-bottom: 0; }

.sd-step-number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--sd-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    border: 4px solid var(--sd-dark);
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sd-step.sd-animate .sd-step-number {
    transform: scale(1);
}

.sd-step:nth-child(2) .sd-step-number { transition-delay: 0.4s; }
.sd-step:nth-child(3) .sd-step-number { transition-delay: 0.7s; }
.sd-step:nth-child(4) .sd-step-number { transition-delay: 1s; }

.sd-step-content h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.sd-step-content p {
    opacity: 0.7;
    line-height: 1.7;
}

.sd-btn {
    background: var(--sd-accent);
    color: #fff;
    padding: 18px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}

.sd-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 10px 30px rgba(175,66,5,0.3);
}

.sd-btn-lg {
    padding: 20px 40px;
    font-size: 18px;
}

/* Footer */
.sd-footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: var(--sd-dark);
}

.sd-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.sd-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
}

.sd-footer-links {
    display: flex;
    gap: 30px;
}

.sd-footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.sd-footer-links a:hover {
    opacity: 1;
    color: var(--sd-accent);
}

.sd-footer-disclaimer {
    font-size: 11px;
    opacity: 0.4;
    max-width: 400px;
    line-height: 1.6;
}

/* =============================================
   FINAL CTA (INLINE IN PROCESS SECTION)
   ============================================= */
.sd-final-cta-heading {
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #fff;
}

.sd-final-cta-body {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #fff;
}

.sd-section-dark .sd-tagline {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 15px;
    color: var(--sd-blue);
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

/* Tablet */
@media (max-width: 991px) {
    .sd-hero h1 {
        font-size: 36px;
    }
    
    .sd-col-form {
        flex: 0 0 350px;
    }
    
    .sd-stat-number {
        font-size: 32px;
    }
    
    .sd-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sd-process-line {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .sd-container {
        padding: 0 15px;
    }
    
    /* Sticky Mobile Header */
    .sd-mobile-sticky {
        display: flex;
    }
    
    /* Header Mobile */
    .sd-header .sd-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .sd-header {
        padding: 15px 0;
    }
    
    .sd-logo {
        text-align: center;
    }
    
    .sd-logo img {
        max-height: 50px !important;
    }
    
    .sd-header-cta {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100%;
    }
    
    .sd-header-cta > div {
        text-align: center !important;
    }
    
    .sd-header-cta .sd-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Hero Mobile */
    .sd-hero {
        padding: 40px 0;
    }
    
    .sd-hero::before {
        display: none;
    }
    
    .sd-hero h1 {
        font-size: 28px;
        text-align: center;
    }
    
    .sd-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .sd-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .sd-col-content {
        text-align: center;
    }
    
    .sd-col-form {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .sd-check-list {
        text-align: left;
        display: inline-block;
    }
    
    .sd-col-content .sd-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Form Card Mobile */
    .sd-form-card {
        padding: 20px;
    }
    
    /* Sections Mobile */
    .sd-section-white,
    .sd-section-gray,
    .sd-section-dark {
        padding: 50px 0;
    }
    
    .sd-section-white h2,
    .sd-section-gray h2,
    .sd-section-dark h2 {
        font-size: 24px;
        margin-bottom: 30px !important;
    }
    
    /* Grid Mobile */
    .sd-grid,
    .sd-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sd-stat-number {
        font-size: 28px;
    }
    
    /* Process Steps Mobile */
    .sd-process-line {
        display: none;
    }
    
    .sd-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        transform: translateY(30px);
    }
    
    .sd-step.sd-animate {
        transform: translateY(0);
    }
    
    .sd-step-number {
        margin: 0 auto;
    }
    
    /* Footer Mobile */
    .sd-footer {
        padding: 30px 0;
    }
    
    .sd-footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .sd-footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .sd-footer-disclaimer {
        max-width: 100%;
    }
    
    /* Buttons Mobile */
    .sd-btn {
        padding: 15px 25px;
        font-size: 14px;
        display: block;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    
    .sd-btn-lg {
        padding: 18px 30px;
        font-size: 16px;
    }
    
    /* Awards Bar Mobile */
    .sd-awards-bar {
        padding: 30px 20px;
    }
    
    .sd-awards-grid {
        gap: 20px;
    }
    
    .sd-award-item {
        height: 45px;
    }
    
    .sd-award-item img {
        max-width: 90px;
    }
    
    /* Attorney Section Mobile */
    .sd-attorney-section {
        padding: 50px 0;
    }
    
    .sd-attorney-section::after {
        background: linear-gradient(to bottom, rgba(33,40,48,0.92) 0%, rgba(33,40,48,0.88) 100%);
    }
    
    .sd-attorney-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .sd-attorney-photo {
        flex: none;
    }
    
    .sd-attorney-photo img {
        width: 200px;
        height: 200px;
    }
    
    .sd-attorney-quote {
        padding-left: 0;
        border-left: none;
        border-top: 4px solid var(--sd-accent);
        padding-top: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .sd-hero h1 {
        font-size: 24px;
    }
    
    .sd-check-list li {
        font-size: 16px;
        padding-left: 30px;
    }
    
    .sd-check-list li:before {
        width: 18px;
        height: 18px;
    }
    
    .sd-header-cta .phone {
        font-size: 18px;
    }
    
    .sd-grid-4 {
        gap: 15px;
    }
    
    .sd-stat-number {
        font-size: 24px;
    }
}

/* Phone Link */
.sd-phone-link {
    color: var(--sd-blue);
    text-decoration: none;
}
.sd-phone-link:hover {
    text-decoration: underline;
}
