.footer {
 background: var(--navy);
 color: #fff;
 padding: 64px 0 28px;
 display: flex;
 justify-content: center;
}
.footer-inner {
 width: 100%;
 max-width: 1120px;
 margin: 0 auto;
 padding: 0 32px;
}
.footer-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 32px;
 align-items: start;
}
@media (min-width: 768px) {
 .footer-grid {
 grid-template-columns: 38% 24% 38%;
 gap: 32px;
 }
}
.footer-col-brand h3 {
 font-size: 20px;
 font-weight: 600;
 color: #fff;
 letter-spacing: -0.01em;
}
.footer-col-brand p {
 font-size: 14px;
 color: rgba(255,255,255,0.55);
 line-height: 1.65;
 margin-top: 10px;
 max-width: 300px;
}
.footer-col-brand .est {
 display: block;
 margin-top: 6px;
 color: rgba(255,255,255,0.4);
 font-size: 13px;
}
.footer-col-heading {
 font-size: 12px;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 0.1em;
 color: rgba(255,255,255,0.45);
 margin-bottom: 14px;
}
.footer-links {
 list-style: none;
 display: flex;
 flex-direction: column;
 gap: 9px;
}
.footer-links a {
 font-size: 14px;
 color: rgba(255,255,255,0.6);
 line-height: 1.5;
 transition: color 0.2s ease;
}
.footer-links a:hover {
 color: #fff;
}
.footer-contact-list {
 display: flex;
 flex-direction: column;
 gap: 10px;
}
.footer-contact-list .contact-row {
 font-size: 14px;
 color: rgba(255,255,255,0.6);
 line-height: 1.5;
 display: flex;
 align-items: center;
 gap: 8px;
 font-weight: 400;
}
.footer-contact-list .contact-row.text-row {
 color: rgba(255,255,255,0.55);
}
.footer-contact-list a {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 color: rgba(255,255,255,0.6);
 font-size: 14px;
 font-weight: 400;
 transition: color 0.2s ease;
}
.footer-contact-list a:hover {
 color: #fff;
}
.footer-contact-list svg {
 width: 15px;
 height: 15px;
 color: rgba(255,255,255,0.45);
 flex-shrink: 0;
}
.footer-divider {
 margin: 40px 0 0;
 border: 0;
 height: 1px;
 background: rgba(255,255,255,0.08);
}
.footer-bottom {
 padding: 20px 0 0;
 display: flex;
 flex-direction: column;
 gap: 10px;
 border-top: none;
}
@media (min-width: 640px) {
 .footer-bottom {
 flex-direction: row;
 justify-content: space-between;
 align-items: center;
 }
}
.footer-bottom .copyright {
 font-size: 13px;
 color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
 display: flex;
 align-items: center;
 gap: 28px;
}
.footer-bottom-links a {
 font-size: 13px;
 color: rgba(255,255,255,0.5);
 transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
 color: #E8F5E9;
}
.faq-container {
 max-width: 800px;
 margin: 0 auto;
}
.faq-item {
 border-bottom: 1px solid var(--border-gray);
}
.faq-question {
 display: flex;
 align-items: center;
 justify-content: space-between;
 width: 100%;
 padding: 24px 0;
 background: none;
 border: none;
 cursor: pointer;
 text-align: left;
}
.faq-question span {
 font-size: 18px;
 font-weight: 600;
 color: var(--navy);
 padding-right: 16px;
}
.faq-question:hover span {
 color: var(--deep-green);
}
.faq-icon {
 width: 32px;
 height: 32px;
 border-radius: 50%;
 background: var(--light-gray);
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
}
.faq-question:hover .faq-icon {
 background: var(--green-light);
}
.faq-icon svg {
 width: 16px;
 height: 16px;
 color: var(--navy);
}
.faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.3s ease, opacity 0.3s ease;
 opacity: 0;
}
.faq-answer.open {
 max-height: 500px;
 opacity: 1;
}
.faq-answer p {
 padding-bottom: 24px;
 color: var(--mid-gray);
 line-height: 1.7;
}
.form-card {
 background: #fff;
 border: 1px solid var(--border-gray);
 border-radius: 16px;
 padding: 32px;
 box-shadow: 0 1px 3px rgba(15,29,47,0.06), 0 4px 12px rgba(15,29,47,0.04);
}
@media (min-width: 768px) {
 .form-card {
 padding: 40px;
 }
}
.form-group {
 margin-bottom: 20px;
}
.form-group label {
 display: block;
 font-size: 14px;
 font-weight: 500;
 color: var(--navy);
 margin-bottom: 6px;
}
.required {
 color: var(--error-red);
}
.form-group input,
.form-group textarea,
.form-group select {
 width: 100%;
 padding: 12px 16px;
 border: 1px solid var(--border-gray);
 border-radius: 8px;
 font-size: 16px;
 font-family: inherit;
 color: var(--navy);
 background: #fff;
 transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
 outline: none;
 border-color: var(--deep-green);
 box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
 color: #9CA3AF;
}
.form-group textarea {
 resize: none;
}
.form-group select {
 appearance: none;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
 background-repeat: no-repeat;
 background-position: right 12px center;
 padding-right: 36px;
}
.form-group .error {
 font-size: 13px;
 color: var(--error-red);
 margin-top: 6px;
}
.form-group input.error-input,
.form-group textarea.error-input {
 border-color: var(--error-red);
}
.form-submit {
 width: 100%;
 margin-top: 8px;
}
.form-privacy {
 font-size: 13px;
 color: var(--mid-gray);
 text-align: center;
 margin-top: 16px;
}
.form-privacy a {
 color: var(--deep-green);
 text-decoration: none;
}
.form-privacy a:hover {
 text-decoration: underline;
}
.success-message {
 text-align: center;
 padding: 48px 0;
}
.success-message svg {
 width: 64px;
 height: 64px;
 color: var(--deep-green);
 margin: 0 auto;
}
.success-message h3 {
 font-size: 20px;
 font-weight: 600;
 color: var(--navy);
 margin-top: 24px;
}
.success-message p {
 color: var(--mid-gray);
 margin-top: 8px;
}
.contact-details {
 display: flex;
 flex-direction: column;
 gap: 28px;
 margin-top: 32px;
}
.contact-item {
 display: flex;
 align-items: flex-start;
 gap: 16px;
}
.contact-item svg {
 width: 24px;
 height: 24px;
 color: var(--deep-green);
 flex-shrink: 0;
}
.contact-item .label {
 font-size: 12px;
 font-weight: 500;
 text-transform: uppercase;
 letter-spacing: 0.05em;
 color: var(--deep-green);
}
.contact-item .value {
 color: var(--navy);
}
.info-box {
 margin-top: 32px;
 background: var(--green-light);
 border-left: 4px solid var(--deep-green);
 border-radius: 12px;
 padding: 24px;
}
.info-box p {
 color: var(--navy);
 line-height: 1.6;
}
.legal-content {
 max-width: 720px;
 margin: 0 auto;
 padding: 48px 20px 80px;
}
@media (min-width: 768px) {
 .legal-content {
 padding: 80px 0 120px;
 }
}
.legal-content h2 {
 font-size: 28px;
 font-weight: 600;
 color: var(--navy);
 margin-top: 48px;
}
.legal-content h2:first-child {
 margin-top: 0;
}
.legal-content p {
 color: var(--mid-gray);
 line-height: 1.8;
 margin-top: 16px;
}
.legal-content ul {
 margin-top: 16px;
 margin-left: 24px;
 color: var(--mid-gray);
 line-height: 1.8;
}
.legal-content ul li {
 margin-bottom: 4px;
}
.legal-content a {
 color: var(--deep-green);
 text-decoration: none;
}
.legal-content a:hover {
 text-decoration: underline;
}
.services-grid-3 {
 display: grid;
 grid-template-columns: 1fr;
 gap: 24px;
 margin-top: 48px;
}
@media (min-width: 640px) {
 .services-grid-3 {
 grid-template-columns: repeat(2, 1fr);
 }
}
@media (min-width: 1024px) {
 .services-grid-3 {
 grid-template-columns: repeat(3, 1fr);
 }
}
.service-card-v2 {
 background: #fff;
 border: 1px solid var(--border-gray);
 border-radius: 16px;
 padding: 32px;
 box-shadow: 0 1px 3px rgba(15,29,47,0.06), 0 4px 12px rgba(15,29,47,0.04);
 transition: all 0.3s;
 display: flex;
 flex-direction: column;
}
.service-card-v2:hover {
 box-shadow: 0 4px 12px rgba(15,29,47,0.08), 0 12px 32px rgba(15,29,47,0.06);
 transform: translateY(-2px);
}
.service-card-v2 .icon-bg {
 width: 48px;
 height: 48px;
 border-radius: 12px;
 background: var(--mint);
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
}
.service-card-v2 .icon-bg svg {
 width: 24px;
 height: 24px;
 color: var(--deep-green);
 stroke-width: 1.5;
}
.service-card-v2 h3 {
 font-size: 18px;
 font-weight: 600;
 color: var(--navy);
 margin-top: 16px;
 line-height: 1.3;
 min-height: 46px;
 display: flex;
 align-items: flex-start;
}
.service-card-v2 .divider {
 height: 1px;
 background: var(--border-gray);
 margin: 20px 0;
}
.service-card-v2 .description {
 font-size: 15px;
 color: var(--mid-gray);
 line-height: 1.6;
}
.service-card-v2 .meta {
 margin-top: 20px;
}
.service-card-v2 .meta-row {
 display: flex;
 align-items: flex-start;
 gap: 8px;
 font-size: 14px;
 color: var(--mid-gray);
 line-height: 1.5;
}
.service-card-v2 .meta-row + .meta-row {
 margin-top: 8px;
}
.service-card-v2 .meta-row svg {
 width: 16px;
 height: 16px;
 color: var(--deep-green);
 flex-shrink: 0;
 margin-top: 2px;
}
.service-card-v2 .meta-row strong {
 color: var(--deep-green);
 font-weight: 600;
}
.personal-service {
 background: var(--white);
}
.personal-service-box {
 max-width: 720px;
 margin: 0 auto;
 text-align: center;
}
.personal-service-box h2 {
 font-size: 28px;
 font-weight: 600;
 color: var(--navy);
 line-height: 1.2;
}
@media (min-width: 768px) {
 .personal-service-box h2 {
 font-size: 36px;
 }
}
.personal-service-box .body-text {
 color: var(--mid-gray);
 line-height: 1.8;
 margin-top: 24px;
 text-align: left;
}
.personal-service-box .body-text p + p {
 margin-top: 16px;
}
.personal-service-box .promise {
 margin-top: 32px;
 padding: 20px 28px;
 background: var(--mint);
 border-radius: 12px;
 display: inline-block;
}
.personal-service-box .promise p {
 font-size: 16px;
 font-weight: 500;
 color: var(--navy);
 font-style: italic;
}
.personal-service-box .btn-primary {
 margin-top: 32px;
}
.personal-service-compact .personal-service-box {
 max-width: 640px;
}
.personal-service-compact .body-text {
 text-align: center;
}
.founder-section {
 background: #F3F7F3;
 padding: 80px 0;
}
@media (max-width: 767px) {
 .founder-section {
 padding: 56px 0;
 }
}
.founder-layout {
 display: flex;
 flex-direction: column;
 gap: 40px;
 max-width: 1160px;
 margin: 0 auto;
 padding: 0 20px;
}
@media (min-width: 768px) {
 .founder-layout {
 flex-direction: row;
 align-items: center;
 gap: 64px;
 }
 .founder-layout > *:first-child {
 flex: 0 0 35%;
 max-width: 360px;
 }
 .founder-layout > *:last-child {
 flex: 1 1 65%;
 }
}
.founder-profile {
 text-align: center;
}
.founder-profile .founder-avatar {
 width: 96px;
 height: 96px;
 border-radius: 50%;
 background: var(--deep-green);
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto;
}
.founder-profile .founder-avatar span {
 font-family: 'Playfair Display', Georgia, serif;
 font-size: 38px;
 color: #fff;
}
.founder-profile h3 {
 font-size: 18px;
 font-weight: 600;
 color: var(--navy);
 margin-top: 16px;
}
.founder-profile .role {
 font-size: 14px;
 color: var(--deep-green);
 font-weight: 500;
 margin-top: 2px;
}
.founder-profile .contact-links {
 margin-top: 20px;
 display: flex;
 flex-direction: column;
 gap: 10px;
 align-items: center;
}
.founder-profile .contact-link {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 font-size: 14px;
 color: var(--mid-gray);
 transition: color 0.2s;
}
.founder-profile .contact-link:hover {
 color: var(--deep-green);
}
.founder-profile .contact-link svg {
 width: 16px;
 height: 16px;
 color: var(--deep-green);
 flex-shrink: 0;
}
.founder-content h2 {
 font-size: 26px;
 font-weight: 600;
 color: var(--navy);
 line-height: 1.25;
 margin-top: 12px;
}
@media (min-width: 768px) {
 .founder-content h2 {
 font-size: 30px;
 }
}
.founder-content .body-text {
 color: var(--mid-gray);
 line-height: 1.7;
 margin-top: 16px;
}
.founder-content .body-text p + p {
 margin-top: 12px;
}
.founder-content .benefits-row {
 margin-top: 24px;
 display: flex;
 flex-wrap: wrap;
 gap: 10px 24px;
}
.founder-content .benefits-row .benefit-tag {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 font-size: 15px;
 font-weight: 500;
 color: var(--navy);
}
.founder-content .benefits-row .benefit-tag .check {
 color: var(--deep-green);
 font-size: 18px;
 line-height: 1;
 flex-shrink: 0;
}
.founder-content .btn-primary {
 margin-top: 28px;
}
@media (max-width: 639px) {
 .founder-content .btn-primary {
 width: 100%;
 justify-content: center;
 }
}
.contact-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 40px;
}
@media (min-width: 1024px) {
 .contact-grid {
 grid-template-columns: 1.2fr 1fr;
 gap: 64px;
 }
}
.text-center {
 text-align: center;
}
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
@keyframes fadeIn {
 from { opacity: 0; transform: translateY(8px); }
 to { opacity: 1; transform: translateY(0); }
}
.page-content {
 animation: fadeIn 0.4s ease-out;
}
html, body {
 overflow-x: hidden;
}
h1, h2, h3 {
 max-width: 100%;
}
@media (max-width: 767px) {
 .content-max-width {
 padding: 0 24px;
 }
}
@media (max-width: 767px) {
 .navbar {
 height: 72px;
 }
 .navbar .content-max-width {
 padding: 0 24px;
 }
 .navbar-logo {
 font-size: 20px;
 }
 
 .mobile-menu-btn {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 44px;
 height: 44px;
 padding: 0;
 border-radius: 8px;
 transition: background 0.2s;
 }
 .mobile-menu-btn:active {
 background: var(--light-gray);
 }
}
@media (max-width: 767px) {
 .mobile-nav {
 display: none;
 position: fixed;
 top: 72px;
 left: 0;
 right: 0;
 bottom: 0;
 background: #fff;
 z-index: 998;
 padding: 12px 24px 32px;
 overflow-y: auto;
 -webkit-overflow-scrolling: touch;
 border-bottom: none;
 box-shadow: none;
 }
 .mobile-nav.open {
 display: block;
 }
 
 .mobile-nav a {
 display: block;
 padding: 16px 0;
 font-size: 17px;
 font-weight: 500;
 color: var(--navy);
 border-bottom: 1px solid var(--border-gray);
 text-align: left;
 }
 .mobile-nav a:first-child {
 border-top: 1px solid var(--border-gray);
 }
 
 .mobile-nav .btn-primary {
 margin-top: 20px;
 width: 100%;
 padding: 14px 24px;
 font-size: 15px;
 font-weight: 600;
 border-radius: 10px;
 text-align: center;
 justify-content: center;
 min-height: 48px;
 }
 
 body.menu-open {
 overflow: hidden;
 position: fixed;
 width: 100%;
 height: 100%;
 }
}
@media (max-width: 767px) {
 .hero {
 min-height: auto;
 padding-top: 72px;
 }
 .hero-inner {
 padding-top: 36px;
 padding-bottom: 48px;
 }
 .hero-grid {
 gap: 28px;
 }
 
 .hero h1 {
 font-size: clamp(30px, 8.5vw, 40px);
 line-height: 1.1;
 word-wrap: break-word;
 overflow-wrap: break-word;
 word-break: break-word;
 hyphens: auto;
 }
 
 .hero p {
 font-size: 17px;
 line-height: 1.65;
 margin-top: 16px;
 max-width: 100%;
 }
 
 .hero-image {
 border-radius: 16px;
 aspect-ratio: 16/10;
 order: -1;
 }
 
 .hero-buttons {
 display: flex;
 flex-direction: column;
 gap: 12px;
 margin-top: 24px;
 }
 .hero-buttons .btn-primary,
 .hero-buttons .btn-secondary {
 width: 100%;
 min-height: 48px;
 font-size: 15px;
 padding: 14px 24px;
 }
 
 .hero-benefits {
 flex-direction: column;
 gap: 10px;
 margin-top: 24px;
 }
 .hero-benefit {
 font-size: 15px;
 }
}
@media (max-width: 767px) {
 .hero-small .hero-inner {
 padding-top: 36px;
 padding-bottom: 44px;
 }
 .hero-small h1 {
 font-size: clamp(28px, 7.5vw, 36px);
 line-height: 1.12;
 word-wrap: break-word;
 overflow-wrap: break-word;
 word-break: break-word;
 hyphens: auto;
 }
 .hero-small p {
 font-size: 16px;
 line-height: 1.6;
 margin-top: 12px;
 }
}
@media (max-width: 767px) {
 .benefits-bar {
 padding: 44px 0;
 }
 .benefits-grid {
 grid-template-columns: repeat(2, 1fr);
 gap: 28px 20px;
 }
 .benefit-item svg {
 width: 36px;
 height: 36px;
 }
 .benefit-item h3 {
 font-size: 16px;
 margin-top: 12px;
 }
 .benefit-item p {
 font-size: 13px;
 margin-top: 4px;
 line-height: 1.4;
 }
}
@media (max-width: 339px) {
 .benefits-grid {
 grid-template-columns: 1fr;
 gap: 28px;
 }
}
@media (max-width: 767px) {
 .section {
 padding: 56px 0;
 }
 .section h2 {
 font-size: clamp(26px, 7vw, 32px);
 line-height: 1.2;
 }
 .section-description {
 font-size: 16px;
 line-height: 1.6;
 margin-top: 12px;
 }
 .eyebrow {
 font-size: 11px;
 margin-bottom: 12px;
 }
}
@media (max-width: 767px) {
 .cards-grid-3 {
 gap: 16px;
 margin-top: 32px;
 }
 .card {
 padding: 28px;
 border-radius: 14px;
 }
 .card .icon-bg {
 width: 44px;
 height: 44px;
 border-radius: 10px;
 }
 .card .icon-bg svg {
 width: 22px;
 height: 22px;
 }
 .card h3 {
 font-size: 17px;
 margin-top: 14px;
 }
 .card p {
 font-size: 14px;
 line-height: 1.55;
 }
 .card svg {
 width: 28px;
 height: 28px;
 }
}
@media (max-width: 767px) {
 .two-column {
 gap: 32px;
 }
 .two-column img {
 border-radius: 14px;
 }
 .factor-list {
 gap: 18px;
 margin-top: 24px;
 }
 .factor-item svg {
 width: 18px;
 height: 18px;
 margin-top: 3px;
 }
 .factor-item h4 {
 font-size: 16px;
 }
 .factor-item p {
 font-size: 13px;
 }
}
@media (max-width: 767px) {
 .steps-grid {
 gap: 40px;
 margin-top: 32px;
 }
 .step-number {
 font-size: 44px;
 }
 .step h3 {
 font-size: 18px;
 margin-top: 12px;
 }
 .step p {
 font-size: 15px;
 line-height: 1.55;
 }
}
@media (max-width: 767px) {
 .cards-grid-3 .card {
 padding: 28px;
 }
 .cards-grid-3 .card svg {
 width: 32px;
 height: 32px;
 }
}
@media (max-width: 767px) {
 .personal-service {
 padding: 56px 24px;
 }
 .personal-service-box {
 max-width: 100%;
 text-align: left;
 }
 .personal-service-box h2 {
 font-size: clamp(24px, 6.5vw, 30px);
 text-align: left;
 }
 .personal-service-box .body-text {
 margin-top: 16px;
 text-align: left;
 font-size: 16px;
 line-height: 1.65;
 }
 .personal-service-box .promise {
 margin-top: 20px;
 padding: 16px 24px;
 display: block;
 border-radius: 10px;
 }
 .personal-service-box .promise p {
 font-size: 15px;
 font-style: normal;
 }
 .personal-service-box .btn-primary {
 margin-top: 24px;
 width: 100%;
 min-height: 48px;
 font-size: 15px;
 justify-content: center;
 }
 
 .personal-service-compact .personal-service-box {
 max-width: 100%;
 }
 .personal-service-compact .body-text {
 text-align: left;
 }
}
@media (max-width: 767px) {
 .cta-banner {
 padding: 56px 24px;
 }
 .cta-banner h2 {
 font-size: clamp(26px, 7vw, 32px);
 }
 .cta-banner p {
 font-size: 16px;
 line-height: 1.6;
 margin-top: 12px;
 }
 .cta-banner .btn-white {
 margin-top: 24px;
 width: 100%;
 min-height: 48px;
 font-size: 15px;
 }
 .cta-banner .phone {
 margin-top: 16px;
 font-size: 15px;
 }
}
@media (max-width: 767px) {
 .footer {
 padding: 48px 0 28px;
 }
 .footer-inner {
 padding: 0 24px;
 }
 .footer-grid {
 gap: 36px;
 }
 .footer-col-brand h3 {
 font-size: 18px;
 }
 .footer-col-brand p {
 font-size: 14px;
 max-width: 100%;
 margin-top: 8px;
 }
 .footer-col-heading {
 margin-bottom: 12px;
 }
 .footer-links {
 gap: 10px;
 }
 .footer-links a {
 font-size: 15px;
 }
 .footer-contact-list {
 gap: 12px;
 }
 .footer-contact-list a,
 .footer-contact-list .contact-row {
 font-size: 15px;
 }
 .footer-divider {
 margin-top: 36px;
 }
 .footer-bottom {
 padding-top: 20px;
 gap: 16px;
 }
 .footer-bottom-links {
 gap: 24px;
 }
}
@media (max-width: 767px) {
 .services-grid-3 {
 gap: 16px;
 margin-top: 32px;
 }
 .service-card-v2 {
 padding: 28px;
 border-radius: 14px;
 }
 .service-card-v2 .icon-bg {
 width: 44px;
 height: 44px;
 border-radius: 10px;
 }
 .service-card-v2 .icon-bg svg {
 width: 22px;
 height: 22px;
 }
 .service-card-v2 h3 {
 font-size: 17px;
 margin-top: 14px;
 min-height: auto;
 line-height: 1.35;
 }
 .service-card-v2 .divider {
 margin: 16px 0;
 }
 .service-card-v2 .description {
 font-size: 14px;
 line-height: 1.55;
 }
 .service-card-v2 .meta {
 margin-top: 16px;
 }
 .service-card-v2 .meta-row {
 font-size: 13px;
 line-height: 1.45;
 }
 .service-card-v2 .meta-row + .meta-row {
 margin-top: 6px;
 }
 .service-card-v2 .meta-row svg {
 width: 14px;
 height: 14px;
 margin-top: 2px;
 }
}
@media (max-width: 767px) {
 .faq-container {
 padding: 0 24px;
 }
 .faq-question {
 padding: 18px 0;
 }
 .faq-question span {
 font-size: 16px;
 padding-right: 20px;
 }
 .faq-icon {
 width: 28px;
 height: 28px;
 }
 .faq-icon svg {
 width: 14px;
 height: 14px;
 }
 .faq-answer p {
 padding-bottom: 18px;
 font-size: 15px;
 line-height: 1.6;
 }
}
@media (max-width: 767px) {
 .founder-section {
 padding: 48px 0;
 }
 .founder-layout {
 gap: 32px;
 padding: 0 24px;
 }
 .founder-profile .founder-avatar {
 width: 80px;
 height: 80px;
 }
 .founder-profile .founder-avatar span {
 font-size: 32px;
 }
 .founder-profile h3 {
 font-size: 17px;
 }
 .founder-profile .role {
 font-size: 13px;
 }
 .founder-profile .contact-links {
 margin-top: 16px;
 gap: 8px;
 }
 .founder-profile .contact-link {
 font-size: 14px;
 }
 .founder-content h2 {
 font-size: clamp(22px, 6vw, 26px);
 line-height: 1.25;
 margin-top: 8px;
 }
 .founder-content .body-text {
 font-size: 15px;
 line-height: 1.6;
 margin-top: 14px;
 }
 .founder-content .benefits-row {
 margin-top: 20px;
 gap: 8px 16px;
 }
 .founder-content .benefits-row .benefit-tag {
 font-size: 14px;
 }
 .founder-content .btn-primary {
 margin-top: 24px;
 width: 100%;
 justify-content: center;
 min-height: 48px;
 }
}
@media (max-width: 767px) {
 .contact-grid {
 gap: 40px;
 }
 .form-card {
 padding: 24px;
 border-radius: 14px;
 }
 .form-group {
 margin-bottom: 18px;
 }
 .form-group label {
 font-size: 14px;
 }
 .form-group input,
 .form-group textarea,
 .form-group select {
 padding: 12px 14px;
 font-size: 16px; 
 }
 .form-submit {
 min-height: 48px;
 font-size: 15px;
 }
 .contact-details {
 gap: 20px;
 margin-top: 24px;
 }
 .contact-item svg {
 width: 22px;
 height: 22px;
 }
 .info-box {
 padding: 20px;
 margin-top: 24px;
 }
}
@media (max-width: 767px) {
 .legal-content {
 padding: 32px 24px 64px;
 }
 .legal-content h2 {
 font-size: 22px;
 margin-top: 36px;
 }
 .legal-content p {
 font-size: 15px;
 line-height: 1.65;
 margin-top: 12px;
 }
 .legal-content ul {
 margin-left: 20px;
 font-size: 15px;
 line-height: 1.65;
 }
 .legal-content ul li {
 margin-bottom: 6px;
 }
}
@media (max-width: 767px) {
 .text-center .btn-secondary {
 width: 100%;
 min-height: 48px;
 font-size: 15px;
 }
}
@media (max-width: 767px) {
 .cta-banner .buttons {
 flex-direction: column;
 gap: 12px;
 margin-top: 24px;
 }
 .cta-banner .buttons .btn-white,
 .cta-banner .buttons .btn-outline-white {
 width: 100%;
 min-height: 48px;
 font-size: 15px;
 justify-content: center;
 }
}
@media (max-width: 767px) {
 .cards-grid-4 {
 gap: 16px;
 margin-top: 32px;
 }
 .cards-grid-4 .card {
 padding: 24px;
 }
}
@media (max-width: 359px) {
 .hero h1 {
 font-size: 28px;
 }
 .hero-small h1 {
 font-size: 26px;
 }
 .section h2 {
 font-size: 24px;
 }
 .cta-banner h2 {
 font-size: 24px;
 }
 .personal-service-box h2 {
 font-size: 22px;
 }
 .card,
 .service-card-v2 {
 padding: 22px;
 }
 .step-number {
 font-size: 38px;
 }
 .faq-question span {
 font-size: 15px;
 }
}
@media (max-width: 767px) {
 .hero-small[style*="min-height:auto"] .content-max-width {
 padding-top: 100px !important;
 padding-bottom: 40px !important;
 }
 .hero-small[style*="min-height:auto"] h1 {
 font-size: clamp(26px, 7vw, 34px);
 word-wrap: break-word;
 overflow-wrap: break-word;
 word-break: break-word;
 hyphens: auto;
 }
}