:root {
    --color-primary: #1a365d;
    --color-secondary: #2c5282;
    --color-accent: #ed8936;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-bg-dark: #1a202c;
    --color-border: #e2e8f0;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --transition: 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 400;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

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

.nav-links a {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.hero-cinematic {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    overflow: hidden;
}

.hero-cinematic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1506947411487-a56738267384?w=1920&q=80') center/cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 54, 93, 0.7) 0%, rgba(26, 54, 93, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    color: white;
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: white;
    text-align: center;
    opacity: 0.7;
}

.hero-scroll-hint span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 0.5rem auto 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(10px); }
    60% { transform: rotate(45deg) translateY(5px); }
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.cta-primary:hover {
    background: #dd6b20;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-secondary {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--color-primary);
    font-weight: 600;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.cta-secondary:hover {
    background: var(--color-primary);
    color: white;
}

.cta-inline {
    font-weight: 600;
    color: var(--color-accent);
}

.cta-inline:hover {
    color: #dd6b20;
}

.cta-text {
    font-weight: 600;
    color: var(--color-secondary);
    border-bottom: 2px solid transparent;
}

.cta-text:hover {
    border-bottom-color: var(--color-secondary);
}

.hook-section {
    padding: 6rem 2rem;
    background: var(--color-bg);
}

.hook-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hook-text {
    flex: 1;
    min-width: 300px;
}

.hook-text h2 {
    margin-bottom: 1.5rem;
}

.hook-text p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.hook-visual {
    flex: 1;
    min-width: 300px;
}

.hook-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.problem-section {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

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

.problem-header {
    text-align: center;
    margin-bottom: 4rem;
}

.problem-header h2 {
    max-width: 600px;
    margin: 0 auto;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.problem-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
}

.problem-icon svg {
    width: 100%;
    height: 100%;
}

.problem-card h3 {
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--color-text-light);
}

.story-section {
    padding: 6rem 2rem;
    background: var(--color-bg);
}

.story-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.story-content h2 {
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.story-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-primary);
    border-left: 4px solid var(--color-accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.insight-section {
    padding: 6rem 2rem;
    background: var(--color-primary);
    color: white;
}

.insight-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.insight-header h2 {
    color: white;
    margin-bottom: 1rem;
}

.insight-header .section-tag {
    color: rgba(255, 255, 255, 0.7);
}

.insight-lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.insight-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-accent);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 150px;
}

.trust-section {
    padding: 6rem 2rem;
    background: var(--color-bg);
}

.trust-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.trust-content {
    flex: 2;
    min-width: 300px;
}

.trust-content h2 {
    margin-bottom: 2rem;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.trust-list li:last-child {
    border-bottom: none;
}

.trust-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.trust-list span {
    color: var(--color-text-light);
}

.trust-badges {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.badge-item svg {
    width: 40px;
    height: 40px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.badge-item span {
    font-weight: 600;
    color: var(--color-primary);
}

.testimonial-section {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

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

.testimonial-container > .section-tag {
    display: block;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-card.featured {
    background: var(--color-primary);
    color: white;
}

.testimonial-card.featured .author-name {
    color: white;
}

.testimonial-card.featured .author-role {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-text p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-primary);
}

.author-role {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.services-preview {
    padding: 6rem 2rem;
    background: var(--color-bg);
}

.services-preview-container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header p {
    color: var(--color-text-light);
    max-width: 500px;
    margin: 1rem auto 0;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card.highlighted {
    border-color: var(--color-accent);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--color-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card > p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-primary);
}

.price-note {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

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

.service-card .cta-secondary,
.service-card .cta-primary {
    width: 100%;
    text-align: center;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-cta p {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.urgency-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, #dd6b20 100%);
    color: white;
}

.urgency-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.urgency-content .section-tag {
    color: rgba(255, 255, 255, 0.8);
}

.urgency-content p {
    margin-bottom: 2rem;
    opacity: 0.95;
}

.urgency-content .cta-primary {
    background: white;
    color: var(--color-accent);
}

.urgency-content .cta-primary:hover {
    background: var(--color-bg-alt);
    color: #dd6b20;
}

.process-section {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.faq-section {
    padding: 6rem 2rem;
    background: var(--color-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--color-bg-alt);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-light);
}

.form-section {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-header p {
    color: var(--color-text-light);
}

#contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.checkbox-group label a {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

.final-cta-section {
    padding: 6rem 2rem;
    background: var(--color-primary);
    text-align: center;
}

.final-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-container h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta-container p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 2rem 0;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    max-width: 300px;
}

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

.footer-col h4 {
    color: white;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.85rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta .cta-primary {
    box-shadow: var(--shadow-lg);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.9rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--color-accent);
    color: white;
}

.cookie-accept:hover {
    background: #dd6b20;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    border-color: white;
}

.page-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    text-align: center;
    color: white;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.content-section {
    padding: 4rem 2rem;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-wrapper h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-wrapper p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--color-text-light);
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

.about-hero {
    padding: 6rem 2rem;
    background: var(--color-bg);
}

.about-hero-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-hero-text {
    flex: 1;
    min-width: 300px;
}

.about-hero-image {
    flex: 1;
    min-width: 300px;
}

.about-hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.team-section {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

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

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.team-card h3 {
    margin-bottom: 0.25rem;
}

.team-card .role {
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h3 {
    font-size: 1rem;
    font-family: var(--font-main);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.services-full {
    padding: 4rem 2rem;
}

.services-full-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-full-card {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}

.service-full-card:last-child {
    border-bottom: none;
}

.service-full-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-full-image {
    flex: 1;
    min-width: 280px;
}

.service-full-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.service-full-content {
    flex: 1;
    min-width: 280px;
}

.service-full-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-full-content > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-full-content .service-price {
    margin-bottom: 1.5rem;
}

.service-full-content .service-features {
    margin-bottom: 2rem;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-accent);
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-service {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.thanks-service strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .hook-inner,
    .story-wrapper,
    .trust-wrapper,
    .about-hero-inner {
        flex-direction: column;
    }

    .story-wrapper {
        flex-direction: column-reverse;
    }

    .footer-links {
        width: 100%;
        justify-content: space-between;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-cta .cta-primary {
        width: 100%;
        text-align: center;
    }

    #contact-form {
        padding: 1.5rem;
    }

    .process-steps {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

    .service-full-card,
    .service-full-card:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .insight-stats {
        flex-direction: column;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-card {
        min-width: 100%;
    }
}
