/* DGS Security Systems - Landing Page Styles */
/* Mobile-first, conversion-optimized design matching dgs-security.co.uk brand */

:root {
    --primary-blue: #182966;
    --secondary-blue: #2ea3f2;
    --accent-orange: #28a745;
    --accent-orange-hover: #218838;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f8ff;
    --bg-white: #fff;
    --border-color: #e0e0e0;
    --success-green: #27ae60;
    --error-red: #e74c3c;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
}

.cookie-notice p {
    margin: 0 1rem 0 0;
    font-size: 0.9rem;
}

.cookie-notice a {
    color: var(--accent-orange);
    text-decoration: underline;
}

.cookie-notice.hidden {
    display: none;
}

.btn-small {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    min-height: 44px;
    min-width: 44px;
    transition: background 0.3s;
}

.btn-small:hover,
.btn-small:focus {
    background: var(--accent-orange-hover);
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Header Buttons */
.btn-phone {
    background: transparent;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.btn-phone:hover,
.btn-phone:focus {
    background: rgba(255,255,255,0.1);
    outline: 2px solid white;
    outline-offset: 2px;
}

.btn-quote-header {
    background: var(--accent-orange);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: background 0.3s;
}

.btn-quote-header:hover,
.btn-quote-header:focus {
    background: var(--accent-orange-hover);
    outline: 2px solid white;
    outline-offset: 2px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-brand strong {
    font-size: 1.25rem;
}

.header-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: white;
    border-radius: 50%;
    padding: 0.3rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subhead {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: 1.5rem;
}

/* Premium Trust Bar */
.trust-bar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.75rem 1rem;
    border-top: 3px solid var(--secondary-blue);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-blue) 0%, 
        var(--secondary-blue) 50%, 
        var(--accent-orange) 100%);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(46, 163, 242, 0.2);
}

.trust-item:hover::before {
    transform: scaleX(1);
}

.trust-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.trust-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-orange));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.trust-item:hover .trust-icon {
    transform: rotate(360deg) scale(1.1);
}

.trust-item:hover .trust-icon::after {
    opacity: 1;
}

.trust-icon svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
}

.trust-text strong {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
    display: block;
}

/* Responsive adjustments for trust bar */
@media (max-width: 1200px) {
    .trust-items {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 968px) {
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .trust-bar {
        padding: 2rem 1rem;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-item {
        padding: 1.25rem 1rem;
    }
    
    .trust-text strong {
        font-size: 0.9rem;
    }
}

.hero-benefits {
    margin: 1.5rem 0;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.125rem;
}

.benefits-list li {
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.25rem;
}

.hero-cta {
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.trust-badges-hero {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-minimal img {
    height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 4px;
    background: white;
}

.trust-badge-minimal svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

@media (max-width: 768px) {
    .trust-badges-hero {
        gap: 1rem;
        margin-top: 2.5rem;
    }
    
    .trust-badge-minimal {
        padding: 0.4rem 0.8rem;
    }
    
    .trust-badge-minimal img {
        height: 30px;
    }
    
    .badge-icon {
        font-size: 1.1rem;
    }
}

/* Form Sections */
.form-section {
    padding: 2rem 1rem;
    background: var(--bg-light);
}

.form-above-fold {
    background: white;
    border-bottom: 3px solid var(--primary-blue);
}

.form-section h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.lead-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.form-secondary .lead-form {
    background: var(--bg-white);
}

/* Honeypot - hidden from users */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 600px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: var(--error-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error-red);
}

.error-message {
    display: block;
    color: var(--error-red);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    min-width: 20px;
    min-height: 20px;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-submit {
    width: 100%;
    max-width: 300px;
}

.form-reassurance {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
    padding: 0;
    width: 100%;
}

.cta-callback {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    min-height: 44px;
    transition: all 0.3s;
}

.cta-callback:hover,
.cta-callback:focus {
    background: var(--primary-blue);
    color: white;
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.callback-intro-text {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin: 1.5rem auto 0.75rem;
    max-width: 700px;
    font-weight: 700;
}

.callback-section-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.callback-heading {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 700;
}

.callback-fields {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.callback-fields .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .callback-fields .form-row {
        grid-template-columns: 1fr;
    }
}

.btn-callback-submit {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.callback-fields .checkbox-group {
    margin-top: 0;
    margin-bottom: 0;
}

.form-assurances {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.assurance-item {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.assurance-item strong {
    color: var(--primary-blue);
    display: block;
    font-size: 1rem;
}

.assurance-item a {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Award Recognition Section */
.award-section {
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.award-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
}

.award-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.award-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.3s ease;
}

.award-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.award-photo {
    width: 100%;
    height: auto;
    display: block;
    border: 8px solid white;
}

.award-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid #FFD700;
    border-radius: 12px;
    pointer-events: none;
}

.award-badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

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

.award-text {
    padding: 2rem;
}

.award-label {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #182966;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.award-text h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.award-description {
    font-size: 1.125rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.award-person {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.person-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.person-info strong {
    font-size: 1.25rem;
    color: var(--primary-navy);
}

.person-info span {
    font-size: 0.95rem;
    color: var(--text-light);
}

.award-quote {
    background: white;
    color: #000;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    position: relative;
    font-style: italic;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-blue);
}

.award-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 4rem;
    color: var(--primary-blue);
    font-family: Georgia, serif;
    opacity: 0.2;
}

.award-quote p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    color: #000;
}

.quote-attribution {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.quote-attribution strong {
    font-size: 1.1rem;
    color: var(--primary-navy);
    font-style: normal;
}

.quote-attribution span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: normal;
}

@media (max-width: 968px) {
    .award-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .award-image-wrapper {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .award-image-wrapper:hover {
        transform: scale(1.02);
    }
}

/* Services Section */
.services-section {
    padding: 2.5rem 1rem;
    background: white;
}

.services-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 16px rgba(30, 90, 168, 0.15);
    transform: translateY(-4px);
}

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

.service-image {
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.btn-service {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    min-height: 44px;
    transition: background 0.3s;
}

.btn-service:hover,
.btn-service:focus {
    background: var(--secondary-blue);
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 2.5rem 1rem;
    background: var(--bg-light);
}

.testimonials-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-blue);
}

.testimonial-rating {
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-card blockquote {
    margin: 0;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonial-card blockquote p {
    margin: 0;
}

.testimonial-meta {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonials-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: color 0.3s;
}

.btn-link:hover,
.btn-link:focus {
    color: var(--secondary-blue);
    text-decoration: underline;
}

/* Trust Badges Section */
.trust-section {
    padding: 1rem 1rem;
    background: white;
}

.trust-badges-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.badge-large {
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-large img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 2.5rem 1rem 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

.footer h3 {
    margin-bottom: 0.75rem;
    color: var(--accent-orange);
    font-size: 1.1rem;
}

.footer address {
    font-style: normal;
    line-height: 1.8;
    font-size: 0.95rem;
}

.service-area {
    margin-top: 0.75rem;
    font-style: italic;
    color: #999;
    font-size: 0.9rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover,
.footer a:focus {
    color: var(--accent-orange);
    text-decoration: underline;
}

.footer-phone {
    font-size: 1.4rem;
    font-weight: 600;
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-policy {
    text-align: center;
    margin-bottom: 1.5rem;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

.privacy-policy h4 {
    font-size: 0.85rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.privacy-policy p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #888;
    max-width: 900px;
    margin: 0 auto;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--success-green);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.error {
    background: var(--error-red);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .header-content {
        justify-content: center;
    }
    
    .header-brand {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .benefits-list {
        flex-direction: column;
        align-items: center;
    }
    
    .toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

/* Focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header, .cookie-notice, .toast {
        display: none;
    }
}
