@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Crimson+Pro:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    --primary: #1a3a5c;
    --secondary: #c9a227;
    --accent: #2d6a4f;
    --dark: #0d1b2a;
    --light: #f8f9fa;
    --text: #2b2d42;
    --text-light: #6c757d;
    --white: #ffffff;
    --border: #dee2e6;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Crimson Pro', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.6;
    background: var(--light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.main-full-height {
    min-height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
}

.btn-primary:hover {
    background: #b8911f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: #245a42;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-wrapper {
    display: flex;
    justify-content: center;
    padding: 15px;
    position: relative;
    z-index: 1001;
}

.header-capsule {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    max-width: 900px;
    width: 100%;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-desktop a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
}

.nav-desktop a:hover {
    color: var(--primary);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 8px 18px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
}

.nav-cta:hover {
    background: #b8911f;
}

.nav-cta::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    margin: 5px auto;
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text);
}

.nav-mobile a:hover {
    color: var(--primary);
}

header.scrolled .header-capsule {
    padding: 8px 18px;
    box-shadow: var(--shadow-lg);
}

header.hidden {
    transform: translateY(-100%);
}

.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--light) 0%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.hero-badge i {
    font-size: 0.8rem;
}

.hero h1 {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 18px;
}

.hero h1 span {
    color: var(--secondary);
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features {
    padding: 60px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    padding: 25px;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.about-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    top: 20px;
    right: -8px;
    background: var(--secondary);
    color: var(--dark);
    padding: 12px 18px;
    border-radius: var(--radius);
    text-align: center;
}

.about-badge .number {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.about-badge .text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-list {
    margin: 20px 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text);
}

.about-list i {
    color: var(--accent);
    margin-top: 3px;
}

.process {
    padding: 60px 0;
    background: var(--primary);
    color: var(--white);
}

.process .section-title {
    color: var(--white);
}

.process .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 25px 15px;
    position: relative;
}

.step-number {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 15px;
}

.process-step h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--secondary);
}

.process-step:last-child::after {
    display: none;
}

.testimonials {
    padding: 60px 0;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: rgba(201,162,39,0.15);
}

.testimonial-text {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.author-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.author-info span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: var(--secondary);
    color: var(--dark);
}

.cta-section .btn:hover {
    background: var(--white);
}

.products {
    padding: 60px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 25px 20px;
    text-align: center;
}

.product-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-header .price {
    font-size: 1.4rem;
    font-weight: 700;
}

.product-header .price span {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

.product-body {
    padding: 20px;
}

.product-features {
    margin-bottom: 20px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features i {
    color: var(--accent);
    font-size: 0.8rem;
}

.product-body .btn {
    width: 100%;
}

.page-header {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.page-header h1 {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
}

.page-header p {
    font-size: 0.95rem;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.8rem;
    position: relative;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.7);
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs span {
    color: var(--secondary);
}

.content-section {
    padding: 50px 0;
}

.content-section h2 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.content-section h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 20px 0 10px;
}

.content-section p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.content-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-section ul li {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--secondary);
    border-radius: 50%;
}

.about-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-page-text h2 {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-page-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-page-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--secondary);
}

.value-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.team-section {
    padding: 50px 0;
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-member {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 15px;
}

.team-member h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.team-member .role {
    font-size: 0.8rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.team-member p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-section {
    padding: 50px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info-card h2 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin-bottom: 8px;
    position: relative;
}

.contact-info-card > p {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: 25px;
    position: relative;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-item-text p, .contact-item-text a {
    font-size: 0.8rem;
    opacity: 0.85;
    line-height: 1.4;
}

.contact-item-text a:hover {
    color: var(--secondary);
}

.contact-form-wrapper {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h2 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,58,92,0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 0.8rem;
    color: var(--text-light);
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.map-section {
    padding: 0 0 50px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

.error-page {
    text-align: center;
    padding: 40px 20px;
}

.error-code {
    font-family: var(--font-secondary);
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-page h1 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.error-page p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-page {
    text-align: center;
    padding: 40px 20px;
}

.thankyou-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 25px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.thankyou-page h1 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.thankyou-page p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 10px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-page .btn {
    margin-top: 20px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--primary);
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
}

.policy-content h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 20px 0 10px;
}

.policy-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-content ul li {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
    list-style: none;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--secondary);
    border-radius: 50%;
}

.policy-content .policy-date {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 20px;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 15px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.footer-policy-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-policy-links a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.footer-policy-links a:hover {
    color: var(--secondary);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 18px;
    z-index: 9999;
    display: none;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn.accept {
    background: var(--secondary);
    color: var(--dark);
}

.cookie-btn.accept:hover {
    background: #b8911f;
}

.cookie-btn.decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn.decline:hover {
    border-color: var(--white);
}

.mastermind-benefits {
    padding: 60px 0;
    background: var(--light);
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary) 0%, #d4af37 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.benefit-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.benefits-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.entrepreneur-intro {
    padding: 50px 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-text h2 {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.intro-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.intro-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.program-features {
    padding: 60px 0;
    background: var(--light);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.program-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 15px;
    transition: var(--transition);
}

.program-card:hover {
    box-shadow: var(--shadow-lg);
}

.program-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.program-info h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.program-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.target-audience {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.target-card {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.target-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.target-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.target-card h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.target-card p {
    font-size: 0.8rem;
    opacity: 0.85;
    line-height: 1.4;
}

@media (max-width: 991px) {
    html {
        font-size: 14px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-mobile {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-desc {
        margin: 0 auto 25px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        margin-top: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-page-content {
        grid-template-columns: 1fr;
    }
    
    .about-page-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }
    
    .benefits-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-image {
        order: -1;
    }
    
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .program-grid {
        grid-template-columns: 1fr;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .error-code {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .header-capsule {
        padding: 8px 15px;
        border-radius: 40px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 12px;
    }
    
    .header-wrapper {
        padding: 10px;
    }
    
    .header-capsule {
        padding: 8px 12px;
    }
    
    .hero {
        padding: 90px 0 40px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}
