.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

:root {
    --bg: #0a0a0f;
    --bg-2: #111118;
    --bg-3: #18181f;
    --surface: rgba(255, 255, 255, .04);
    --surface-hover: rgba(255, 255, 255, .08);
    --border: rgba(255, 255, 255, .08);
    --border-hover: rgba(255, 255, 255, .15);
    --text: #e8e8ed;
    --text-muted: #8b8b9e;
    --text-dim: #55556a;
    --accent: #c89116;
    --accent-2: #d5af5d;
    --accent-3: #00cec9;
    --gradient: linear-gradient(135deg, #c89116, #d5af5d, #00cec9);
    --gradient-subtle: linear-gradient(135deg, rgba(108, 92, 231, .15), rgba(0, 206, 201, .08));
    --glass-bg: rgba(255, 255, 255, .03);
    --glass-border: rgba(255, 255, 255, .06);
    --shadow: 0 8px 32px rgba(0, 0, 0, .4);
    --shadow-lg: 0 24px 80px rgba(0, 0, 0, .5);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Syne', 'Inter', sans-serif;
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1)
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: default
}

::selection {
    background: var(--accent);
    color: #fff
}

a {
    color: var(--accent-2);
    text-decoration: none;
    transition: color var(--transition)
}

a:hover {
    color: var(--accent-3)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent-2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s, background .2s;
    mix-blend-mode: difference
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--accent-2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width .25s var(--ease-spring), height .25s var(--ease-spring), border-color .2s;
    opacity: .5
}

.cursor-hover .cursor-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-3)
}

.cursor-hover .cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--accent-3);
    opacity: .3
}

@media (max-width:1024px) {

    .cursor-dot,
    .cursor-ring {
        display: none !important
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient);
    z-index: 100000;
    transition: none
}

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s var(--ease-out), visibility .6s
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.loader-inner {
    text-align: center
}

.loader-line {
    width: 120px;
    height: 2px;
    background: var(--bg-3);
    border-radius: 2px;
    margin: 0 auto 16px;
    overflow: hidden;
    position: relative
}

.loader-line::after {
    content: '';
    position: absolute;
    left: -60%;
    top: 0;
    width: 60%;
    height: 100%;
    background: var(--gradient);
    animation: loaderSlide 1.2s ease-in-out infinite
}

@keyframes loaderSlide {
    0% {
        left: -60%
    }

    100% {
        left: 100%
    }
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted)
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px 0;
    transition: background .4s, backdrop-filter .4s, padding .3s
}

.site-header.scrolled {
    background: rgba(10, 10, 15, .8);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    padding: 10px 0;
    border-bottom: 1px solid var(--border)
}

.header-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -1px
}

.brand-accent {
    color: var(--accent)
}

.nav-menu ul {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-menu .nav-link {
    position: relative;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
    letter-spacing: .3px
}

.nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--ease-out)
}

.nav-menu .nav-link.active,
.nav-menu .nav-link:hover {
    color: var(--text)
}

.nav-menu .nav-link.active::after,
.nav-menu .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    letter-spacing: .5px;
    transition: background var(--transition), transform .3s var(--ease-spring), box-shadow var(--transition);
    cursor: pointer;
    text-decoration: none
}

.btn-cta:hover {
    background: var(--accent-2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, .35)
}

.btn-cta i {
    font-size: 16px;
    transition: transform .3s var(--ease-spring)
}

.btn-cta:hover i {
    transform: translateX(4px)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: 0 0;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid var(--border-hover);
    letter-spacing: .5px;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-2);
    background: rgba(108, 92, 231, .08)
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all .3s var(--ease-out);
    border-radius: 2px
}

.mobile-nav-toggle.active .hamburger-line:first-child {
    transform: rotate(45deg) translate(5px, 5px)
}

.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0
}

.mobile-nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, .96);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .5s var(--ease-out)
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible
}

.mobile-nav-inner ul {
    list-style: none;
    text-align: center
}

.mobile-nav-inner ul li {
    margin-bottom: 16px
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-muted);
    transition: color .3s
}

.mobile-link:hover {
    color: var(--text)
}

.mobile-social {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px
}

.mobile-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 18px;
    transition: all .3s
}

.mobile-social a:hover {
    border-color: var(--accent);
    color: var(--accent-2)
}

@media (max-width:1024px) {

    .header-actions .btn-cta,
    .nav-menu {
        display: none
    }

    .mobile-nav-toggle {
        display: flex
    }
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color var(--transition), transform .4s var(--ease-spring), box-shadow var(--transition)
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow)
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px
}

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0
}

.hero-grid {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center
}

.hero-content {
    position: relative
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-2);
    margin-bottom: 32px
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-3);
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.5)
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--text)
}

.line-wrap {
    display: block;
    overflow: hidden
}

.line {
    display: inline-block
}

.accent-line {
    color: var(--accent-2)
}

.accent-dot {
    color: var(--accent-3)
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 20px
}

.typed-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 36px
}

.typed-label {
    color: var(--text-dim);
    font-weight: 500
}

.typed {
    color: var(--accent-2);
    font-weight: 600
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center
}

.hero-card {
    position: relative;
    padding: 24px;
    text-align: center;
    width: 280px;
    overflow: hidden
}

.hero-card-glow {
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(108, 92, 231, .15), transparent 70%);
    animation: glowRotate 8s linear infinite;
    pointer-events: none
}

@keyframes glowRotate {
    100% {
        transform: rotate(360deg)
    }
}

.hero-photo {
    width: 150px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid var(--border);
    position: relative;
    z-index: 1
}

.hero-card-info {
    position: relative;
    z-index: 1
}

.hero-card-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px
}

.hero-card-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px
}

.hero-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap
}

.hero-tags span {
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--accent-2);
    letter-spacing: .5px;
    text-transform: uppercase
}

.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap
}

.float-badge i {
    font-size: 16px;
    color: var(--accent-3)
}

.float-badge-1 {
    top: 10%;
    right: -10%
}

.float-badge-2 {
    bottom: 30%;
    left: -15%
}

.float-badge-3 {
    bottom: 5%;
    right: 0
}

.floating {
    animation: float 6s ease-in-out infinite
}

.floating-delayed {
    animation: float 6s ease-in-out 1s infinite
}

.floating-delayed-2 {
    animation: float 6s ease-in-out 2s infinite
}

.floating-delayed-3 {
    animation: float 6s ease-in-out 3s infinite
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--border-hover);
    position: relative;
    overflow: hidden
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollAnim 2s ease-in-out infinite
}

@keyframes scrollAnim {
    0% {
        top: -100%
    }

    100% {
        top: 100%
    }
}

.scroll-indicator span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim)
}

.section {
    padding: 120px 0;
    position: relative
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-2)
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--accent)
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--text)
}

.section-subtext {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 48px
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.about-grid {
    display: grid;
    grid-template-columns: .4fr .6fr;
    gap: 80px;
    align-items: start
}

.about-image {
    position: relative
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden
}

.image-frame img {
    width: 100%;
    display: block
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg), transparent 60%)
}

.experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.exp-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.2
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 15px
}

.about-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius)
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.detail-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim)
}

.detail-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--text)
}

.impact-section {
    background: var(--bg-2)
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px
}

.impact-card {
    padding: 40px 24px;
    text-align: center;
    transition: transform .4s var(--ease-spring), border-color var(--transition)
}

.impact-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent)
}

.impact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: 14px;
    font-size: 24px;
    color: var(--accent-2)
}

.impact-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px
}

.impact-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px
}

.resume-embed {
    margin-top: 32px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border)
}

.resume-iframe {
    width: 100%;
    height: 85vh;
    border: none;
    background: var(--bg-2)
}

.portfolio-section {
    background: var(--bg-2)
}

.portfolio-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap
}

.filter-btn {
    padding: 8px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition)
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff
}

.portfolio-gallery {
    columns: 3;
    column-gap: 16px
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    break-inside: avoid;
    margin-bottom: 16px;
    cursor: pointer
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform .6s var(--ease-out)
}

.gallery-item:hover img {
    transform: scale(1.07)
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 10, .92) 50%, rgba(5, 5, 10, .2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity .4s ease
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-info h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.gallery-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 10px;
    line-height: 1.5
}

.gallery-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 12px
}

.gallery-tags span {
    padding: 2px 9px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    color: rgba(255, 255, 255, .85);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.gallery-actions {
    display: flex;
    gap: 8px
}

.gallery-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all .3s;
    text-decoration: none
}

.gallery-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: scale(1.1)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px
}

.service-card {
    padding: 36px;
    transition: transform .5s var(--ease-spring), border-color var(--transition)
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent)
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--accent-2);
    transition: background .4s
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: #fff
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6
}

.service-tech {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase
}

.tech-marquee {
    overflow: hidden;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee 25s linear infinite;
    white-space: nowrap
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dim);
    flex-shrink: 0
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.packages-section {
    background: var(--bg)
}

.packages-sub {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 560px;
    margin-bottom: 56px;
    line-height: 1.7
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start
}

.pkg-card {
    position: relative;
    padding: 36px 32px 32px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform .45s var(--ease-spring), border-color var(--transition), box-shadow .45s
}

.pkg-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg)
}

.pkg-featured {
    border-color: var(--accent) !important;
    background: linear-gradient(145deg, rgba(108, 92, 231, .12), rgba(162, 155, 254, .06)) !important;
    box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg)
}

.pkg-featured:hover {
    box-shadow: 0 0 0 1px var(--accent), 0 32px 80px rgba(108, 92, 231, .25)
}

.pkg-badge {
    display: inline-block;
    padding: 3px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    margin-bottom: 28px;
    width: fit-content
}

.pkg-badge-featured {
    background: rgba(108, 92, 231, .2);
    border-color: var(--accent);
    color: var(--accent-2)
}

.pkg-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border: 1px solid rgba(108, 92, 231, .2);
    border-radius: var(--radius);
    font-size: 22px;
    color: var(--accent-2);
    margin-bottom: 20px
}

.pkg-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text)
}

.pkg-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px
}

.price-from {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.pkg-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border)
}

.pkg-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 32px;
    flex-grow: 1
}

.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5
}

.pkg-features li i {
    color: var(--accent-3);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px
}

.pkg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition);
    text-decoration: none;
    margin-top: auto
}

.pkg-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108, 92, 231, .35)
}

.pkg-btn-featured {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff
}

.pkg-btn-featured:hover {
    background: var(--accent-2);
    border-color: var(--accent-2);
    box-shadow: 0 8px 32px rgba(162, 155, 254, .4)
}

.pkg-btn-wa {
    background: rgba(37, 211, 102, .1);
    border-color: rgba(37, 211, 102, .35);
    color: #25d366;
    margin-top: 10px;
    gap: 8px
}

.pkg-btn-wa:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
    transform: translateY(-2px)
}

.packages-note {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap
}

.packages-note i {
    color: var(--accent-3);
    font-size: 16px
}

.packages-note strong {
    color: var(--text)
}

.packages-note a {
    color: var(--accent-2)
}

.testimonials-section {
    background: var(--bg-2)
}

.testimonial-card {
    padding: 36px;
    height: 100%;
    display: flex;
    flex-direction: column
}

.testimonial-quote {
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 32px
}

.testimonial-stars {
    color: #f5c518;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 16px
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 24px;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border)
}

.initials-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, .15)
}

.testimonial-author h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-dim)
}

.testimonials-slider .swiper-pagination {
    margin-top: 32px
}

.testimonials-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--text-dim);
    opacity: 1;
    transition: all .3s
}

.testimonials-slider .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.2
}

.contact-text {
    color: var(--text-muted);
    margin-bottom: 32px
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px
}

.contact-item i {
    font-size: 20px;
    color: var(--accent-2);
    min-width: 24px
}

.contact-item-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 2px
}

.contact-item a,
.contact-item span {
    font-size: 14px;
    color: var(--text)
}

.contact-item a:hover {
    color: var(--accent-2)
}

.contact-social {
    display: flex;
    gap: 12px
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 18px;
    transition: all .3s
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent-2);
    transform: translateY(-3px)
}

.map-wrapper {
    overflow: hidden;
    height: 400px
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(.6) brightness(.85);
    transition: filter .5s
}

.map-wrapper:hover iframe {
    filter: grayscale(0) brightness(1)
}

.site-footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border);
    background: var(--bg)
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 13px;
    margin-top: 8px;
    max-width: 260px
}

.footer-links {
    display: flex;
    gap: 24px
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color .3s
}

.footer-links a:hover {
    color: var(--text)
}

.footer-social {
    display: flex;
    gap: 12px
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-dim);
    font-size: 16px;
    transition: all .3s
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent-2)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border)
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-dim)
}

.footer-bottom span {
    font-size: 12px;
    color: var(--text-dim)
}

.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 12px 20px 12px 14px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-body);
    text-decoration: none;
    z-index: 9991;
    box-shadow: 0 6px 28px rgba(37, 211, 102, .45);
    transition: all .35s var(--ease-spring);
    white-space: nowrap;
    overflow: hidden;
    max-width: 54px
}

.whatsapp-float:hover {
    max-width: 220px;
    background: #20ba5a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(37, 211, 102, .55)
}

.wa-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0
}

.wa-label {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .25s .05s ease, transform .25s .05s ease;
    pointer-events: none;
    letter-spacing: .3px
}

.whatsapp-float:hover .wa-label {
    opacity: 1;
    transform: translateX(0)
}

.wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: #25d366;
    animation: waPulse 2.4s ease-out infinite;
    z-index: -1
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: .6
    }

    70% {
        transform: scale(1.55);
        opacity: 0
    }

    100% {
        transform: scale(1.55);
        opacity: 0
    }
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all .4s var(--ease-spring);
    box-shadow: 0 4px 20px rgba(108, 92, 231, .4)
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.back-to-top:hover {
    background: var(--accent-2);
    color: #fff;
    transform: translateY(-3px)
}

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out)
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0)
}

.section+.section {
    border-top: 1px solid var(--border)
}

@media (max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto
    }

    .hero-cta {
        justify-content: center
    }

    .hero-visual {
        order: -1
    }

    .float-badge-1 {
        top: 0;
        right: 0
    }

    .float-badge-2 {
        bottom: 40%;
        left: 0
    }

    .float-badge-3 {
        bottom: 0;
        right: 10%
    }

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

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

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

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

    .contact-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:768px) {
    .section {
        padding: 80px 0
    }

    .hero-section {
        padding: 100px 0 60px
    }

    .hero-title {
        letter-spacing: -1px
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .packages-grid {
        grid-template-columns: 1fr
    }

    .portfolio-gallery {
        columns: 2
    }

    .about-details {
        grid-template-columns: 1fr
    }

    .footer-grid {
        flex-direction: column
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }
}

@media (max-width:480px) {
    .impact-grid {
        grid-template-columns: 1fr
    }

    .portfolio-gallery {
        columns: 1
    }

    .hero-grid {
        padding: 0 16px
    }

    .container {
        padding: 0 16px
    }
}