@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-color: #020d0f;
    color: #e0f7f4;
    overflow-x: hidden;
    max-width: 100%;
}

section {
    max-width: 100%;
    overflow-x: hidden;
}

/* NAV */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 60px;
    background-color: #041a1f;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #00e5cc33;
}

.nav-logo {
    position: absolute;
    left: 60px;
    font-size: 24px;
    font-weight: bold;
    color: #00e5cc;
    text-shadow: 0 0 10px rgba(0, 229, 204, 0.5);
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #00e5cc;
    text-decoration: none;
    margin-left: 0;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: #00e5cc;
    color: #020d0f;
    box-shadow: 0 0 12px #00e5cc;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 2px solid #00e5cc;
    color: #00e5cc;
    font-size: 20px;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background-color: #00e5cc;
    color: #020d0f;
}

/* HERO */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #020d0f;
}

.hero-content {
    width: 100%;
    max-width: 100%;
}

.hero-greeting {
    font-size: 18px;
    color: #00e5cc;
    margin-bottom: 10px;
}

.hero-name {
    font-size: 64px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 229, 204, 0.5);
    margin-bottom: 15px;
}

.hero-title {
    font-size: 22px;
    color: #00e5cc;
    margin-bottom: 20px;
    min-height: 30px;
}

.hero-desc {
    font-size: 16px;
    color: #b0ede6;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background-color: #00e5cc;
    color: #020d0f;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px #00e5cc;
}

.btn-primary:hover {
    background-color: #ffffff;
    color: #00b5a0;
    box-shadow: 0 0 25px #00e5cc;
    transform: scale(1.05);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #00e5cc;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border: 2px solid #00e5cc;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #00e5cc;
    color: #020d0f;
    box-shadow: 0 0 15px #00e5cc;
    transform: scale(1.05);
}

/* SERVICES */
.services-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #041a1f;
}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    display: inline-block;
    background-color: #00e5cc;
    color: #020d0f;
    padding: 10px 40px;
    border-radius: 25px;
    box-shadow: 0 0 15px #00e5cc;
}

.services-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background-color: #020d0f;
    border: 1px solid #00e5cc55;
    border-radius: 15px;
    padding: 40px 30px;
    width: 280px;
    transition: all 0.3s ease;
}

a.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.service-card:visited {
    color: inherit;
}

a.service-card h3,
a.service-card:visited h3 {
    text-decoration: none;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #00e5cc;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

a.service-card:hover .read-more,
a.service-card:visited .read-more {
    color: #00e5cc;
}

a.service-card:hover .read-more {
    color: #ffffff;
}

.section-title-link {
    text-decoration: none;
    color: #020d0f;
}

.section-title-link:visited {
    text-decoration: none;
    color: #020d0f;
}

.section-title-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00e5cc;
}

.service-card:hover {
    border-color: #00e5cc;
    box-shadow: 0 0 25px rgba(0, 229, 204, 0.2);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #00e5cc;
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: #b0ede6;
    font-size: 14px;
    line-height: 1.8;
}

/* SKILLS */
.skills-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #020d0f;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.skill-tag {
    background-color: transparent;
    color: #00e5cc;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    border: 2px solid #00e5cc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.skill-tag:hover {
    background-color: #00e5cc;
    color: #020d0f;
    box-shadow: 0 0 12px #00e5cc;
    transform: scale(1.1);
}

/* CTA */
.cta-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #041a1f;
    border-top: 1px solid #00e5cc33;
    border-bottom: 1px solid #00e5cc33;
}

.cta-section h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-section p {
    color: #b0ede6;
    font-size: 16px;
    margin-bottom: 30px;
}

/* FOOTER */
footer {
    background-color: #041a1f;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #00e5cc33;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-size: 22px;
    font-weight: bold;
    color: #00e5cc;
    text-shadow: 0 0 10px rgba(0, 229, 204, 0.5);
    margin-bottom: 15px;
}

.footer-links {
    margin-bottom: 15px;
    text-align: center;
}

.footer-links a {
    color: #00e5cc;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #00e5cc;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 20px 0 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #00e5cc;
    background-color: transparent;
    text-decoration: none;
    font-size: 0;
    line-height: 1;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #00e5cc;
    box-shadow: 0 0 18px rgba(0, 229, 204, 0.5);
    transform: translateY(-3px);
}

.footer-social a i {
    font-size: 20px;
    color: #00e5cc;
    transition: color 0.3s ease;
}

.footer-social a:hover i {
    color: #020d0f;
}

.footer-copy {
    color: #b0ede6;
    font-size: 13px;
}

/* ABOUT PAGE */
.my-journey-section,
.my-education-section,
.who-i-serve-section,
.my-mission-section,
.my-vision-section,
.my-goals-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 40px auto;
    background-color: #041a1f;
    border-radius: 15px;
    border: 1px solid #00e5cc55;
    box-shadow: 0 0 25px rgba(0, 229, 204, 0.1);
}

.about-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #b0ede6;
    margin-top: 20px;
}

.about-hero {
    min-height: auto;
    padding: 80px 20px 60px;
}

.about-hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.about-photo-wrap {
    flex-shrink: 0;
}

.about-photo {
    width: 320px;
    height: 320px;
    max-width: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
    border: 3px solid #00e5cc;
    box-shadow: 0 0 30px rgba(0, 229, 204, 0.35);
    display: block;
}

.about-hero .hero-content {
    max-width: 520px;
    text-align: left;
}

.about-hero .hero-name {
    font-size: 48px;
}

@media (max-width: 768px) {
    .about-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .about-hero .hero-content {
        text-align: center;
    }

    .about-photo {
        width: 260px;
        height: 260px;
    }

    .about-hero .hero-name {
        font-size: 36px;
    }
}

.my-journey-section h2,
.my-education-section h2,
.who-i-serve-section h2,
.my-mission-section h2,
.my-vision-section h2,
.my-goals-section h2 {
    transition: all 0.3s ease;
    cursor: pointer;
}

.my-journey-section h2:hover,
.my-education-section h2:hover,
.who-i-serve-section h2:hover,
.my-mission-section h2:hover,
.my-vision-section h2:hover,
.my-goals-section h2:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00e5cc;
}

.services-section .section-title,
.skills-section .section-title {
    transition: all 0.3s ease;
    cursor: pointer;
}

.services-section .section-title:hover,
.skills-section .section-title:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00e5cc;
}

/* PORTFOLIO PAGE */
.portfolio-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 40px auto;
    background-color: #041a1f;
    border-radius: 15px;
    border: 1px solid #00e5cc55;
    box-shadow: 0 0 25px rgba(0, 229, 204, 0.1);
    text-align: center;
}

.project-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.project-item {
    background-color: #020d0f;
    border: 1px solid #00e5cc55;
    border-radius: 15px;
    padding: 30px;
    width: 380px;
    text-align: left;
    transition: all 0.3s ease;
}

.project-item:hover {
    border-color: #00e5cc;
    box-shadow: 0 0 25px rgba(0, 229, 204, 0.2);
    transform: translateY(-5px);
}

.project-title {
    color: #00e5cc;
    font-size: 20px;
    margin-bottom: 15px;
}

.project-desc {
    color: #b0ede6;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* CONTACT PAGE */
.contact-section {
    padding: 80px 20px;
    max-width: 700px;
    margin: 40px auto;
    background-color: #041a1f;
    border-radius: 15px;
    border: 1px solid #00e5cc55;
    box-shadow: 0 0 25px rgba(0, 229, 204, 0.1);
    text-align: center;
}

.contact-title {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-desc {
    color: #b0ede6;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info a {
    color: #00e5cc;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #00e5cc;
}

.contact-form {
    text-align: left;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #00e5cc;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #020d0f;
    border: 1px solid #00e5cc55;
    border-radius: 10px;
    color: #e0f7f4;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00e5cc;
    box-shadow: 0 0 10px rgba(0, 229, 204, 0.2);
}

/* LEGAL PAGES */
.legal-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 40px auto;
    background-color: #041a1f;
    border-radius: 15px;
    border: 1px solid #00e5cc55;
    box-shadow: 0 0 25px rgba(0, 229, 204, 0.1);
}

.legal-title {
    font-size: 36px;
    color: #00e5cc;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 229, 204, 0.3);
}

.legal-date {
    color: #b0ede6;
    font-size: 14px;
    margin-bottom: 30px;
}

.legal-heading {
    font-size: 20px;
    color: #00e5cc;
    margin-top: 30px;
    margin-bottom: 10px;
}

.legal-text {
    color: #b0ede6;
    font-size: 15px;
    line-height: 1.8;
}

.legal-text a {
    color: #00e5cc;
    text-decoration: none;
}

.legal-text a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #00e5cc;
}


/* PRICING PAGE */
.pricing-hero {
    padding: 80px 20px 40px;
    text-align: center;
    background-color: #020d0f;
}

.pricing-hero-title {
    font-size: 48px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 229, 204, 0.5);
    margin-bottom: 15px;
}

.pricing-hero-desc {
    color: #b0ede6;
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.pricing-toggle {
    display: inline-flex;
    gap: 0;
    background-color: #041a1f;
    border: 1px solid #00e5cc55;
    border-radius: 30px;
    padding: 5px;
}

.pricing-toggle-btn {
    background: transparent;
    color: #00e5cc;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.pricing-toggle-btn.active {
    background-color: #00e5cc;
    color: #020d0f;
    box-shadow: 0 0 12px #00e5cc;
}

.pricing-toggle-btn:hover:not(.active) {
    color: #ffffff;
}

.pricing-category {
    padding: 60px 20px 80px;
    text-align: center;
    background-color: #041a1f;
    border-top: 1px solid #00e5cc33;
}

.pricing-category:nth-child(even) {
    background-color: #020d0f;
}

.pricing-category-desc {
    color: #b0ede6;
    font-size: 15px;
    max-width: 600px;
    margin: -20px auto 40px;
    line-height: 1.8;
}

.pricing-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #020d0f;
    border: 1px solid #00e5cc55;
    border-radius: 15px;
    padding: 40px 30px;
    width: 320px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: #00e5cc;
    box-shadow: 0 0 25px rgba(0, 229, 204, 0.2);
    transform: translateY(-5px);
}

.pricing-card-popular {
    border-color: #00e5cc;
    box-shadow: 0 0 20px rgba(0, 229, 204, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00e5cc;
    color: #020d0f;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-tier {
    color: #00e5cc;
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.pricing-price {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #00e5cc33;
}

.price-amount {
    font-size: 42px;
    font-weight: bold;
    color: #ffffff;
}

.price-period {
    font-size: 14px;
    color: #b0ede6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    color: #b0ede6;
    font-size: 14px;
    line-height: 1.6;
    padding: 8px 0;
    padding-left: 22px;
    position: relative;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00e5cc;
    font-weight: bold;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    text-align: center;
    width: 100%;
}

.pricing-note {
    padding: 80px 20px;
    text-align: center;
    background-color: #041a1f;
    border-top: 1px solid #00e5cc33;
}

.pricing-note-text {
    color: #b0ede6;
    font-size: 15px;
    max-width: 700px;
    margin: -10px auto 30px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .pricing-hero-title {
        font-size: 36px;
    }

    .pricing-toggle {
        flex-direction: row;
        width: calc(100% - 32px);
        max-width: 360px;
        margin: 0 auto;
        border-radius: 30px;
    }

    .pricing-toggle-btn {
        flex: 1;
        width: auto;
        padding: 12px 8px;
        font-size: 13px;
    }

    .pricing-card {
        width: 100%;
        max-width: 380px;
    }
}

/* CHECKOUT PAGE */
.checkout-section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 40px auto;
}

.checkout-title {
    font-size: 42px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 229, 204, 0.5);
}

.checkout-desc {
    color: #b0ede6;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: start;
}

.checkout-summary,
.checkout-form {
    background-color: #041a1f;
    border: 1px solid #00e5cc55;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 25px rgba(0, 229, 204, 0.1);
}

.checkout-heading {
    color: #00e5cc;
    font-size: 22px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #00e5cc33;
    color: #b0ede6;
    font-size: 15px;
}

.summary-row strong {
    color: #ffffff;
    text-align: right;
}

.summary-total {
    border-bottom: none;
    margin-top: 10px;
    padding-top: 20px;
    font-size: 18px;
}

.summary-total strong {
    color: #00e5cc;
    font-size: 24px;
}

.checkout-back {
    display: block;
    text-align: center;
    margin-top: 25px;
}

.checkout-submit {
    width: 100%;
    border: none;
    cursor: pointer;
}

.checkout-note {
    color: #b0ede6;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 15px;
    text-align: center;
}

.payment-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #00e5cc33;
}

.payment-secure {
    color: #b0ede6;
    font-size: 13px;
    margin-bottom: 20px;
}

.payment-methods {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.payment-method {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid #00e5cc55;
    border-radius: 10px;
    cursor: pointer;
    color: #b0ede6;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.payment-method input {
    accent-color: #00e5cc;
}

.payment-method.active,
.payment-method:has(input:checked) {
    border-color: #00e5cc;
    background-color: #020d0f;
    color: #00e5cc;
    box-shadow: 0 0 12px rgba(0, 229, 204, 0.15);
}

.card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.paypal-note {
    background-color: #020d0f;
    border: 1px solid #00e5cc55;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 10px;
}

.paypal-note p {
    color: #b0ede6;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.checkout-submit {
    margin-top: 10px;
    font-size: 18px;
    padding: 14px 30px;
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .card-row {
        grid-template-columns: 1fr;
    }
}

/* BLOG PAGES */
.blog-hero {
    padding: 80px 20px 40px;
    text-align: center;
    background-color: #020d0f;
}

.blog-post {
    padding: 60px 20px 80px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #041a1f;
    border-radius: 15px;
    border: 1px solid #00e5cc55;
    box-shadow: 0 0 25px rgba(0, 229, 204, 0.1);
}

.blog-meta {
    color: #00e5cc;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.blog-post-title {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-post-intro {
    color: #b0ede6;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #00e5cc33;
}

.blog-heading {
    color: #00e5cc;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
}

.blog-text {
    color: #b0ede6;
    font-size: 15px;
    line-height: 1.8;
}

.blog-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #00e5cc33;
}

/* RESPONSIVE — Tablet (769px–1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    nav {
        padding: 18px 30px;
    }

    .nav-links {
        gap: 6px;
    }

    .nav-links a {
        font-size: 15px;
        padding: 7px 12px;
    }

    .hero-name {
        font-size: 52px;
    }

    .hero-title {
        font-size: 20px;
    }

    .section-title {
        font-size: 30px;
        padding: 10px 30px;
    }

    .service-card {
        width: calc(50% - 15px);
        max-width: 320px;
    }

    .project-item {
        width: calc(50% - 15px);
        max-width: 420px;
    }

    .pricing-card {
        width: calc(50% - 13px);
        max-width: 340px;
    }

    .pricing-hero-title {
        font-size: 42px;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 0 auto;
    }

    .about-hero-inner {
        gap: 30px;
    }

    .about-photo {
        width: 280px;
        height: 280px;
    }

    .about-hero .hero-name {
        font-size: 40px;
    }

    .my-journey-section,
    .my-education-section,
    .who-i-serve-section,
    .my-mission-section,
    .my-vision-section,
    .my-goals-section {
        margin: 30px 20px;
    }
}

/* RESPONSIVE — Mobile (≤768px) — global overrides */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px;
        gap: 0;
    }

    .nav-toggle {
        display: block;
        align-self: flex-end;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 8px;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #00e5cc33;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 12px 16px;
    }

    .hero {
        padding: 40px 16px;
        min-height: auto;
    }

    .hero-name {
        font-size: 32px;
        line-height: 1.25;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 8px;
    }

    .hero-title {
        font-size: 15px;
        line-height: 1.6;
        padding: 0 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-desc {
        font-size: 15px;
        margin-bottom: 28px;
        padding: 0 8px;
    }

    .about-hero {
        padding: 40px 16px 30px;
    }

    .about-hero-inner {
        width: 100%;
        padding: 0;
    }

    .about-photo-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .about-photo {
        width: min(240px, 80vw);
        height: min(240px, 80vw);
    }

    .about-hero .hero-name {
        font-size: 26px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 8px;
    }

    .about-hero .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 8px;
    }

    .about-hero .hero-desc {
        padding: 0 8px;
    }

    .pricing-hero {
        padding: 50px 16px 30px;
    }

    .pricing-hero-title {
        font-size: 28px;
        line-height: 1.25;
        padding: 0 8px;
    }

    .pricing-hero-desc {
        padding: 0 8px;
    }

    .pricing-category {
        padding: 40px 16px 60px;
    }

    .pricing-toggle {
        flex-direction: row;
        width: calc(100% - 32px);
        max-width: 360px;
    }

    .pricing-toggle-btn {
        flex: 1;
        padding: 12px 8px;
        font-size: 13px;
    }

    .section-title {
        font-size: 20px;
        padding: 10px 20px;
        line-height: 1.3;
        max-width: calc(100% - 32px);
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .services-section,
    .skills-section,
    .cta-section {
        padding: 50px 16px;
    }

    .service-card {
        width: 100%;
        max-width: 340px;
        padding: 30px 24px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .project-list {
        padding: 0 16px 40px;
        margin-top: 20px;
    }

    .project-item {
        width: 100%;
        max-width: 100%;
    }

    .contact-section,
    .legal-section,
    .checkout-section {
        margin: 20px 16px;
        padding: 50px 20px;
    }

    .contact-title,
    .legal-title,
    .checkout-title {
        font-size: 28px;
    }

    .blog-post-title {
        font-size: 28px;
    }

    .blog-hero {
        padding: 50px 16px 30px;
    }

    .blog-post {
        margin: 0 16px 40px;
        padding: 40px 20px;
    }

    .blog-cta {
        flex-direction: column;
    }

    .blog-cta .btn-primary,
    .blog-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .footer-links a {
        display: inline-block;
        margin: 0 10px 8px;
    }

    .my-journey-section,
    .my-education-section,
    .who-i-serve-section,
    .my-mission-section,
    .my-vision-section,
    .my-goals-section {
        margin: 20px 16px;
        padding: 50px 20px;
    }
}

/* RESPONSIVE — Small phones (≤480px) */
@media (max-width: 480px) {
    .nav-links a {
        font-size: 12px;
        padding: 5px 8px;
    }

    .hero-name {
        font-size: 30px;
    }

    .about-photo {
        width: 220px;
        height: 220px;
    }

    .about-hero .hero-name {
        font-size: 28px;
    }

    .pricing-hero-title {
        font-size: 30px;
    }

    .price-amount {
        font-size: 34px;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
    }

    .footer-social a i {
        font-size: 18px;
    }
}