@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

/* Brand Colors & Base Styles */
:root {
    --brand-dark: #4A4A4A;
    --brand-purple-light: #C8B6FF;
    --brand-purple: #9D84FF;
    --brand-bg: #FFFFFF;
    --brand-white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--brand-bg);
    color: var(--brand-dark);
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
main {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

a {
    text-decoration: none;
}

/* Gradient Text Utility */
.gradient-text {
    background: linear-gradient(90deg, var(--brand-purple-light), var(--brand-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Button styles */
.header-cta, .hero-cta {
    background: linear-gradient(90deg, #C8B6FF, #9D84FF);
    color: #fff;
    font-weight: 800;
    font-size: 1.18rem;
    padding: 0.85rem 2.5rem;
    border: none;
    border-radius: 999px;
    box-shadow: 0 4px 24px 0 rgba(157, 132, 255, 0.18), 0 0 0 4px rgba(200, 182, 255, 0.10);
    cursor: pointer;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s, background 0.18s;
    outline: none;
    position: relative;
    z-index: 2;
}
.header-cta:hover, .hero-cta:hover {
    background: linear-gradient(90deg, #9D84FF, #C8B6FF);
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 8px 32px 0 rgba(157, 132, 255, 0.25), 0 0 0 6px rgba(200, 182, 255, 0.18);
}

.header-brand-montserrat {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--brand-purple);
    position: absolute;
    top: 1.5rem;
    left: 3vw;
    letter-spacing: 0.01em;
    z-index: 10;
}

/* Recode header for true three-column layout */
.header-inner.recoded {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0;
    height: 3.2rem;
}
.header-left {
    flex: 1 1 0;
}
.header-logo-center {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 4.2rem;
    color: #4A4A4A;
    letter-spacing: 0.01em;
    z-index: 2;
    white-space: nowrap;
}
.header-cta {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    margin: 0;
    right: 0;
    top: 0;
    transform: none;
    z-index: 2;
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
    border-radius: 1.1rem;
}
/* Tighter header layout */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 8px 32px 0 rgba(200, 182, 255, 0.10);
    border-bottom: 1px solid rgba(200, 182, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: visible;
    padding: 0 1rem;
    display: block;
    height: 4.2rem;
}
@media (max-width: 1280px) {
    .header-inner.recoded {
        max-width: 96vw;
    }
}
@media (max-width: 768px) {
    .header-inner.recoded {
        height: 2.2rem;
    }
    .header-logo-center {
        font-size: 2rem;
    }
    .header {
        height: 3.2rem;
    }
}
/* Remove old centering rules */
.header-brand-montserrat.logo-text {
    position: static !important;
    left: unset !important;
    top: unset !important;
    transform: none !important;
    margin: 0 !important;
    display: none !important;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.logo-img {
    width: 110px;
    height: 110px;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(200, 182, 255, 0.15);
}
.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav-link {
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.2s;
}
.nav-link:after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-purple-light), var(--brand-purple));
    transition: width 0.3s;
    position: absolute;
    left: 0; bottom: -4px;
}
.nav-link:hover {
    color: var(--brand-purple);
}
.nav-link:hover:after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 1rem 4rem 1rem;
    background: var(--brand-bg);
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 60% 40%, var(--brand-purple-light) 0%, transparent 60%),
                radial-gradient(circle at 30% 70%, var(--brand-purple) 0%, transparent 70%);
    opacity: 0.12;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    z-index: 1;
}
.hero-desc {
    max-width: 38rem;
    margin: 0 auto 2.5rem auto;
    font-size: 1.3rem;
    color: var(--brand-dark);
    background: rgba(200, 182, 255, 0.13);
    border-radius: 1rem;
    padding: 1.2rem 2rem;
    z-index: 1;
}
.hero-cta {
    background: linear-gradient(90deg, var(--brand-purple-light), var(--brand-purple));
    color: var(--brand-dark);
    padding: 1rem 2.5rem;
    border-radius: 1.5rem;
    font-size: 1.2rem;
    margin-top: 1rem;
    z-index: 1;
}
.hero-cta:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 30px -3px rgba(157, 132, 255, 0.18);
}
.hero-blob {
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 60% 40%, var(--brand-purple-light) 0%, var(--brand-purple) 100%);
    opacity: 0.18;
    filter: blur(40px);
    border-radius: 50%;
    z-index: 0;
}
.hero-icons-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}
.hero-icon {
    position: absolute;
    opacity: 0.35;
    filter: blur(0.5px);
    animation: hero-icon-fall 4s linear infinite;
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    max-width: 90px;
    max-height: 90px;
}
.hero-icon-tiktok {
    left: 12%; top: -48px;
    animation-delay: 0s;
    animation-duration: 4.5s;
}
.hero-icon-insta {
    left: 38%; top: -60px;
    animation-delay: 1s;
    animation-duration: 5.5s;
}
.hero-icon-snap {
    left: 65%; top: -40px;
    animation-delay: 0.5s;
    animation-duration: 5s;
}
.hero-icon-fb {
    left: 80%; top: -70px;
    animation-delay: 1.5s;
    animation-duration: 6s;
}
.hero-icon-yt {
    left: 52%;
    top: -55px;
    animation-delay: 1.2s;
    animation-duration: 5.8s;
}
@keyframes hero-icon-fall {
    0%   { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.35; }
    80%  { opacity: 0.35; transform: translateY(80vh) scale(1.1) rotate(10deg);}
    92%  { opacity: 0.35; }
    100% { transform: translateY(90vh) scale(1.5) rotate(20deg); opacity: 0; }
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2.5rem;
    padding: 5rem 1rem;
    background: var(--brand-bg);
    justify-content: center;
    align-content: center;
    place-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .features {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 2rem;
    }
}
.feature-card {
    background: rgba(200, 182, 255, 0.08);
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(200, 182, 255, 0.10);
    padding: 2.5rem 2rem;
    max-width: 340px;
    min-width: 260px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(200, 182, 255, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 40px 0 rgba(157, 132, 255, 0.18);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.feature-desc {
    color: var(--brand-dark);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    background: var(--brand-bg);
    padding: 5rem 1rem;
}
.portfolio-title {
    font-size: 2.3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.portfolio-card {
    background: var(--brand-white);
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(200, 182, 255, 0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(200, 182, 255, 0.3);
}
.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px 0 rgba(157, 132, 255, 0.18);
}
.portfolio-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.portfolio-content {
    padding: 1.5rem;
}
.portfolio-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.portfolio-role {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--brand-purple);
}
.portfolio-desc {
    font-size: 1.05rem;
    color: var(--brand-dark);
    line-height: 1.6;
}

/* Book a Call Section */
.book-call-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--brand-purple-light) 0%, var(--brand-purple) 100%);
}
.book-call-inner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--brand-white);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    padding: 3rem 2rem;
    text-align: center;
}
.book-call-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.book-call-desc {
    font-size: 1.1rem;
    color: var(--brand-dark);
    font-weight: 500;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.calendly-inline-widget {
    border-radius: 0.75rem;
    overflow: hidden;
    min-width: 320px;
    height: 700px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--brand-dark);
    color: var(--brand-white);
    font-size: 1rem;
}
.footer-socials {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.footer-socials a {
    color: var(--brand-white);
    font-size: 1.5rem;
    transition: color 0.2s, transform 0.2s;
}
.footer-socials a:hover {
    color: var(--brand-purple-light);
    transform: scale(1.1);
}

/* Fade-in Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 1280px) {
    .header-inner.recoded {
        max-width: 96vw;
    }
}
@media (max-width: 768px) {
    .header-inner.recoded {
        height: 2.2rem;
    }
    .header-logo-center {
        font-size: 2rem;
    }
    .header {
        height: 3.2rem;
    }
    .nav {
        display: none; /* Hiding nav links on mobile for simplicity, can be replaced with a hamburger menu */
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-desc {
        font-size: 1.1rem;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .header {
        padding-right: 1rem;
    }
    .header-cta {
        margin-right: 0;
    }
} 

.onfle-grey {
    color: #4A4A4A;
}
.x-gradient {
    background: linear-gradient(135deg, #9D84FF 60%, #C8B6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
} 

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    color: #4A4A4A;
    letter-spacing: 0.01em;
    display: inline-block;
}
.o-spot {
    position: relative;
    display: inline-block;
}
.o-dot {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0.28em;
    height: 0.28em;
    border-radius: 50%;
    background: linear-gradient(135deg, #9D84FF 0%, #C8B6FF 100%);
    z-index: 2;
}
.flex-part {
    background: linear-gradient(90deg, #9D84FF, #C8B6FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
} 

.header-cta-top {
    margin-left: auto;
    margin-right: 0;
    align-self: center;
    height: 2.7rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    padding: 0 2.2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(157, 132, 255, 0.18), 0 0 0 4px rgba(200, 182, 255, 0.10);
}
@media (max-width: 768px) {
    .header-cta-top {
        font-size: 1rem;
        height: 2rem;
        padding: 0 1.2rem;
    }
} 

.onflex-logo-main {
    display: block;
}
.header-logo-sub {
    display: block;
    font-size: 0.92rem;
    color: #888;
    font-weight: 500;
    margin-top: -0.18em;
    letter-spacing: 0.04em;
    text-align: center;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
} 

.packages {
    background: var(--brand-bg);
    padding: 5rem 1rem 2rem 1rem;
    text-align: center;
}
.packages-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 3rem;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .package-card {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}
.package-card {
    background: rgba(200, 182, 255, 0.08);
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(200, 182, 255, 0.10);
    padding: 2.5rem 2rem;
    max-width: 320px;
    min-width: 240px;
    text-align: center;
    border: 1px solid rgba(200, 182, 255, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.package-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 40px 0 rgba(157, 132, 255, 0.18);
}
.package-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
}
.package-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-purple);
    margin-bottom: 1rem;
}
.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--brand-dark);
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: left;
}
.package-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.2em;
    position: relative;
}
.package-features li:before {
    content: '•';
    color: var(--brand-purple);
    position: absolute;
    left: 0;
} 

/* --- INTERACTIVE PACKAGES SECTION --- */
.packages-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 5rem 1rem 2rem 1rem;
    position: relative;
    z-index: 1;
}
.packages-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1;
    background: radial-gradient(circle at 60% 40%, var(--brand-purple-light) 0%, transparent 60%),
                radial-gradient(circle at 30% 70%, var(--brand-purple) 0%, transparent 70%),
                rgba(249, 250, 251, 0.97);
    opacity: 0.7;
    pointer-events: none;
}
.packages-section > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.2rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}
.pricing-buttons {
    display: flex;
    justify-content: center;
    background-color: #E5E7EB;
    border-radius: 1rem;
    padding: 0.5rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}
.package-button {
    background-color: transparent;
    border: none;
    padding: 1rem 2rem;
    border-radius: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}
.package-button.active {
    background-color: var(--brand-white);
    color: var(--brand-purple);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.details-panel {
    background-color: var(--brand-white);
    border-radius: 1.5rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    min-height: 500px;
    max-width: 1200px;
    margin: 0 auto;
}
.details-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    padding: 2.5rem 3rem 3rem 3rem;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s;
}
@media (max-width: 1200px) {
    .details-panel {
        max-width: 98vw;
    }
    .details-content {
        padding: 2rem 1.2rem;
    }
}
.details-content.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.details-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.2rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    justify-content: flex-start;
    flex-direction: row;
}
.details-title-text {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    width: auto;
}
.details-underline {
    width: 100%;
    height: 5px;
    border-radius: 3px;
    margin: 0.1em 0 0 0;
    background: linear-gradient(90deg, var(--brand-purple-light), var(--brand-purple));
    display: block;
}
.details-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-purple);
    margin-bottom: 1.5rem;
}
.details-description {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 2rem;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem 1.2rem;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.97rem;
    line-height: 1.4;
    word-break: break-word;
}
@media (max-width: 900px) {
    .feature-list {
        grid-template-columns: 1fr;
    }
}
.feature-list .icon {
    color: var(--brand-purple);
    font-weight: bold;
}
.card-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    background-color: var(--brand-purple);
    color: var(--brand-white);
    margin-top: 1.5rem;
}
.card-button:hover {
    background-color: #8A6DF2;
}
@media (max-width: 820px) {
    .pricing-buttons {
        flex-direction: column;
        max-width: 320px;
    }
    .details-panel {
        padding: 0;
        min-height: 520px;
    }
    .details-content {
        padding: 2rem 1rem;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
} 

@media (min-width: 901px) {
  .details-content#engine .feature-list {
    font-size: 0.92rem;
    line-height: 1.3;
    grid-template-columns: repeat(3, 1fr);
  }
} 

.details-guarantee b {
  color: var(--brand-purple);
} 

.details-annual, .details-save {
  color: var(--brand-purple);
  font-weight: 700;
  font-size: 1.5rem;
} 

@media (max-width: 600px) {
  .header-inner.recoded {
    flex-direction: column;
    height: auto;
    padding: 0.5rem 0.5rem 0 0.5rem;
  }
  .header-logo-center {
    font-size: 1.3rem;
    position: static;
    transform: none;
    left: unset;
    top: unset;
    white-space: normal;
    text-align: center;
    margin: 0.2rem 0;
  }
  .header-logo-sub {
    font-size: 0.7rem;
  }
  .header-cta-top {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    height: 1.8rem;
    margin: 0.5rem auto 0 auto;
  }
  .header {
    height: auto;
    padding: 0.5rem 0.5rem;
  }

  .hero {
    padding: 4rem 0.5rem 2rem 0.5rem;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-desc {
    font-size: 0.95rem;
    padding: 0.7rem 0.7rem;
  }
  .hero-cta {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
  .hero-bg, .hero-blob, .hero-icons-bg {
    display: none !important;
  }

  .features {
    grid-template-columns: 1fr;
    padding: 2rem 0.5rem;
    gap: 1.2rem;
  }
  .feature-card {
    padding: 1.2rem 0.7rem;
    min-width: 0;
    max-width: 100%;
  }
  .feature-title {
    font-size: 1rem;
  }
  .feature-desc {
    font-size: 0.92rem;
  }

  .packages-section {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .details-panel {
    min-height: unset;
    max-width: 100vw;
    border-radius: 1rem;
  }
  .details-content {
    position: static;
    width: 100%;
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    border-radius: 1rem;
    box-sizing: border-box;
  }
  .details-title {
    font-size: 1.1rem;
    gap: 0.2rem;
  }
  .details-price {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .details-description {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .feature-list {
    grid-template-columns: 1fr !important;
    gap: 0.5rem 0;
  }
  .feature-list li {
    font-size: 0.92rem;
    line-height: 1.3;
    padding: 0.2rem 0;
  }
  .card-button {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    margin-top: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .portfolio {
    padding: 2rem 0.5rem;
  }
  .portfolio-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .portfolio-card {
    padding: 0.5rem;
    min-width: 0;
    max-width: 100%;
  }
  .portfolio-img {
    height: 160px;
  }
  .portfolio-content {
    padding: 0.7rem;
  }
  .portfolio-name {
    font-size: 1rem;
  }
  .portfolio-role {
    font-size: 0.9rem;
  }
  .portfolio-desc {
    font-size: 0.92rem;
  }

  .book-call-section {
    padding: 2rem 0.5rem;
  }
  .book-call-inner {
    padding: 1.2rem 0.5rem;
    border-radius: 1rem;
  }
  .book-call-title {
    font-size: 1.2rem;
  }
  .book-call-desc {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .calendly-inline-widget {
    min-width: 0;
    height: 400px;
  }

  .footer {
    padding: 1.2rem 0.5rem;
    font-size: 0.92rem;
  }
  .footer-socials {
    gap: 0.7rem;
    margin-bottom: 0.5rem;
  }
  .footer-socials a {
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {
  .header-logo-center {
    font-size: 1rem;
  }
  .details-title {
    font-size: 0.95rem;
  }
  .details-price {
    font-size: 0.95rem;
  }
  .card-button {
    font-size: 0.95rem;
    padding: 0.5rem 0.7rem;
  }
  .portfolio-img {
    height: 110px;
  }
} 

@media (max-width: 600px) {
  .package-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 1rem 0.5rem;
    box-sizing: border-box;
  }
} 

.brand-purple-dark {
  color: var(--brand-purple);
  font-weight: 700;
} 