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

:root {
    --max-width: 1200px;
    --padding-desktop: 60px;
    --padding-tablet: 40px;
    --padding-mobile: 20px;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(ellipse at center, #1a1818 0%, #000000 70%);
    background-attachment: fixed;
    color: #fff;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(26, 24, 24, 0.12) 0%, transparent 20%);
    pointer-events: none;
    z-index: 1;
}

/* NAVIGATION */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.33, 0.66, 0.66, 1);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
    white-space: nowrap;
}

.nav a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.nav.scrolled a {
    color: #333 !important;
}

.nav.scrolled a:hover {
    color: #000 !important;
}

.nav.scrolled .btn {
    border-color: #333 !important;
    color: #333 !important;
}

.nav.scrolled .btn:hover {
    border-color: #000 !important;
    color: #000 !important;
}

.logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.nav nav {
    display: flex;
    align-items: center;
    gap: 20px;
}


.btn {
    padding: 8px 14px !important;
    border-radius: 6px;
    border: 1px solid #555;
    background: transparent;
    color: #aaa !important;
    transition: all 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
    font-size: 12px !important;
    cursor: pointer;
}

.btn:hover {
    border-color: #fff;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.cta-btn {
    padding: 12px 30px;
    border-radius: 6px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
    font-size: 14px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.cta-btn:hover {
    border-color: #fff;
    color: #000;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.about .cta-btn {
    margin-top: 40px;
}

.services-section > div[style*="text-align"],
.pricing-section > div[style*="text-align"] {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #aaa;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav.scrolled .hamburger span {
    background: #333;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 120px;
    font-weight: 800;
    margin-bottom: 20px;
}

.definition {
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
}

.origin {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 8px;
    font-weight: 400;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: #aaa;
    stroke-width: 2;
    fill: none;
}

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

/* Scroll Dots Navigation */
.scroll-dots {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 50;
}

.scroll-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #555;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
    background: transparent;
}

.scroll-dots .dot.active {
    background: #aaa;
    border-color: #aaa;
    transform: scale(1.3);
}

.scroll-dots.scrolled .dot {
    border-color: #ccc;
}

.scroll-dots.scrolled .dot.active {
    background: #333;
    border-color: #333;
}

/* TAGLINE */
.tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}

.line {
    flex: 1;
    height: 1px;
    background: #333;
}

/* CLIENTS CAROUSEL */
.clients-section {
    padding: 40px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    overflow: hidden;
}

.clients-label {
    text-align: center;
    font-size: 11px;
    letter-spacing: 3px;
    color: #444;
    margin-bottom: 25px;
}

.clients-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.clients-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.clients-track span {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.clients-track span:hover {
    color: #aaa;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* FOUNDER SECTION */
.founder-section {
    padding: 100px 40px;
    border-bottom: 1px solid #222;
}

.founder-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 var(--padding-desktop);
}

.founder-content > * {
    min-width: 0;
}

.founder-image {
    overflow: hidden;
    min-width: 0;
}

.founder-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top;
    filter: grayscale(20%);
}

.founder-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: #555;
    margin-bottom: 20px;
}

.founder-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.founder-tagline {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 30px;
    font-style: italic;
}

.founder-bio {
    color: #aaa;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 15px;
}

.founder-bio strong {
    color: #fff;
}

.founder-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #222;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 12px;
    color: #555;
    letter-spacing: 1px;
}

/* ABOUT */
.about {
    padding: 100px var(--padding-desktop);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border-bottom: 1px solid #222;
}

.about h3 {
    margin-bottom: 20px;
    font-size: 28px;
}

.about p {
    color: #aaa;
    line-height: 1.8;
    text-align: justify;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.section-header p {
    color: #aaa;
    font-size: 16px;
}

/* SERVICES SECTION */
.services-section {
    padding: 100px var(--padding-desktop);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.service-card {
    border: 1px solid #222;
    padding: 40px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #444;
    background: rgba(255, 255, 255, 0.02);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.service-list {
    list-style: none;
    color: #aaa;
}

.service-list li {
    padding: 5px 0;
    font-size: 13px;
}

.service-list li:before {
    content: "→ ";
    color: #666;
    margin-right: 10px;
}

/* TERMS ACCORDION */
/* PRICING SECTION */
.pricing-section {
    padding: 100px var(--padding-desktop);
    background: rgba(255, 255, 255, 0.02);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.pricing-card {
    border: 1px solid #222;
    padding: 40px;
    text-align: left;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #444;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.pricing-card .price {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-card p {
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 14px;
}

.pricing-card.highlight {
    background: rgba(255, 255, 255, 0.05);
    border-color: #444;
}

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

.feature-list li {
    padding: 8px 0;
    color: #aaa;
    font-size: 13px;
}

.feature-list li:before {
    content: "✓ ";
    color: #fff;
    margin-right: 10px;
}

/* CONTACT SECTION */
.contact-section {
    padding: 100px var(--padding-desktop);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-info h3,
.contact-form-wrapper h3 {
    font-size: 22px;
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h4 {
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-block p,
.info-block a {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
}

.info-block a:hover {
    color: #aaa;
}

/* CONTACT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    margin-bottom: 8px;
    color: #aaa;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #222;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #444;
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    padding: 12px 30px;
    background: #fff;
    color: #000;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
    margin-top: 8px;
    font-size: 14px;
}

.submit-btn:hover {
    background: #ddd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-note {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
}

/* CONTACT PAGE */
.contact-page {
    margin-top: 80px;
    padding: 100px var(--padding-desktop);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-page h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.contact-info h3,
.contact-form-wrapper h3 {
    font-size: 22px;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    margin-bottom: 8px;
    color: #aaa;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #222;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #444;
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    padding: 12px 30px;
    background: #fff;
    color: #000;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
    margin-top: 8px;
    font-size: 14px;
}

.submit-btn:hover {
    background: #ddd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-note {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
}

/* POLICY PAGES */
.policy-page {
    max-width: 900px;
    margin: 120px auto 80px;
    padding: 0 var(--padding-desktop);
}

.policy-page h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.policy-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 40px;
}

.policy-page h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-page p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-page a {
    color: #fff;
    text-decoration: underline;
}

.policy-page a:hover {
    color: #aaa;
}

/* PROCESS SECTION */
.process-section {
    padding: 100px var(--padding-desktop);
    background: rgba(255, 255, 255, 0.01);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ SECTION */
.faq-section {
    padding: 100px var(--padding-desktop);
    background: rgba(255, 255, 255, 0.01);
}

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

.faq-item {
    border-bottom: 1px solid #222;
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: #aaa;
    transform: translateX(5px);
}

.faq-toggle {
    font-size: 24px;
    transition: transform 0.4s ease-in-out;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 700px;
    padding: 0 0 20px 0;
}

.faq-answer p {
    color: #aaa;
    line-height: 1.8;
    font-size: 14px;
    margin: 0;
}

.faq-answer a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}

.faq-answer a:hover {
    color: #aaa;
}

.payment-policies-content h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}

.policy-list {
    list-style: none;
    color: #aaa;
    padding-left: 0;
    margin: 0;
}

.policy-list li {
    padding: 5px 0;
    font-size: 13px;
    line-height: 1.5;
}

.policy-list a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}

.policy-list a:hover {
    color: #aaa;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #000;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    border: 1px solid #222;
    border-radius: 4px;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #fff;
}

.modal-body {
    padding: 30px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-body iframe {
    width: 100%;
    height: 600px;
    display: block;
}

/* BOOKING PAGE */
.booking-section {
    padding: 100px var(--padding-desktop);
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.calendar-wrapper {
    border: 1px solid #222;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    min-height: 600px;
}

.calendar-wrapper iframe {
    min-height: 550px !important;
}

.booking-info {
    padding: 20px 0;
}

.booking-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

.booking-list li {
    padding: 12px 0;
    color: #aaa;
    font-size: 14px;
    border-bottom: 1px solid #222;
}

.booking-list li:before {
    content: "✓ ";
    color: #fff;
    margin-right: 12px;
}

/* FOOTER */
.footer {
    border-top: 1px solid #222;
    padding: 60px var(--padding-desktop);
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-logo-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-left p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.8;
}

.footer-nav,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a,
.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-nav a:hover,
.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    font-size: 12px;
    padding-top: 20px;
    border-top: 1px solid #222;
}

/* RESPONSIVE TABLET */
@media (max-width: 1024px) {
    :root {
        --padding-desktop: 40px;
    }

    .nav {
        padding: 15px 20px;
    }

    .nav nav {
        gap: 15px;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image img {
        height: 400px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    :root {
        --padding-desktop: 20px;
    }

    .scroll-dots {
        display: none;
    }

    .nav {
        padding: 12px 15px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        padding: 20px;
        gap: 15px;
        display: none !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu a {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        transition: all 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
    }

    .nav-menu a:hover {
        transform: translateX(5px);
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .nav nav {
        gap: 12px;
    }

    .logo {
        height: 30px;
    }

    .hero {
        margin-top: 80px;
        height: 100vh;
    }

    .hero h1 {
        font-size: 72px;
        font-weight: 800;
        letter-spacing: -1px;
        line-height: 1.1;
    }

    .definition {
        font-size: 13px;
        max-width: 90%;
        line-height: 1.7;
        padding: 0 10px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 14px;
    }

    .tagline {
        padding: 30px 20px;
        flex-direction: column;
    }

    .tagline p {
        font-weight: 600;
        text-align: center;
    }

    .tagline .line {
        display: none;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .founder-image img {
        height: 320px;
        object-position: top;
    }

    .founder-content h2 {
        font-size: 32px;
    }

    .founder-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 22px;
    }

    .founder-section {
        padding: 60px var(--padding-desktop);
    }

    .about,
    .services-section,
    .pricing-section,
    .policies-section {
        padding: 50px var(--padding-desktop);
    }

    .about {
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .service-card,
    .pricing-card {
        padding: 24px 18px;
    }

    .service-card h3,
    .pricing-card h3,
    .policy-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .service-card p,
    .pricing-card p {
        margin-bottom: 15px;
        font-size: 13px;
        line-height: 1.5;
    }

    .pricing-card .price {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .service-list li,
    .feature-list li {
        padding: 4px 0;
        font-size: 12px;
    }

    .footer {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 40px var(--padding-desktop);
    }

    .footer-logo {
        height: 35px;
    }

    .footer-left p {
        font-size: 12px;
    }

    .footer-bottom {
        grid-column: auto;
        text-align: center;
        border-top: 1px solid #222;
        padding-top: 15px;
        font-size: 11px;
    }

    .policy-page {
        margin-top: 90px;
        padding: 0 var(--padding-desktop);
    }

    .policy-page h1 {
        font-size: 32px;
    }

    .policy-page h2 {
        font-size: 20px;
        margin-top: 30px;
    }

    .policy-page p {
        font-size: 13px;
    }

    .modal {
        padding: 20px;
        overflow-y: auto;
    }

    .modal-content {
        width: 100%;
        margin: 20px auto;
        max-width: 100%;
        display: flex;
        flex-direction: column;
    }

    .modal-close {
        right: 15px;
        top: 15px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-body iframe {
        width: 100%;
        height: 350px;
        display: block;
    }

    .booking-section {
        padding: 50px var(--padding-desktop);
    }

    .booking-info h3 {
        font-size: 18px;
    }

    .info-block h4 {
        font-size: 11px;
    }

    .info-block a,
    .info-block p {
        font-size: 13px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-page {
        margin-top: 90px;
        padding: 50px var(--padding-desktop);
    }

    .contact-page h1 {
        font-size: 32px;
    }

    .process-section {
        padding: 50px var(--padding-desktop);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .step {
        padding: 20px 15px;
    }

    .step h4 {
        font-size: 16px;
    }

    .step p {
        font-size: 13px;
    }
}

/* RESPONSIVE SMALL MOBILE */
@media (max-width: 480px) {
    :root {
        --padding-desktop: 15px;
    }

    .nav {
        padding: 10px 12px;
    }

    .nav nav {
        gap: 8px;
    }

    .nav a {
        font-size: 11px;
    }

    .btn {
        padding: 6px 10px !important;
        font-size: 10px !important;
    }

    .logo {
        height: 25px;
    }

    .hero {
        margin-top: 70px;
        height: 100vh;
    }

    .hero h1 {
        font-size: 52px;
        font-weight: 800;
        letter-spacing: -0.5px;
        line-height: 1.1;
    }

    .definition {
        font-size: 12px;
        max-width: 85%;
        padding: 0 8px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .about,
    .services-section,
    .pricing-section {
        padding: 40px var(--padding-desktop);
    }

    .about h3 {
        font-size: 22px;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card,
    .pricing-card {
        padding: 20px 14px;
    }

    .service-card h3,
    .pricing-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .service-card p,
    .pricing-card p,
    .policy-card p {
        font-size: 12px;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .service-list li,
    .feature-list li {
        padding: 3px 0;
        font-size: 11px;
    }

    .footer {
        padding: 30px var(--padding-desktop);
        gap: 20px;
    }

    .footer-logo {
        height: 30px;
    }

    .footer-left p {
        font-size: 11px;
    }

    .footer-nav a,
    .footer-links a {
        font-size: 12px;
    }

    .policy-page {
        margin-top: 80px;
        padding: 0 var(--padding-desktop);
    }

    .policy-page h1 {
        font-size: 28px;
    }

    .modal-body {
        padding: 15px;
    }

    .modal-body iframe {
        width: 100%;
        height: 300px;
        display: block;
    }

    .contact-page {
        margin-top: 80px;
        padding: 40px var(--padding-desktop);
    }

    .contact-page h1 {
        font-size: 28px;
    }

    .contact-wrapper {
        gap: 30px;
    }

    .contact-info h3,
    .contact-form-wrapper h3 {
        font-size: 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 50px var(--padding-desktop);
    }

    .faq-question {
        padding: 20px 0;
        font-size: 15px;
    }

    .scroll-indicator {
        display: none;
    }

    .step {
        padding: 20px 10px;
    }

    .faq-section {
        padding: 40px var(--padding-desktop);
    }

    .faq-question {
        padding: 18px 0;
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}
