:root { --dark-plum: #302c38; --warm-white: #f5f4f6; --lilac-grey: #a599b5; --pure-white: #ffffff; --muted-dark: #24212b; --subtle-grey: #e9e8eb; --text-color-dark: #302c38; --text-color-light: #f5f4f6; --text-muted: #6f687a; --font-sans: 'Inter', sans-serif; --font-serif: 'Playfair Display', serif; --shadow-soft: 0 10px 30px rgba(48,44,56,0.05); --shadow-medium: 0 15px 40px rgba(48,44,56,0.1); --rounded-sm: 8px; --rounded-lg: 16px; --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); } * { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: var(--font-sans); background: var(--pure-white); color: var(--text-color-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; } h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 600; color: var(--dark-plum); letter-spacing: -0.02em; } p { color: var(--text-muted); font-size: 1rem; } a { color: inherit; text-decoration: none; transition: var(--transition-base); } img { max-width: 100%; height: auto; display: block; border-radius: var(--rounded-sm); } .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; } .container-full { width: 100%; padding: 0; } .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; } .section-label { font-family: var(--font-sans); text-transform: uppercase; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em; color: var(--lilac-grey); margin-bottom: 1rem; display: block; } .navbar { position: fixed; top: 0; left: 0; width: 100%; height: 80px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); z-index: 1000; box-shadow: 0 2px 20px rgba(48,44,56,0.02); transition: var(--transition-base); } .nav-container { max-width: 1200px; margin: 0 auto; height: 100%; display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; } .brand-logo { display: flex; align-items: center; gap: 0.75rem; } .logo-svg { width: 34px; height: 34px; } .brand-name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--dark-plum); letter-spacing: -0.01em; } .nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; } .nav-link { font-size: 0.95rem; font-weight: 500; color: var(--dark-plum); opacity: 0.8; } .nav-link:hover, .nav-link.active { opacity: 1; color: var(--dark-plum); border-bottom: 2px solid var(--dark-plum); padding-bottom: 4px; } .nav-btn { background: var(--dark-plum); color: var(--pure-white); padding: 0.75rem 1.5rem; border-radius: var(--rounded-sm); font-size: 0.9rem; font-weight: 600; display: inline-block; } .nav-btn:hover { background: var(--muted-dark); transform: translateY(-2px); } .burger-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; } .burger-btn span { width: 24px; height: 2px; background: var(--dark-plum); transition: var(--transition-base); } .hero-section { height: 100vh; min-height: 600px; display: flex; align-items: center; background-position: center; background-size: cover; background-repeat: no-repeat; padding-top: 80px; position: relative; } .hero-content { max-width: 700px; margin-left: 10%; padding: 0 2rem; z-index: 2; color: var(--pure-white); } .hero-content h1 { font-size: 4rem; color: var(--pure-white); line-height: 1.1; margin-bottom: 1.5rem; font-weight: 500; } .hero-content p { font-size: 1.15rem; color: var(--warm-white); opacity: 0.9; margin-bottom: 2.5rem; line-height: 1.7; font-family: var(--font-sans); } .btn-cta-primary { background: var(--lilac-grey); color: var(--dark-plum); padding: 1rem 2.5rem; border-radius: var(--rounded-sm); font-size: 1rem; font-weight: 600; display: inline-block; box-shadow: var(--shadow-medium); } .btn-cta-primary:hover { background: var(--pure-white); color: var(--dark-plum); transform: translateY(-3px); } .about-preview { padding: 8rem 0; background: var(--pure-white); } .about-preview .text-block h2 { font-size: 2.8rem; margin-bottom: 1.5rem; line-height: 1.2; } .about-preview .text-block p { margin-bottom: 1.5rem; font-size: 1.05rem; } .text-link-btn { font-weight: 700; color: var(--dark-plum); border-bottom: 1px solid var(--dark-plum); padding-bottom: 2px; font-size: 0.95rem; } .text-link-btn:hover { color: var(--lilac-grey); border-color: var(--lilac-grey); } .dark-workflow { padding: 8rem 0; background: var(--dark-plum); color: var(--pure-white); } .workflow-intro { text-align: center; max-width: 700px; margin: 0 auto 5rem auto; } .workflow-intro h2 { font-size: 3rem; color: var(--pure-white); margin-bottom: 1rem; } .workflow-intro p { color: var(--lilac-grey); font-size: 1.1rem; } .workflow-card { background: var(--pure-white); border-radius: var(--rounded-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: var(--transition-base); } .workflow-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-medium); } .card-img-holder { height: 200px; overflow: hidden; } .card-img-holder img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; } .card-body { padding: 2rem; color: var(--text-color-dark); } .card-body h3 { font-size: 1.4rem; margin-bottom: 1rem; } .card-body p { font-size: 0.95rem; color: var(--text-muted); } .highlights-section { padding: 8rem 0; background: var(--warm-white); } .highlights-section h2 { font-size: 2.8rem; margin-bottom: 1.5rem; } .highlight-list { list-style: none; margin-top: 2rem; } .highlight-list li { position: relative; padding-left: 2rem; margin-bottom: 1.25rem; font-size: 1.05rem; color: var(--text-muted); } .highlight-list li::before { content: "\2022"; color: var(--dark-plum); font-size: 1.5rem; position: absolute; left: 0; top: -0.2rem; } .audience-section { padding: 8rem 0; background: var(--pure-white); } .audience-grid .audience-card { border-top: 1px solid var(--subtle-grey); padding-top: 2rem; } .aud-num { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600; color: var(--dark-plum); margin-bottom: 1rem; display: block; } .audience-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; } .audience-card p { font-size: 0.95rem; } .dark-pricing { padding: 8rem 0; background: var(--dark-plum); color: var(--pure-white); } .pricing-grid { align-items: stretch; } .pricing-card { background: var(--muted-dark); border-radius: var(--rounded-lg); padding: 3rem 2.5rem; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(165,153,181,0.1); } .pricing-card.featured-plan { background: #373340; border-color: var(--lilac-grey); position: relative; } .pricing-card.featured-plan::after { content: "POPULAR"; position: absolute; top: 1.5rem; right: 1.5rem; font-size: 0.75rem; font-weight: 700; color: var(--lilac-grey); letter-spacing: 0.1em; border: 1px solid var(--lilac-grey); padding: 0.25rem 0.75rem; border-radius: 20px; } .p-top { margin-bottom: 2rem; position: relative; } .currency { font-size: 1rem; vertical-align: top; color: var(--lilac-grey); } .price { font-size: 4rem; font-weight: 500; font-family: var(--font-serif); color: var(--pure-white); line-height: 1; } .period { font-size: 1rem; color: var(--lilac-grey); } .p-title { font-size: 1.8rem; margin-top: 1rem; color: var(--pure-white); } .p-desc { font-size: 0.95rem; color: var(--lilac-grey); margin-bottom: 2rem; line-height: 1.5; } .p-features { list-style: none; margin-bottom: 2.5rem; } .p-features li { padding-left: 1.5rem; position: relative; margin-bottom: 0.75rem; font-size: 0.95rem; color: var(--warm-white); } .p-features li::before { content: "\2713"; color: var(--lilac-grey); position: absolute; left: 0; } .p-btn { border: 1px solid var(--lilac-grey); color: var(--pure-white); padding: 0.75rem 2rem; border-radius: var(--rounded-sm); width: 100%; text-align: center; display: block; font-weight: 600; font-size: 0.95rem; } .p-btn:hover { background: var(--lilac-grey); color: var(--dark-plum); border-color: var(--lilac-grey); } .featured-plan .p-btn { background: var(--lilac-grey); color: var(--dark-plum); } .featured-plan .p-btn:hover { background: var(--pure-white); color: var(--dark-plum); } .cta-banner { padding: 8rem 0; background: var(--warm-white); } .grid-2-wide { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 5rem; align-items: center; } .btn-cta-primary.dark-btn { background: var(--dark-plum); color: var(--pure-white); } .btn-cta-primary.dark-btn:hover { background: var(--lilac-grey); color: var(--dark-plum); } .cta-images { display: flex; gap: 1.5rem; } .cta-img-col { flex: 1; margin: 0; } .cta-img-col img { width: 100%; height: 320px; object-fit: cover; box-shadow: var(--shadow-soft); } .cta-img-col:nth-child(2) { transform: translateY(2rem); } .dark-contact-form { padding: 8rem 0; background: var(--muted-dark); color: var(--pure-white); } .honest-form, .honest-form-v2 { max-width: 650px; margin: 0 auto 5rem auto; display: flex; flex-direction: column; gap: 1.5rem; } .form-group input, .form-group textarea { width: 100%; padding: 1.1rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(165,153,181,0.2); color: var(--pure-white); border-radius: var(--rounded-sm); font-family: var(--font-sans); font-size: 1rem; outline: none; transition: var(--transition-base); } .form-group input::placeholder, .form-group textarea::placeholder { color: var(--lilac-grey); opacity: 0.6; } .form-group input:focus, .form-group textarea:focus { border-color: var(--lilac-grey); background: rgba(255, 255, 255, 0.08); } .form-consent { position: relative; padding-left: 2rem; display: block; font-size: 0.9rem; color: var(--lilac-grey); } .checkbox-container { position: relative; padding-left: 2rem; cursor: pointer; display: inline-block; user-select: none; } .checkbox-container input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; } .checkmark { position: absolute; top: 0.1rem; left: 0; height: 1.25rem; width: 1.25rem; background-color: rgba(255,255,255,0.1); border: 1px solid rgba(165,153,181,0.4); border-radius: 4px; } .checkbox-container:hover input ~ .checkmark { background-color: rgba(255,255,255,0.2); } .checkbox-container input:checked ~ .checkmark { background-color: var(--lilac-grey); border-color: var(--lilac-grey); } .checkmark::after { content: ""; position: absolute; display: none; } .checkbox-container input:checked ~ .checkmark::after { display: block; } .checkbox-container .checkmark::after { left: 6px; top: 2px; width: 5px; height: 10px; border: solid var(--dark-plum); border-width: 0 2px 2px 0; transform: rotate(45deg); } .form-submit-btn { width: 100%; background: var(--lilac-grey); color: var(--dark-plum); border: none; padding: 1.1rem; border-radius: var(--rounded-sm); font-size: 1rem; font-weight: 700; cursor: pointer; letter-spacing: 0.1em; transition: var(--transition-base); } .form-submit-btn:hover { background: var(--pure-white); color: var(--dark-plum); } .contact-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 5rem; } .c-card { background: var(--pure-white); padding: 3rem 2rem; text-align: center; border-radius: var(--rounded-lg); color: var(--text-color-dark); box-shadow: var(--shadow-soft); transition: var(--transition-base); } .c-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); } .c-icon { margin: 0 auto 1.5rem auto; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--subtle-grey); } .c-card h4 { font-size: 0.95rem; margin-bottom: 0.5rem; letter-spacing: 0.05em; color: var(--text-muted); } .c-card p, .c-card a { font-size: 1rem; color: var(--dark-plum); font-weight: 600; } .main-footer { background: #1b1921; color: var(--pure-white); padding: 6rem 0 3rem 0; border-top: 1px solid rgba(255, 255, 255, 0.05); } .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; } .f-logo { font-size: 1.6rem; color: var(--pure-white); font-weight: 600; letter-spacing: 0.05em; margin-bottom: 1.5rem; } .f-title { font-size: 0.9rem; font-family: var(--font-sans); letter-spacing: 0.15em; color: var(--lilac-grey); margin-bottom: 1.5rem; text-transform: uppercase; font-weight: 700; } .footer-links ul { list-style: none; } .footer-links ul li { margin-bottom: 1rem; } .footer-links ul li a { font-size: 0.95rem; color: var(--lilac-grey); opacity: 0.8; } .footer-links ul li a:hover { opacity: 1; color: var(--pure-white); } .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 2rem; display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--lilac-grey); } .hero-section-thin { height: 45vh; min-height: 350px; display: flex; align-items: center; background-size: cover; background-position: center; padding-top: 80px; } .thin-hero-content { max-width: 900px; margin: 0 auto; width: 100%; padding: 0 2rem; text-align: center; color: var(--pure-white); } .thin-hero-content h1 { font-size: 3.5rem; color: var(--pure-white); } .thin-label { font-size: 0.95rem; text-transform: uppercase; color: var(--lilac-grey); letter-spacing: 0.15em; font-weight: 700; display: block; margin-bottom: 1rem; } .about-main-content { padding: 8rem 0; } .text-layout { max-width: 800px; margin: 0 auto; } .intro-highlight { font-size: 1.5rem; font-family: var(--font-serif); line-height: 1.6; color: var(--dark-plum); margin-bottom: 3rem; } .narrative-section p { font-size: 1.1rem; margin-bottom: 2rem; } .narrative-section h3 { font-size: 1.8rem; margin-top: 3rem; margin-bottom: 1rem; } .standard-quote { border-left: 4px solid var(--lilac-grey); padding-left: 2rem; margin: 3rem 0; font-family: var(--font-serif); font-size: 1.35rem; font-style: italic; color: var(--dark-plum); } .team-section { padding: 8rem 0; background: var(--warm-white); } .values-grid { margin-top: 2rem; } .value-item { background: var(--pure-white); padding: 3rem; border-radius: var(--rounded-lg); box-shadow: var(--shadow-soft); } .value-item h3 { font-size: 1.4rem; margin-bottom: 1rem; } .value-item p { font-size: 0.95rem; } .detailed-services-intro { padding: 8rem 0; } .two-column-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 6rem; align-items: baseline; } .two-column-heading h2 { font-size: 2.8rem; line-height: 1.2; } .two-column-heading p { font-size: 1.15rem; } .services-detail-grid { margin-top: 2rem; } .service-detail-card { background: var(--warm-white); padding: 3.5rem 3rem; border-radius: var(--rounded-lg); } .icon-placeholder { width: 44px; height: 44px; margin-bottom: 2rem; } .service-detail-card h3 { font-size: 1.5rem; margin-bottom: 1rem; } .service-detail-card p { font-size: 0.95rem; } .faq-section { padding: 8rem 0; background: var(--pure-white); } .faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; } .faq-item { border-bottom: 1px solid var(--subtle-grey); } .faq-trigger { width: 100%; text-align: left; background: none; border: none; padding: 2rem 0; font-size: 1.2rem; font-family: var(--font-serif); font-weight: 600; color: var(--dark-plum); cursor: pointer; display: flex; justify-content: space-between; align-items: center; } .faq-icon { font-family: var(--font-sans); color: var(--lilac-grey); font-weight: 300; font-size: 1.5rem; } .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; } .faq-content p { padding-bottom: 2rem; font-size: 1rem; line-height: 1.7; } .faq-item.active .faq-content { max-height: 400px; } .faq-item.active .faq-icon { content: "\2212"; } .contacts-page-wrapper { padding: 8rem 0; } .details-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem; } .detail-element h5 { font-family: var(--font-sans); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.5rem; text-transform: uppercase; } .detail-element p, .detail-element a { font-size: 1.2rem; color: var(--dark-plum); font-weight: 500; } .honest-form-v2 { background: var(--warm-white); padding: 4rem; border-radius: var(--rounded-lg); width: 100%; box-shadow: var(--shadow-soft); margin: 0; } .honest-form-v2 .form-group label { display: block; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.5rem; } .honest-form-v2 .form-group input, .honest-form-v2 .form-group textarea { background: var(--pure-white); border-color: rgba(48,44,56,0.1); color: var(--dark-plum); } .honest-form-v2 .form-group input:focus, .honest-form-v2 .form-group textarea:focus { border-color: var(--dark-plum); } .honest-form-v2 .form-submit-btn { background: var(--dark-plum); color: var(--pure-white); } .honest-form-v2 .form-submit-btn:hover { background: var(--lilac-grey); color: var(--dark-plum); } .map-section { height: 450px; width: 100%; } .interactive-google-map { width: 100%; height: 100%; border: none; filter: grayscale(0.2) contrast(1.1); } .blog-posts-section { padding: 8rem 0; } .blog-card { background: var(--pure-white); border-radius: var(--rounded-lg); overflow: hidden; border: 1px solid var(--subtle-grey); transition: var(--transition-base); } .blog-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-medium); } .post-cover { height: 240px; overflow: hidden; } .post-cover img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; } .post-details { padding: 2.5rem; } .post-date { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 0.75rem; letter-spacing: 0.05em; } .post-details h3 { font-size: 1.6rem; margin-bottom: 1rem; line-height: 1.3; } .post-details p { font-size: 0.95rem; margin-bottom: 1.5rem; } .post-read-more { font-weight: 700; color: var(--dark-plum); inherit: none; } .article-container { max-width: 800px; margin: 0 auto; padding: 120px 2rem 8rem 2rem; } .article-header { text-align: center; margin-bottom: 4rem; } .meta-tag { font-family: var(--font-sans); text-transform: uppercase; font-size: 0.85rem; font-weight: 700; color: var(--lilac-grey); letter-spacing: 0.15em; display: block; margin-bottom: 1rem; } .article-header h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; } .header-meta { font-size: 0.95rem; color: var(--text-muted); } .article-featured-image { margin-bottom: 4rem; } .article-featured-image img { border-radius: var(--rounded-lg); width: 100%; max-height: 500px; object-fit: cover; } .article-body p { font-size: 1.15rem; line-height: 1.8; color: var(--text-color-dark); margin-bottom: 2rem; } .article-body h3 { font-size: 1.8rem; margin-top: 3.5rem; margin-bottom: 1.5rem; } .article-body ul { list-style: none; margin: 2rem 0; } .article-body ul li { position: relative; padding-left: 2rem; margin-bottom: 1.25rem; font-size: 1.1rem; color: var(--text-color-dark); } .article-body ul li::before { content: "\2022"; color: var(--lilac-grey); font-size: 2rem; position: absolute; left: 0; top: -0.5rem; } .article-cta-block { margin-top: 5rem; background: var(--warm-white); padding: 4rem; border-radius: var(--rounded-lg); text-align: center; } .inner-cta h3 { font-size: 1.8rem; margin-bottom: 1rem; } .inner-cta p { margin-bottom: 2rem; font-size: 1.05rem; } .doc-page-container { padding: 140px 0 8rem 0; background: var(--warm-white); } .doc-layout { background: var(--pure-white); padding: 5rem; border-radius: var(--rounded-lg); box-shadow: var(--shadow-soft); max-width: 900px; } .doc-layout h1 { font-size: 3rem; margin-bottom: 0.5rem; } .doc-update-date { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 3rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; } .doc-layout h3 { font-size: 1.5rem; margin-top: 3rem; margin-bottom: 1rem; border-top: 1px solid var(--subtle-grey); padding-top: 2rem; } .doc-layout p { line-height: 1.7; margin-bottom: 1.5rem; font-size: 1.05rem; color: var(--text-color-dark); } .doc-layout ul { margin-bottom: 1.5rem; margin-left: 1.5rem; } .doc-layout ul li { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text-color-dark); } .doc-layout table { width: 100%; border-collapse: collapse; margin: 2rem 0; font-size: 0.95rem; } .doc-layout th, .doc-layout td { padding: 1rem; border: 1px solid var(--subtle-grey); text-align: left; } .doc-layout th { background: var(--warm-white); font-weight: 700; color: var(--dark-plum); } .thank-you-view { height: 75vh; display: flex; align-items: center; justify-content: center; padding-top: 80px; } .thank-you-box { text-align: center; max-width: 600px; padding: 4rem; } .success-icon { display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; background: rgba(165,153,181,0.2); color: var(--dark-plum); font-size: 2.5rem; border-radius: 50%; margin-bottom: 2rem; } .thank-you-box h1 { font-size: 3rem; margin-bottom: 1rem; } .thank-you-box p { font-size: 1.15rem; margin-bottom: 3rem; } .cookie-banner { position: fixed; bottom: 2rem; right: 2rem; width: calc(100% - 4rem); max-width: 480px; background: rgba(255, 255, 255, 0.98); border: 1px solid rgba(48,44,56,0.1); border-radius: var(--rounded-lg); padding: 2.5rem; box-shadow: var(--shadow-medium); z-index: 10000; backdrop-filter: blur(15px); display: none; } .cookie-container h3 { font-size: 1.4rem; margin-bottom: 1rem; } .cookie-container p { font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.5; } .cookie-preferences-panels { display: none; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; } .pref-item label { display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; font-weight: 600; color: var(--dark-plum); cursor: pointer; } .pref-item input { width: 1rem; height: 1rem; accent-color: var(--dark-plum); } .cookie-actions { display: flex; flex-direction: column; gap: 0.75rem; } .cookie-btn-primary { background: var(--dark-plum); color: var(--pure-white); border: none; padding: 0.85rem; border-radius: var(--rounded-sm); font-size: 0.9rem; font-weight: 600; cursor: pointer; text-align: center; } .cookie-btn-secondary { background: var(--warm-white); color: var(--dark-plum); border: 1px solid rgba(48,44,56,0.1); padding: 0.85rem; border-radius: var(--rounded-sm); font-size: 0.9rem; font-weight: 600; cursor: pointer; text-align: center; } .cookie-btn-text { background: none; border: none; color: var(--text-muted); font-size: 0.85rem; text-decoration: underline; cursor: pointer; font-family: var(--font-sans); } .cookie-btn-primary.hide, .cookie-preferences-panels.hide { display: none; } @media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 2rem; } .grid-3 { grid-template-columns: repeat(2, 1fr); } .p-card:nth-child(3) { grid-column: span 2; } .cta-images { display: none; } .grid-2-wide { grid-template-columns: 1fr; } .two-column-heading { grid-template-columns: 1fr; gap: 2rem; } .contact-cards-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .burger-btn { display: flex; } .nav-menu { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: var(--pure-white); flex-direction: column; padding: 2rem 0; box-shadow: 0 10px 20px rgba(48,44,56,0.05); gap: 1.5rem; text-align: center; } .nav-menu.mobile-active { display: flex; } .nav-btn-li { width: 80%; } .nav-btn { display: block; text-align: center; } .grid-2 { grid-template-columns: 1fr; gap: 3rem; } .hero-content { margin-left: 0; text-align: center; } .hero-content h1 { font-size: 2.8rem; } .workflow-intro h2 { font-size: 2.2rem; } .about-preview .text-block h2 { font-size: 2.2rem; } .dark-contact-form { padding: 4rem 0; } .honest-form-v2 { padding: 2rem; } .doc-layout { padding: 2rem; } .doc-layout h1 { font-size: 2.2rem; } .footer-grid { grid-template-columns: 1fr; gap: 2rem; } .cookie-banner { bottom: 1rem; right: 1rem; width: calc(100% - 2rem); padding: 1.5rem; } } @media (max-width: 480px) { .grid-4, .grid-3, .contact-cards-grid { grid-template-columns: 1fr; } .p-card:nth-child(3) { grid-column: auto; } }