/* ===================================
   REDESIGN.CSS — WebCraft Studio v2
   Layered on top of styles.css
   =================================== */

/* ===================================
   LOGO ICON
   =================================== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
    flex-shrink: 0;
}

/* ===================================
   HERO V2
   =================================== */
.hero-v2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    padding-bottom: 80px;
}

.hero-v2-bg {
    position: absolute;
    inset: 0;
    background: #080c1a;
    z-index: 0;
}

.hero-v2-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 217, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-v2-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 217, 255, 0.12);
    top: -200px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(168, 85, 247, 0.1);
    bottom: -150px;
    right: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(0, 255, 163, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 30s ease-in-out infinite;
}

.hero-v2 .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 60px;
}

.hero-v2-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 860px;
    width: 100%;
    align-items: center;
    text-align: center;
}

.hero-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 163, 0.08);
    border: 1px solid rgba(0, 255, 163, 0.25);
    color: #00FFA3;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    width: fit-content;
    letter-spacing: 0.3px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #00FFA3;
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 8px #00FFA3;
}

.hero-v2-title {
    font-family: var(--font-display);
    font-size: 82px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: -3px;
    margin: 0;
    text-align: center;
}

.hero-v2-highlight {
    background: linear-gradient(135deg, #00D9FF 0%, #A855F7 60%, #FF2E63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 6s ease infinite;
}

.hero-v2-sub {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    max-width: 620px;
    margin: 0;
    text-align: center;
}

.hero-v2-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-v2-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--gradient-primary);
    color: #080c1a;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.35);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-v2-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(0, 217, 255, 0.55);
}

.btn-v2-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: transparent;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-v2-ghost:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
}

.hero-v2-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 20px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    width: fit-content;
    backdrop-filter: blur(12px);
}

.hstat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    margin: 0 28px;
}

.hstat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.hstat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.38);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Hero Visual */
.hero-v2-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hero-img-frame img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(0, 217, 255, 0.15);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.hero-img-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 12, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.hero-img-badge svg {
    color: #00FFA3;
    flex-shrink: 0;
}

.badge-top {
    top: -18px;
    right: -20px;
}

.badge-bottom {
    bottom: -18px;
    left: -20px;
}

/* ===================================
   SECTION HEADER V2
   =================================== */
.section-header-v2 {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 80px;
}

.label-pill {
    display: inline-block;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.25);
    color: #00D9FF;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-header-v2 h2 {
    font-family: var(--font-display);
    font-size: 54px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.section-header-v2 p {
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
}

/* ===================================
   SERVICES V2
   =================================== */
.services-v2 {
    padding: 140px 0 160px;
    background: #0a0e1f;
    position: relative;
}

.services-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.svc-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 44px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.svc-card:hover {
    border-color: rgba(0, 217, 255, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 24px 70px rgba(0, 217, 255, 0.15), 0 0 0 1px rgba(0, 217, 255, 0.1);
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-featured {
    border-color: rgba(0, 217, 255, 0.25);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.06) 0%, rgba(168, 85, 247, 0.04) 100%);
}

.svc-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.svc-card:hover .svc-icon-wrap {
    background: rgba(0, 217, 255, 0.18);
    transform: scale(1.08);
}

.svc-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.svc-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 28px;
}

.svc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-list li {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    padding-left: 20px;
    position: relative;
}

.svc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #00D9FF;
    border-radius: 50%;
}

.svc-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: #080c1a;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 100px;
}

.svc-cta-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(0, 217, 255, 0.06) 100%);
    border-color: rgba(168, 85, 247, 0.25);
    text-align: center;
    align-items: center;
}

.svc-cta-card h3 {
    font-size: 24px;
}

.svc-cta-card p {
    margin-bottom: 28px;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.35);
    pointer-events: none;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.scroll-to-top:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 16px 50px rgba(0, 217, 255, 0.55);
}

.scroll-to-top svg {
    color: #080c1a;
    flex-shrink: 0;
}

/* ===================================
   PROJECTS V2
   =================================== */
.projects-v2 {
    padding: 140px 0 160px;
    background: #080c1a;
}

.projects-v2-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.proj-card {
    display: block;
    text-decoration: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.proj-card:hover {
    border-color: rgba(0, 217, 255, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 24px 70px rgba(0, 217, 255, 0.15), 0 0 0 1px rgba(0, 217, 255, 0.1);
}

/* Card 1 — large feature card, left side of row 1 */
.proj-card.proj-large:nth-child(1) {
    grid-column: 1 / 8;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.proj-card.proj-large:nth-child(1) .proj-img {
    padding-bottom: 0;
    height: 100%;
    min-height: 340px;
}

/* Card 2 — standard card, right side of row 1 top */
.proj-card:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1;
}

/* Card 3 — standard card, right side of row 1 bottom */
.proj-card:nth-child(3) {
    grid-column: 8 / 13;
    grid-row: 2;
}

/* Card 4 — standard card, left side of row 2 */
.proj-card:nth-child(4) {
    grid-column: 1 / 6;
    grid-row: 2;
}

/* Card 5 — large feature card, right side of row 2 */
.proj-card.proj-large:nth-child(5) {
    grid-column: 6 / 13;
    grid-row: 3;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.proj-card.proj-large:nth-child(5) .proj-img {
    padding-bottom: 0;
    height: 100%;
    min-height: 300px;
}

.proj-img {
    position: relative;
    padding-bottom: 60%;
    overflow: hidden;
    background: #111827;
}

.proj-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.proj-card:hover .proj-img img {
    transform: scale(1.06);
}

.proj-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 217, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
}

.proj-card:hover .proj-overlay {
    opacity: 1;
}

.proj-visit {
    background: rgba(8, 12, 26, 0.9);
    color: #00D9FF;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(0, 217, 255, 0.4);
}

.proj-info {
    padding: 36px;
}

.proj-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #00D9FF;
    margin-bottom: 10px;
}

.proj-info h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.proj-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin-bottom: 22px;
}

.proj-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.proj-tags span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 6px;
}

/* ===================================
   PROCESS V2
   =================================== */
.process-v2 {
    padding: 140px 0 160px;
    background: #0a0e1f;
}

.process-v2-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.07);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
}

.proc-item {
    background: #0a0e1f;
    padding: 52px 44px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: background 0.3s ease;
}

.proc-item:hover {
    background: rgba(0, 217, 255, 0.05);
}

.proc-num {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, #00D9FF 0%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 0 16px rgba(0, 217, 255, 0.35));
}

.proc-body h3 {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    margin-top: 10px;
}

.proc-body p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
}

/* ===================================
   TESTIMONIALS V2
   =================================== */
.testimonials-v2 {
    padding: 140px 0 160px;
    background: #080c1a;
}

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

.testi-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 44px;
    transition: all 0.35s ease;
}

.testi-card:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.1);
}

.testi-featured {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.07) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-color: rgba(0, 217, 255, 0.25);
    transform: scale(1.04);
    box-shadow: 0 16px 50px rgba(0, 217, 255, 0.1);
}

.testi-featured:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 24px 70px rgba(0, 217, 255, 0.15);
}

.testi-stars {
    color: #00FFA3;
    font-size: 18px;
    margin-bottom: 24px;
    letter-spacing: 3px;
}

.testi-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.62);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 32px;
}

.testi-author strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.testi-author span {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

/* ===================================
   ABOUT V2
   =================================== */
.about-v2 {
    padding: 140px 0 160px;
    background: #0a0e1f;
}

.about-v2-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-v2-img {
    position: relative;
}

.about-v2-img img {
    width: 100%;
    border-radius: 24px;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center 15%;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(0, 217, 255, 0.12);
}

.about-v2-img-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(8, 12, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 14px;
    padding: 14px 24px;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.about-v2-img-badge strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.about-v2-img-badge span {
    font-size: 12px;
    color: #00D9FF;
}

.about-v2-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-v2-text h2 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -2px;
    margin: 0;
}

.about-v2-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin: 0;
}

.about-v2-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 8px 0;
}

.aval {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.aval-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 255, 163, 0.1);
    border: 1px solid rgba(0, 255, 163, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00FFA3;
    flex-shrink: 0;
}

.aval h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.aval p {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   CTA V2
   =================================== */
.cta-v2 {
    padding: 140px 0;
    background: linear-gradient(135deg, #00D9FF 0%, #A855F7 50%, #FF2E63 100%);
    background-size: 300% 300%;
    animation: gradient-shift 12s ease infinite;
    position: relative;
    overflow: hidden;
}

.cta-v2-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.15);
    top: -100px;
    left: -100px;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    bottom: -80px;
    right: -80px;
}

.cta-v2-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-v2-content h2 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: #080c1a;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.cta-v2-content p {
    font-size: 18px;
    color: rgba(8, 12, 26, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-v2-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-v2-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: #080c1a;
    color: #00D9FF;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.btn-v2-dark:hover {
    background: #111827;
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.4);
}

.btn-v2-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: transparent;
    color: #080c1a;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid rgba(8, 12, 26, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-v2-outline-dark:hover {
    background: rgba(8, 12, 26, 0.08);
    border-color: rgba(8, 12, 26, 0.7);
    transform: translateY(-3px);
}

/* ===================================
   FOOTER V2
   =================================== */
.footer-v2 {
    background: #060a16;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-v2-top {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-v2-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-v2-brand p {
    font-size: 15px;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

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

.footer-v2-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-v2-social a:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    color: #00D9FF;
    transform: translateY(-3px);
}

.footer-v2-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-v2-col h4 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-v2-col a,
.footer-v2-col span {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.footer-v2-col a:hover {
    color: #00D9FF;
}

.footer-v2-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-v2-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.25);
}

/* ===================================
   HERO STAGGERED ENTRANCE
   =================================== */
.hero-entrance {
    opacity: 0;
    transform: translateY(28px);
    animation: heroEnter 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes heroEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESULTS BANNER (SCROLLING TICKER)
   =================================== */
.results-banner {
    background: linear-gradient(135deg, #00D9FF 0%, #A855F7 50%, #FF2E63 100%);
    background-size: 300% 300%;
    animation: gradient-shift 12s ease infinite;
    padding: 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.results-track {
    overflow: hidden;
    padding: 18px 0;
}

.results-inner {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
    width: max-content;
}

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

.results-banner:hover .results-inner {
    animation-play-state: paused;
}

.rb-item {
    font-size: 15px;
    font-weight: 500;
    color: rgba(8, 12, 26, 0.85);
    padding: 0 28px;
    letter-spacing: 0.2px;
}

.rb-item strong {
    font-weight: 800;
    color: #080c1a;
}

.rb-sep {
    font-size: 6px;
    color: rgba(8, 12, 26, 0.4);
    flex-shrink: 0;
}

/* ===================================
   PRICING V2
   =================================== */
.pricing-v2 {
    padding: 140px 0 160px;
    background: #080c1a;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 48px;
}

.price-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.price-card:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 24px 70px rgba(0, 217, 255, 0.12);
}

.price-featured {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.07) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-color: rgba(0, 217, 255, 0.3);
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.12);
}

.price-featured:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 32px 80px rgba(0, 217, 255, 0.2);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #080c1a;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 18px;
    border-radius: 100px;
    white-space: nowrap;
}

.price-tier {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00D9FF;
    margin-bottom: 16px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.price-currency {
    font-size: 28px;
    font-weight: 600;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0;
}

.price-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.price-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 36px;
    flex: 1;
}

.price-list li {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.price-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: #00FFA3;
    border-radius: 50%;
}

.price-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.3);
    line-height: 1.7;
}

.pricing-note a {
    color: #00D9FF;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.pricing-note a:hover {
    opacity: 0.75;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .price-featured {
        transform: none;
    }

    .price-featured:hover {
        transform: translateY(-8px);
    }


    .hero-v2 .container {
        text-align: center;
    }

    .hero-v2-content {
        align-items: center;
    }

    .hero-v2-sub {
        text-align: center;
    }

    .hero-v2-visual {
        display: none;
    }

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

    .about-v2-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-v2-img {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-v2-text {
        align-items: center;
        text-align: center;
    }

    .about-v2-values {
        text-align: left;
    }

    .footer-v2-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 1024px) {
    .proj-card.proj-large:nth-child(1) {
        grid-column: 1 / -1;
        grid-row: 1;
        grid-template-columns: 1.2fr 1fr;
    }
    .proj-card:nth-child(2) {
        grid-column: 1 / 7;
        grid-row: 2;
    }
    .proj-card:nth-child(3) {
        grid-column: 7 / 13;
        grid-row: 2;
    }
    .proj-card:nth-child(4) {
        grid-column: 1 / 7;
        grid-row: 3;
    }
    .proj-card.proj-large:nth-child(5) {
        grid-column: 7 / 13;
        grid-row: 3;
        grid-template-columns: 1fr;
    }
    .proj-card.proj-large:nth-child(5) .proj-img {
        padding-bottom: 60%;
        height: auto;
        min-height: unset;
    }
}

@media (max-width: 768px) {
    .hero-v2-title {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .section-header-v2 h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

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

    .projects-v2-grid {
        grid-template-columns: 1fr;
    }

    .proj-card.proj-large:nth-child(1),
    .proj-card.proj-large:nth-child(5) {
        grid-column: 1 / -1;
        grid-row: auto;
        grid-template-columns: 1fr;
    }

    .proj-card:nth-child(2),
    .proj-card:nth-child(3),
    .proj-card:nth-child(4) {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .proj-card.proj-large:nth-child(1) .proj-img,
    .proj-card.proj-large:nth-child(5) .proj-img {
        padding-bottom: 60%;
        height: auto;
        min-height: unset;
    }

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

    .testi-v2-grid {
        grid-template-columns: 1fr;
    }

    .testi-featured {
        transform: none;
    }

    .testi-featured:hover {
        transform: translateY(-4px);
    }

    .cta-v2-content h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .footer-v2-links {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero-v2-stats {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .about-v2-text h2 {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .hero-v2-title {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .hero-v2-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-v2-primary,
    .btn-v2-ghost {
        width: 100%;
        text-align: center;
    }

    .cta-v2-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-v2-dark,
    .btn-v2-outline-dark {
        text-align: center;
    }

    .footer-v2-links {
        grid-template-columns: 1fr;
    }
}
