/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables für konsistente Farbpalette */
:root {
    --primary-gold: #d4af37;
    --primary-gold-dark: #b8941f;
    --primary-gold-light: #e8d5a3;
    --accent-amber: #f4a460;
    --accent-caramel: #d2691e;
    --text-dark: #2c2416;
    --text-medium: #5a4a3a;
    --text-light: #8b7355;
    --bg-cream: #faf8f3;
    --bg-warm: #fff9f0;
    --bg-card: #ffffff;
    --shadow-soft: rgba(212, 175, 55, 0.15);
    --shadow-medium: rgba(212, 175, 55, 0.25);
    --shadow-strong: rgba(44, 36, 22, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 50%, #fefcf8 100%);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 243, 0.98) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px var(--shadow-soft);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
    color: var(--primary-gold-dark);
}

.nav-logo i {
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.nav-logo:hover i {
    color: var(--accent-amber);
    transform: rotate(15deg);
}

.nav-logo div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-gold);
    letter-spacing: 0.5px;
}

.nav-logo i {
    font-size: 2rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-amber));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-gold-dark);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-gold);
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger:hover span {
    background: var(--primary-gold-dark);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--primary-gold);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--primary-gold);
}

/* Hero Section */
.hero {
    min-height: 95vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 40%, var(--accent-caramel) 100%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(244, 164, 96, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(244, 164, 96, 0.1) 0%, transparent 40%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3rem;
}

.hero-copy {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
    width: fit-content;
}

.hero-badge i {
    color: #d8ba68;
    font-size: 1.3rem;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-benefits li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.5;
}

.hero-benefits i {
    color: var(--accent-amber);
    margin-top: 0.15rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin: 1rem 0;
    max-width: 650px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-gold-light);
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
}

.feature-item:hover i {
    color: var(--accent-amber);
    transform: scale(1.2);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.phone-cta:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
}

.phone-cta i {
    font-size: 2rem;
    color: var(--primary-gold-light);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
}

.phone-cta:hover i {
    color: var(--accent-amber);
    transform: rotate(15deg) scale(1.1);
}

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

.phone-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.phone-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-media-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    padding: 1.5rem;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 0 0 8px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-image {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero-bubble {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-amber));
    color: #1a1a1a;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-weight: 700;
    min-width: 170px;
}

.bubble-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bubble-phone {
    font-size: 1.5rem;
}

.bubble-note {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.75);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.highlight {
    color: var(--primary-gold-light);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.3);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    color: var(--primary-gold-light);
    font-weight: 600;
    align-items: center;
}

.trust-item {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item i {
    color: var(--accent-amber);
}

.btn i {
    margin-right: 0.5rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--text-dark);
    box-shadow: 0 4px 15px var(--shadow-medium);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-gold-dark) 0%, var(--accent-caramel) 100%);
    box-shadow: 0 6px 20px var(--shadow-medium);
    transform: translateY(-2px);
}



.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}









/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 50%, #fefcf8 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold-light), transparent);
    opacity: 0.3;
}

/* Besprechen Section - ohne Hero */
.about:first-of-type {
    padding-top: 120px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-medium) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-amber), var(--primary-gold));
    border-radius: 3px;
    box-shadow: 0 2px 8px var(--shadow-soft);
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.8;
}



.welcome-text {
    font-size: 1.2rem;
    color: #c8a96b;
    font-weight: 600;
    margin-bottom: 2rem;
}

.story-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    /* background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-warm) 100%); */
    border-radius: 25px;
    /* border-left: 6px solid; */
    /* border-image: linear-gradient(180deg, var(--primary-gold), var(--accent-amber)) 1; */
    box-shadow: 0 10px 40px var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-gold), var(--accent-amber));
    opacity: 0.8;
}

.story-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px var(--shadow-medium), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-left-width: 8px;
}

.story-section h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    display: inline-block;
    width: 100%;
}

.story-section h3::before,
.story-section h3::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 1.2rem;
    opacity: 0.6;
}

.story-section h3::before {
    left: -30px;
}

.story-section h3::after {
    right: -30px;
}

.story-content {
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-medium);
    text-align: justify;
}

.story-content em {
    color: var(--primary-gold-dark);
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 50%, transparent 100%);
    padding: 0 4px;
}

.philosophy {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(244, 164, 96, 0.08) 50%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    margin-top: 2rem;
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--primary-gold-light), var(--accent-amber)) 1;
    box-shadow: 0 8px 30px var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-gold-light), var(--accent-amber));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.philosophy p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.philosophy p strong {
    color: var(--primary-gold-dark);
    font-weight: 700;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 50%, transparent 100%);
    padding: 0 4px;
}

.signature {
    margin-top: 1rem;
}

.signature span {
    font-size: 1.3rem;
    color: var(--primary-gold-dark);
    font-weight: 600;
    font-style: italic;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

.signature a {
    color: var(--primary-gold-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.signature a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-amber);
    transition: width 0.3s ease;
}

.signature a:hover {
    color: var(--accent-caramel);
}

.signature a:hover::after {
    width: 100%;
}



.about-image {
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 50px var(--shadow-strong), 0 0 0 5px rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 5px solid;
    border-image: linear-gradient(135deg, var(--primary-gold-light), var(--accent-amber)) 1;
    position: relative;
}

.about-img::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--primary-gold-light), var(--accent-amber));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-img:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 30px 60px var(--shadow-medium), 0 0 0 8px rgba(212, 175, 55, 0.15);
}

.about-img:hover::before {
    opacity: 0.3;
    filter: blur(10px);
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark), var(--accent-caramel));
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 50px var(--shadow-medium);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image-placeholder:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 60px var(--shadow-medium);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}







/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    padding: 70px 0 25px;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), var(--accent-amber), var(--primary-gold), transparent);
    opacity: 0.6;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-gold-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--accent-amber), var(--accent-caramel));
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(244, 164, 96, 0.4);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-gold-light);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-section address {
    font-style: normal;
    display: inline;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--primary-gold-light);
    transition: all 0.3s ease;
}

.footer-section ul li:hover i {
    color: var(--accent-amber);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid;
    border-image: linear-gradient(90deg, transparent, var(--primary-gold), transparent) 1;
    color: var(--primary-gold-light);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-copy {
        align-items: center;
    }
    
    .hero-benefits {
        align-items: center;
    }
    
    .hero-benefits li {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-media-inner {
        max-width: 420px;
        margin: 0 auto;
    }
    
    .hero-image {
        max-width: 420px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .feature-item {
        font-size: 0.8rem;
    }
    
    .feature-item i {
        font-size: 0.9rem;
    }
    
    .phone-cta {
        padding: 1rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        margin: 0 auto;
        max-width: 300px;
    }
    
    .phone-number {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .story-section {
        padding: 1.5rem;
    }
    
    .story-section h3 {
        font-size: 1.3rem;
    }
    
    .story-section h3::before,
    .story-section h3::after {
        display: none;
    }
    
    .story-content p {
        font-size: 0.95rem;
    }
    
    .about-img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-text h2::after {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .story-section {
        padding: 1.5rem;
    }
    
    .story-section h3 {
        font-size: 1.4rem;
    }
    
    .phone-cta {
        padding: 1.2rem 1.5rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
}

/* Accessibility Improvements */
a:focus,
button:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .hero-actions,
    .btn {
        display: none;
    }
    
    body {
        background: white;
    }
} 

 