:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --dark-color: #111827;
    --dark-color-80: rgba(17, 24, 39, 0.8);
    --light-color: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --border-radius: 8px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    line-height: 1.5;
    background-color: var(--light-color);
    background-image: 
        repeating-linear-gradient(
            to right,
            transparent,
            transparent calc(8% - 1px),
            rgba(209, 213, 219, 0.2) calc(8% - 1px),
            rgba(209, 213, 219, 0.2) 8%
        ),
        repeating-linear-gradient(
            to bottom,
            transparent,
            transparent calc(100px - 1px),
            rgba(209, 213, 219, 0.2) calc(100px - 1px),
            rgba(209, 213, 219, 0.2) 100px
        );
    background-size: 100% 100%;
}

.page-wrapper {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

/* Links and buttons */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover {
    color: var(--primary-dark);
}

.link {
    font-weight: 500;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all 0.15s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: var(--gray-100);
    color: var(--gray-800);
}

.btn-secondary:hover {
    background-color: var(--gray-200);
}

.btn-dark {
    background-color: var(--dark-color);
    color: white;
}

.btn-dark:hover {
    background-color: var(--gray-800);
}

.btn-outline {
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-outline:hover {
    background-color: var(--gray-100);
    color: var(--gray-800);
}

/* Header & navigation */
.header {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;  
}

.logo-icon {
    margin-right: 0.5rem;
    display: block;
}

.logo-text {
    font-weight: 800;
    text-transform: lowercase;
    letter-spacing: -0.025em;
}

.logo-highlight {
    color: var(--primary-color);
}

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

.main-nav a {
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.15s ease;
}

.main-nav a:hover {
    color: var(--gray-900);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-actions .btn {
    transition: all 0.3s ease;
}

.header-actions .btn-dark {
    position: relative;
    overflow: hidden;
}

.header-actions .btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header-actions .btn-dark:active {
    transform: translateY(0);
}

.header-actions .btn-dark::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transition: left 0.7s ease;
}

.header-actions .btn-dark:hover::after {
    left: 100%;
}

.sub-header {
    background-color: #f9fafb;
    border-bottom: 1px solid rgba(209, 213, 219, 0.3);
    padding: 0.5rem 0;
    text-align: left;
}

.sub-header p {
    margin: 0;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

/* Hero section */
.hero {
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background-color: #f9fafb;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            to right,
            transparent,
            transparent calc(4% - 1px),
            rgba(209, 213, 219, 0.1) calc(4% - 1px),
            rgba(209, 213, 219, 0.1) 4%
        ),
        repeating-linear-gradient(
            to bottom,
            transparent,
            transparent calc(80px - 1px),
            rgba(209, 213, 219, 0.1) calc(80px - 1px),
            rgba(209, 213, 219, 0.1) 80px
        );
    z-index: 0;
}

.hero-bg-gradient-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(224, 231, 255, 0.4) 0%, rgba(224, 231, 255, 0.1) 40%, transparent 70%);
    z-index: 1;
    opacity: 0.8;
}

.hero-bg-gradient-2 {
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 50%;
    height: 40%;
    background: radial-gradient(circle, rgba(236, 252, 203, 0.4) 0%, rgba(236, 252, 203, 0.1) 40%, transparent 70%);
    z-index: 1;
    opacity: 0.7;
}

.hero-content {
    max-width: 640px;
    margin: 0 auto 6rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #111827;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-showcase {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.mockup-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    /*box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);*/
    /*border: 1px solid rgba(225, 225, 225, 0.8);*/
}

.mockup {
    position: relative;
    height: 200px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    z-index: 3;
}

.mockup-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    border: 1px solid rgba(225, 225, 225, 0.8);
    border-top: none;
}

.mockup-1 {
    transform: rotateX(10deg) rotateY(15deg) rotateZ(0deg);
    grid-column: 1 / span 2;
    grid-row: 1;
    background: linear-gradient(to bottom right, #ffffff, #f3f4f6);
}

.mockup-2 {
    transform: rotateX(8deg) rotateY(-15deg) rotateZ(0deg);
    grid-column: 3 / span 2;
    grid-row: 1;
    background: linear-gradient(to bottom right, #ffffff, #f3f4f6);
}

.mockup-3 {
    transform: rotateX(12deg) rotateY(10deg) rotateZ(0deg);
    grid-column: 1;
    grid-row: 2;
    height: 240px;
    background: linear-gradient(to bottom right, #ffffff, #f3f4f6);
}

.mockup-4 {
    transform: rotateX(12deg) rotateY(-5deg) rotateZ(0deg);
    grid-column: 2;
    grid-row: 2;
    height: 240px;
    background: linear-gradient(to bottom right, #ffffff, #f3f4f6);
}

.mockup-5 {
    transform: rotateX(8deg) rotateY(-15deg) rotateZ(0deg);
    grid-column: 3;
    grid-row: 2;
    height: 240px;
    background: linear-gradient(to bottom right, #ffffff, #f3f4f6);
}

.mockup-6 {
    transform: rotateX(10deg) rotateY(12deg) rotateZ(0deg);
    grid-column: 4;
    grid-row: 2;
    height: 240px;
    background: linear-gradient(to bottom right, #ffffff, #f3f4f6);
}

.mockup-7 {
    transform: rotateX(-5deg) rotateY(10deg) rotateZ(0deg);
    grid-column: 1 / span 2;
    grid-row: 3;
    background: linear-gradient(to bottom right, #ffffff, #f3f4f6);
}

.mockup-8 {
    transform: rotateX(-8deg) rotateY(-15deg) rotateZ(0deg);
    grid-column: 3 / span 2;
    grid-row: 3;
    background: linear-gradient(to bottom right, #ffffff, #f3f4f6);
}

.mockup-1 .mockup-content {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' fill='white'/%3E%3Crect x='2' y='2' width='16' height='3' rx='1' fill='%23E5E7EB'/%3E%3Crect x='2' y='7' width='16' height='3' rx='1' fill='%23E5E7EB'/%3E%3Crect x='2' y='12' width='8' height='3' rx='1' fill='%23E5E7EB'/%3E%3C/svg%3E");
    background-size: 100% auto;
}

.mockup-2 .mockup-content {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' fill='white'/%3E%3Crect x='3' y='3' width='14' height='2' rx='1' fill='%23E5E7EB'/%3E%3Crect x='3' y='7' width='14' height='2' rx='1' fill='%23E5E7EB'/%3E%3Crect x='3' y='11' width='10' height='2' rx='1' fill='%23E5E7EB'/%3E%3Crect x='3' y='15' width='6' height='2' rx='1' fill='%23E5E7EB'/%3E%3C/svg%3E");
    background-size: 100% auto;
}

.mockup-3 .mockup-content {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' fill='white'/%3E%3Crect x='2' y='2' width='16' height='16' rx='2' fill='%23F3F4F6'/%3E%3Crect x='4' y='4' width='12' height='3' rx='1' fill='%23E5E7EB'/%3E%3Crect x='4' y='9' width='12' height='2' rx='1' fill='%23E5E7EB'/%3E%3Crect x='4' y='13' width='8' height='2' rx='1' fill='%23E5E7EB'/%3E%3C/svg%3E");
    background-size: 100% auto;
}

.mockup:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Перспективная сетка в hero секции */
.hero-perspective-grid {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 120%;
    height: 100%;
    background-image: linear-gradient(
        rgba(203, 213, 225, 0.1) 0.5px,
        transparent 0.5px
    ),
    linear-gradient(
        to right,
        rgba(203, 213, 225, 0.1) 0.5px,
        transparent 0.5px
    );
    background-size: 50px 50px;
    transform: perspective(1000px) rotateX(60deg) rotateZ(0deg) scale(1.8);
    transform-origin: center center;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

/* Дополнительный вариант сетки с наклоном в другую сторону */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -5%;
    width: 70%;
    height: 60%;
    background-image: linear-gradient(
        rgba(203, 213, 225, 0.07) 0.5px,
        transparent 0.5px
    ),
    linear-gradient(
        to right,
        rgba(203, 213, 225, 0.07) 0.5px,
        transparent 0.5px
    );
    background-size: 30px 30px;
    transform: perspective(1000px) rotateX(55deg) rotateZ(15deg) scale(1.5);
    transform-origin: bottom right;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

/* Features overview section */
.features-overview {
    padding: 5rem 0;
    background-color: white;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: white;
    border-radius: 0.5rem;
}

.feature-card h3 {
    margin-top: 0;
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Section styling */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* Features section */
.features-section {
    padding: 5rem 0;
}

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

.feature-item {
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    padding: 1rem;
    position: relative;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-8px);
    background-color: white;
    box-shadow: var(--shadow-md);
}

.feature-preview {
    height: 180px;
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.feature-preview:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.feature-preview:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    color: var(--primary-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

.feature-img {
    height: 100%;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item:hover .feature-img {
    background: linear-gradient(135deg, var(--gray-100), rgba(59, 130, 246, 0.1));
}

.feature-item h3 {
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-weight: 600;
}

.feature-item:hover h3 {
    color: var(--primary-color);
}

.feature-item p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.feature-description {
    margin-top: 0.75rem !important;
    color: var(--gray-600) !important;
    font-size: 0.875rem;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), 
                opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0.1s, 
                transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s,
                margin-top 0.4s ease;
    transform: translateY(-5px);
    pointer-events: none;
    margin-top: 0 !important;
}

.feature-item:hover .feature-description {
    max-height: 150px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 0.75rem !important;
    pointer-events: auto;
}

.features-actions {
    text-align: center;
}

/* Templates section */
.templates-section {
    padding: 5rem 0;
    background-color: white;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.template-item {
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    padding: 1rem;
    position: relative;
    cursor: pointer;
}

.template-item:hover {
    transform: translateY(-8px);
    background-color: white;
    box-shadow: var(--shadow-md);
}

.template-preview {
    height: 200px;
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.template-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 10;
}

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

.template-preview:hover {
    box-shadow: var(--shadow-md);
}

.template-img {
    height: 100%;
    background: linear-gradient(135deg, var(--gray-100), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.template-icon {
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.template-item:hover .template-icon {
    transform: scale(1.2);
    opacity: 1;
}

.template-img-1 {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.template-img-2 {
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.template-img-3 {
    background: linear-gradient(135deg, #34d399, #10b981);
}

.template-img-4 {
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
}

.template-img-5 {
    background: linear-gradient(135deg, #fb7185, #ec4899);
}

.template-img-6 {
    background: linear-gradient(135deg, #6ee7b7, #3b82f6);
}

.template-item h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.template-item:hover h3 {
    color: var(--primary-color);
}

.template-item p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.template-description {
    margin-top: 0.75rem !important;
    color: var(--gray-600) !important;
    font-size: 0.875rem;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), 
                opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0.1s, 
                transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s,
                margin-top 0.4s ease;
    transform: translateY(-5px);
    pointer-events: none;
    margin-top: 0 !important;
}

.template-item:hover .template-description {
    max-height: 150px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 0.75rem !important;
    pointer-events: auto;
}

.template-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.template-item:hover .template-link {
    opacity: 1;
    transform: translateY(0);
}

.template-link:hover {
    text-decoration: underline;
}

.templates-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--gray-50);
}

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

.testimonial {
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.testimonial blockquote {
    margin-bottom: 1.5rem;
}

.testimonial blockquote p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    margin-right: 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--gray-300);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* Additional testimonials */
.additional-testimonials {
    padding: 5rem 0;
    text-align: center;
}

.additional-testimonials .container {
    max-width: 800px;
}

.quote-mark {
    font-size: 4rem;
    color: var(--primary-light);
    line-height: 0.8;
    margin-bottom: 2rem;
}

.quote-content {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* FAQ section */
.faq-section {
    padding: 5rem 0;
    background-color: white;
    border-top: 1px solid var(--gray-200);
}

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

.faq-item {
    margin-bottom: 2rem;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--gray-600);
}

/* Footer */
.footer {
    padding: 2rem 0;
    background-color: white;
    color: var(--gray-500);
    border-top: 1px solid var(--gray-200);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

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

.footer-links a {
    color: var(--gray-500);
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: var(--gray-700);
}

/* Media queries for responsiveness */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .mockup-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mockup-1, .mockup-2, .mockup-7, .mockup-8 {
        grid-column: auto / span 1;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-content {
        margin-bottom: 4rem;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .mockup-grid {
        grid-template-columns: 1fr;
    }
}

/* Privacy Policy Page */
.privacy-policy-section {
    padding: 5rem 0;
    background-color: white;
}

.privacy-policy-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.privacy-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.privacy-content h3 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.privacy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-content li {
    margin-bottom: 1rem;
} 