:root {
    --battleship-gray: #909090;
    --blue-green: #4694b2;
    --raisin-black: #292a31;
    --apricot: #fdd5b7;
    --penn-red: #9d1e16;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
        Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue-green);
    letter-spacing: -0.5px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--raisin-black);
    margin: 3px 0;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--blue-green);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-nav {
    background: var(--blue-green);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: var(--transition);
}

.cta-nav:hover {
    background: var(--penn-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(157, 30, 22, 0.3);
}

.cta-nav::after {
    display: none;
}

.hero {
    padding: 120px 0 80px;
    background: linear-gradient(
        135deg,
        var(--light-gray) 0%,
        var(--white) 100%
    );
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--apricot) 0%, transparent 70%);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--penn-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--raisin-black);
}

.highlight {
    color: var(--blue-green);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--battleship-gray);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.feature-item svg {
    color: var(--blue-green);
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--blue-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(70, 148, 178, 0.3);
}

.btn-primary:hover {
    background: var(--penn-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(157, 30, 22, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--blue-green);
    border: 2px solid var(--blue-green);
}

.btn-secondary:hover {
    background: var(--blue-green);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.price-info {
    color: var(--battleship-gray);
    font-size: 0.875rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-preview {
    background: var(--raisin-black);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.code-header {
    background: #1a1b21;
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}
.dot.yellow {
    background: #ffbd2e;
}
.dot.green {
    background: #28ca42;
}

.code-content {
    padding: 1.5rem;
    font-family: "Consolas", "Monaco", monospace;
    font-size: 0.875rem;
    color: #e6e6e6;
    line-height: 1.6;
    overflow-x: auto;
}

.tag {
    color: #ff6b6b;
}
.attr {
    color: #ffd93d;
}
.string {
    color: #6bcf7f;
}
.text {
    color: #e6e6e6;
}

.about {
    padding: 80px 0;
    background: var(--white);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--raisin-black);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(
        135deg,
        var(--apricot) 0%,
        var(--blue-green) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon svg {
    color: var(--white);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--raisin-black);
}

.about-card p {
    color: var(--battleship-gray);
    line-height: 1.8;
}

.program {
    padding: 80px 0;
    background: var(--light-gray);
}

.program h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--raisin-black);
}

.schedule {
    display: grid;
    gap: 2rem;
}

.day {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.day-header {
    background: var(--blue-green);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.time {
    font-size: 0.875rem;
    opacity: 0.9;
}

.day-content {
    padding: 1.5rem;
}

.lesson {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.lesson:last-child {
    border-bottom: none;
}

.lesson-time {
    font-weight: 600;
    color: var(--blue-green);
}

.lesson-info h4 {
    margin-bottom: 0.5rem;
    color: var(--raisin-black);
}

.lesson-info p {
    color: var(--battleship-gray);
    font-size: 0.875rem;
}

.results {
    padding: 80px 0;
    background: var(--white);
}

.results h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--raisin-black);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.result-card {
    background: linear-gradient(
        135deg,
        var(--light-gray) 0%,
        var(--white) 100%
    );
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.result-card:hover {
    border-color: var(--blue-green);
    transform: translateY(-5px);
}

.result-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: var(--apricot);
    opacity: 0.3;
}

.result-card h3 {
    margin-bottom: 1rem;
    color: var(--raisin-black);
    position: relative;
    z-index: 1;
}

.result-card p {
    color: var(--battleship-gray);
    position: relative;
    z-index: 1;
}

.reviews {
    padding: 80px 0;
    background: var(--light-gray);
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--raisin-black);
}

.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
    min-height: 300px;
}

.review-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow);
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: var(--transition);
}

.review-card.active {
    opacity: 1;
    transform: translateX(0);
}

.review-text {
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--raisin-black);
}

.author-info p {
    font-size: 0.875rem;
    color: var(--battleship-gray);
}

.review-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.review-prev,
.review-next {
    background: var(--white);
    border: 2px solid var(--blue-green);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.25rem;
    color: var(--blue-green);
}

.review-prev:hover,
.review-next:hover {
    background: var(--blue-green);
    color: var(--white);
}

.review-dots {
    display: flex;
    gap: 0.5rem;
}

.review-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--battleship-gray);
    transition: var(--transition);
    cursor: pointer;
}

.review-dots .dot.active {
    background: var(--blue-green);
    width: 30px;
    border-radius: 5px;
}

.pricing {
    padding: 80px 0;
    background: var(--white);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--raisin-black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.price-card.featured {
    border-color: var(--blue-green);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--penn-red);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--raisin-black);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue-green);
}

.currency {
    font-size: 1.5rem;
    color: var(--battleship-gray);
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-align: left;
}

.features svg {
    color: var(--blue-green);
    flex-shrink: 0;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.guarantee svg {
    color: var(--blue-green);
    flex-shrink: 0;
}

.faq {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--raisin-black);
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--raisin-black);
}

.faq-question svg {
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--battleship-gray);
    line-height: 1.8;
}

.faq-contact {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.125rem;
}

.faq-contact a {
    color: var(--blue-green);
    text-decoration: none;
    font-weight: 600;
}

.faq-contact a:hover {
    text-decoration: underline;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        var(--blue-green) 0%,
        var(--penn-red) 100%
    );
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.spots-left {
    font-weight: 800;
    color: var(--apricot);
}

.footer {
    padding: 3rem 0;
    padding-bottom: 4rem;
    background: var(--raisin-black);
    color: var(--white);
}

.footer-content {
    text-align: center;
}

.footer-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer a {
    color: var(--apricot);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.enrollment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.enrollment-modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--battleship-gray);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--raisin-black);
}

.modal-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--raisin-black);
}

.modal-tariff {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--battleship-gray);
}

.modal-tariff span {
    font-weight: 600;
    color: var(--blue-green);
}

.modal-content .btn {
    display: block;
    width: 100%;
    margin: 1rem 0;
}

.modal-note {
    font-size: 0.875rem;
    color: var(--battleship-gray);
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content {
        gap: 2rem;
    }

    .pricing-grid {
        gap: 20px;
    }
}

@media (max-width: 820px) and (orientation: portrait) {
    .hero {
        padding: 100px 0 80px;
    }

    .navigation {
        padding: 0.5rem 0;
    }

    .nav-content {
        padding: 0.75rem 0;
    }
}

/* Safari iPad specific - measured 78px header */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 820px) and (orientation: portrait) {
        .hero {
            padding: 95px 0 80px;
        }
    }
}

/* Firefox iPad fix - measured 1150px header issue */
@-moz-document url-prefix() {
    @media (max-width: 820px) and (orientation: portrait) {
        .navigation {
            position: absolute;
            top: 0;
            max-height: 80px;
            overflow: hidden;
        }
        
        .nav-links {
            max-height: calc(100vh - 80px) !important;
        }
        
        .hero {
            padding: 90px 0 80px;
            margin-top: 0;
        }
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 2px 10px var(--shadow);
        gap: 1rem;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        width: 100%;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 110px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-features {
        align-items: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        order: -1;
    }

    .code-preview {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-grid,
    .results-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .price-card.featured {
        transform: none;
    }

    .day-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .lesson {
        flex-direction: column;
        gap: 0.5rem;
    }

    .lesson-time {
        width: auto;
    }

    .review-nav {
        padding: 1rem 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .about-me-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .about-me img {
        height: 200px;
        width: 200px;
        min-width: 0;
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .about-instructor,
    .results-benefits,
    .payment-info {
        padding: 1.25rem 0.75rem;
    }

    .instagram-sticky-panel {
        padding: 10px 0;
    }

    .instagram-sticky-panel .panel-content {
        gap: 15px;
    }

    .instagram-sticky-panel .panel-title {
        font-size: 14px;
    }

    .instagram-sticky-panel .panel-subtitle {
        font-size: 12px;
    }

    .instagram-sticky-panel .btn-instagram {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    section {
        padding: 3rem 0;
    }

    h2 {
        font-size: 1.8rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .features li {
        font-size: 0.9rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .btn {
        width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .price-info {
        text-align: center;
    }
}

@supports (-webkit-touch-callout: none) {
    .nav-links {
        height: -webkit-fill-available;
    }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    border-top-color: var(--blue-green);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.about-instructor {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 16px var(--shadow);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.about-instructor h3 {
    color: var(--blue-green);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    text-align: center;
}
.about-instructor ul {
    list-style: disc inside;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-left: 1.2em;
}
.about-instructor li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.7;
}
.key-result {
    background: var(--apricot);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
    color: var(--raisin-black);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px var(--shadow);
}

.schedule-note {
    background: var(--apricot);
    color: var(--raisin-black);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 2rem auto 0 auto;
    max-width: 400px;
    text-align: center;
    font-size: 1rem;
    box-shadow: 0 2px 8px var(--shadow);
}

.results-benefits {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem 2rem 1.5rem 2rem;
    margin: 2rem 0 0 0;
    box-shadow: 0 4px 16px var(--shadow);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.results-benefits h3 {
    color: var(--blue-green);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}
.results-benefits ul {
    list-style: disc inside;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    padding-left: 1.2em;
}
.results-benefits li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-me {
    padding: 80px 0;
    background: var(--white);
}

.about-me h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--raisin-black);
}

.about-me-content {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-me img {
    height: 100%;
    width: auto;
    min-width: 180px;
    max-width: 250px;
    border-radius: 16px;
    object-fit: cover;
}

.payment-info {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem 2rem 1.5rem 2rem;
    margin: 2.5rem 0 0 0;
    box-shadow: 0 4px 16px var(--shadow);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.payment-info h3 {
    color: var(--blue-green);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}
.payment-info ol {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    padding-left: 1.2em;
}
.payment-info li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
}


.instructor-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 0;
    list-style: none;
}
.instructor-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow);
    padding: 1.5rem 1.25rem;
    font-size: 1.1rem;
    color: var(--raisin-black);
    font-weight: 500;
    line-height: 1.7;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    border: 2px solid transparent;
}
.instructor-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 24px var(--shadow-hover);
    border-color: var(--blue-green);
}
.key-result-card {
    background: linear-gradient(135deg, var(--apricot) 0%, var(--white) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow);
    padding: 1.5rem 1.25rem;
    margin-top: 1.5rem;
    text-align: center;
    color: var(--raisin-black);
    font-weight: 700;
    font-size: 1.15rem;
    border: 2px solid var(--apricot);
}
@media (max-width: 600px) {
    .instructor-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .instructor-card,
    .key-result-card {
        padding: 1rem 0.75rem;
        font-size: 1rem;
    }
}

.cookie-consent {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    background: var(--raisin-black);
    color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 3000;
    font-size: 1rem;
    animation: cookieSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-consent p {
    margin: 0;
    color: var(--white);
    font-size: 1rem;
}
.cookie-consent .btn {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    background: var(--blue-green);
    color: var(--white);
    border: none;
    box-shadow: 0 2px 8px rgba(70, 148, 178, 0.15);
    transition:
        background 0.2s,
        transform 0.2s;
    cursor: pointer;
}
.cookie-consent .btn:hover {
    background: var(--penn-red);
    transform: translateY(-2px);
}
@media (max-width: 600px) {
    .cookie-consent {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1rem;
        font-size: 0.95rem;
        bottom: 16px;
        width: calc(100vw - 32px);
        max-width: 95vw;
    }
    .cookie-consent .btn {
        width: 100%;
        margin-top: 0.75rem;
        font-size: 1rem;
    }
}
@keyframes cookieSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Instagram Sticky Panel */
.instagram-sticky-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    padding: 12px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: block;
}

.instagram-sticky-panel .panel-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.instagram-sticky-panel .panel-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.instagram-sticky-panel .panel-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
}

.instagram-sticky-panel .panel-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.instagram-sticky-panel .btn-instagram {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.instagram-sticky-panel .btn-instagram:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    color: white;
}


@media (max-width: 480px) {
    .instagram-sticky-panel .panel-text {
        flex: 1;
    }

    .instagram-sticky-panel .panel-title {
        font-size: 13px;
    }

    .instagram-sticky-panel .btn-instagram {
        padding: 8px 12px;
        font-size: 12px;
    }
}
