:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-gradient-hover: linear-gradient(135deg, #5a6fd6 0%, #6a4190 100%);
    --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-dark: #0f0f1a;
    --text-medium: #3a3a5c;
    --text-light: #6b6b8a;
    --text-muted: #9999b3;
    --bg-dark: #0a0a14;
    --bg-light: #f5f7ff;
    --bg-lighter: #fafbff;
    --bg-white: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --border-light: rgba(102, 126, 234, 0.1);
    --border-medium: rgba(102, 126, 234, 0.2);
    --shadow-soft: 0 4px 24px rgba(102, 126, 234, 0.12);
    --shadow-medium: 0 8px 32px rgba(102, 126, 234, 0.18);
    --shadow-hover: 0 16px 48px rgba(102, 126, 234, 0.25);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.4);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --portfolio-gap: 36px;
    --font-title: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}
@media (prefers-reduced-motion: no-preference) {
    body:not(.loaded) * {
        animation-play-state: paused !important;
    }
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.2;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
}
.skip-link {
    position: absolute;
    top: -50px;
    left: 16px;
    z-index: 9999;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--bg-white);
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-medium);
}
.skip-link:focus {
    top: 16px;
    outline: 3px solid rgba(102, 126, 234, 0.35);
    outline-offset: 2px;
}
.page {
    position: relative;
    z-index: 1;
}
.page-hero {
    padding: 120px 0 42px;
}
.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
}
.page-subtitle {
    margin-top: 12px;
    max-width: 78ch;
    color: var(--text-medium);
}
.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-card);
}
.card-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.muted {
    color: var(--text-muted);
}
.mini-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.12);
    border: 1px solid rgba(102, 126, 234, 0.18);
    margin-bottom: 10px;
    font-weight: 700;
}
.cta-inline {
    margin-top: 18px;
    padding: 18px;
    border-radius: var(--border-radius-lg);
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.cta-inline-title {
    margin: 0;
    font-size: 1.05rem;
}
.cta-inline-text {
    margin-top: 6px;
    color: var(--text-medium);
}
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.chip {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(102, 126, 234, 0.10);
    border: 1px solid rgba(102, 126, 234, 0.18);
    color: var(--text-medium);
    font-weight: 600;
    font-size: 0.92rem;
}
.team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.team-card {
    text-align: center;
}
.avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    background: var(--primary-gradient);
    box-shadow: var(--shadow-soft);
}
.bmc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.bmc-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-card);
}
.bmc-title {
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.bmc-list {
    list-style: disc;
    padding-left: 18px;
    color: var(--text-medium);
}
.before-after {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}
.before-after-col {
    display: grid;
    gap: 10px;
}
.before-after-label {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.95rem;
}
.before-after-box {
    height: 180px;
    border-radius: var(--border-radius-lg);
    border: 1px dashed rgba(102, 126, 234, 0.35);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.5)),
        repeating-linear-gradient(45deg, rgba(102, 126, 234, 0.08) 0 10px, rgba(118, 75, 162, 0.08) 10px 20px);
}
.before-after-box.after {
    border-style: solid;
    background:
        linear-gradient(135deg, rgba(102, 126, 234, 0.10), rgba(118, 75, 162, 0.10)),
        radial-gradient(circle at 30% 20%, rgba(240, 147, 251, 0.22), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(102, 126, 234, 0.18), transparent 60%);
}
@media (max-width: 640px) {
    .before-after { grid-template-columns: 1fr; }
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.pricing-card {
    position: relative;
}
.pricing-card.featured {
    border: 1px solid rgba(102, 126, 234, 0.35);
    box-shadow: var(--shadow-medium);
}
.price {
    margin: 10px 0 14px;
    font-weight: 800;
    font-size: 1.35rem;
}
.price-amount {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.price-currency {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1rem;
}
.check-list {
    display: grid;
    gap: 10px;
    margin: 14px 0;
    color: var(--text-medium);
}
.check-list li {
    position: relative;
    padding-left: 26px;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 900;
}
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bmc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .page-hero { padding: 104px 0 34px; }
    .cards-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .bmc-grid { grid-template-columns: 1fr; }
    .cta-inline { flex-direction: column; align-items: flex-start; }
}
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.bg-shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.2));
    top: -200px;
    right: -200px;
    animation: floatShape 20s ease-in-out infinite;
}
.bg-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(245, 87, 108, 0.1));
    bottom: 20%;
    left: -100px;
    animation: floatShape 25s ease-in-out infinite reverse;
}
.bg-shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.15), rgba(56, 239, 125, 0.1));
    top: 50%;
    right: 10%;
    animation: floatShape 18s ease-in-out infinite;
}
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}
.cursor-glow.visible {
    opacity: 1;
}
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}
.btn:hover::before {
    left: 100%;
}
.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
.btn-glow {
    box-shadow: var(--shadow-soft), 0 0 20px rgba(102, 126, 234, 0.3);
}
.btn-glow:hover {
    box-shadow: var(--shadow-hover), var(--shadow-glow);
}
.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--border-medium);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}
.btn-white {
    background: white;
    color: var(--primary-color);
}
.btn-white:hover {
    background: var(--bg-lighter);
    transform: translateY(-3px);
}
.btn-large {
    padding: 20px 40px;
    font-size: 17px;
    border-radius: var(--border-radius-lg);
}
.btn-full {
    width: 100%;
}
.btn-icon {
    gap: 12px;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0);
    transition: var(--transition);
}
.navbar.scrolled::before {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
}
.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-soft);
}
.logo-img {
    width: 68px;
    height: 44px;
    object-fit: cover;
    border-radius: 8px;
    display: inline-block;
    background: transparent;
}
.logo-img-navbar {
    box-shadow: none;
    background: transparent;
}
.logo-img-footer {
    box-shadow: none;
    background: transparent;
}
.logo-studio {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}
.logo-text {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}
.logo-accent {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
    padding: 8px 0;
    cursor: pointer;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}
.nav-link:hover {
    color: var(--primary-color);
    box-shadow: none !important;
    background: transparent !important;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-cta {
    padding: 12px 24px;
    font-size: 14px;
}
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 100;
}
.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite;
}
@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-text {
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 28px;
    box-shadow: var(--shadow-soft);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success-gradient);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}
.hero-title {
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.title-line {
    display: block;
}
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 16px;
    min-height: 30px;
}
.typing-cursor {
    animation: blink 1s infinite;
    color: var(--primary-color);
    font-weight: 300;
}
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 32px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.stat-number {
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-plus, .stat-percent {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-medium);
}
.hero-visual {
    position: relative;
    z-index: 1;
}
.hero-illustration {
    position: relative;
    width: 100%;
    height: 500px;
}
.browser-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    border: 1px solid var(--border-light);
}
.browser-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: var(--bg-lighter);
    border-bottom: 1px solid var(--border-light);
}
.browser-dots {
    display: flex;
    gap: 8px;
}
.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }
.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-light);
}
.browser-url svg {
    color: #28ca42;
}
.browser-content {
    padding: 24px;
}
.browser-nav {
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--border-light) 0%, var(--border-light) 20%, transparent 20%, transparent 25%, var(--border-light) 25%, var(--border-light) 40%, transparent 40%, transparent 45%, var(--border-light) 45%, var(--border-light) 55%, transparent 55%);
    border-radius: 5px;
    margin-bottom: 24px;
}
.browser-hero {
    margin-bottom: 24px;
}
.browser-text {
    height: 16px;
    background: var(--primary-gradient);
    border-radius: 8px;
    margin-bottom: 10px;
    opacity: 0.8;
}
.browser-text.short {
    width: 60%;
    opacity: 0.5;
}
.browser-cards {
    display: flex;
    gap: 12px;
}
.browser-card {
    flex: 1;
    height: 60px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}
.floating-element {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
    animation: float 6s ease-in-out infinite;
}
.floating-element svg {
    color: var(--primary-color);
}
.float-1 {
    width: 56px;
    height: 56px;
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}
.float-2 {
    width: 56px;
    height: 56px;
    bottom: 20%;
    right: 10%;
    animation-delay: -1s;
}
.float-3 {
    width: 56px;
    height: 56px;
    top: 30%;
    left: 5%;
    animation-delay: -2s;
}
.float-4 {
    top: 5%;
    left: 20%;
    animation-delay: -3s;
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
}
.float-5 {
    bottom: 30%;
    left: 0%;
    animation-delay: -4s;
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
}
.float-6 {
    bottom: 10%;
    right: 25%;
    animation-delay: -5s;
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
}
.tech-badge {
    padding: 8px 16px;
    background: var(--primary-gradient);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 13px;
    animation: bounce 2s infinite;
}
.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--border-medium);
    border-radius: 20px;
    position: relative;
}
.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}
@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
.section {
    padding: 120px 0;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.section-title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--text-dark);
    margin-bottom: 16px;
}
.section-title.left {
    text-align: left;
}
.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}
.section-text {
    font-size: 17px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}
.section-text.left {
    text-align: left;
    margin: 0;
}
.problem {
    background: var(--bg-white);
}
.problem-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.problem-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.problem-chart {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    height: 250px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
}
.chart-bar {
    width: 100px;
    background: var(--border-light);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    position: relative;
    transition: height 1s ease-out;
    height: 0;
}
.chart-bar.highlight {
    background: var(--primary-gradient);
}
.chart-bar.animated {
    height: var(--bar-height);
}
.bar-label {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-medium);
    white-space: nowrap;
}
.chart-caption {
    margin-top: 50px;
    font-size: 14px;
    color: var(--text-light);
}
.problem-stats {
    display: flex;
    gap: 24px;
    margin: 28px 0;
}
.problem-stat {
    flex: 1;
    padding: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.05));
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}
.problem-stat-number {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}
.problem-stat-text {
    font-size: 14px;
    color: var(--text-light);
}
.about {
    background: var(--bg-light);
}
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.about-feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}
.feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}
.about-feature span {
    font-weight: 500;
    color: var(--text-dark);
}
.about-visual {
    display: flex;
    justify-content: center;
}
.about-card {
    padding: 60px 50px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-xl);
    text-align: center;
    color: white;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.about-card-icon {
    margin-bottom: 24px;
    opacity: 0.9;
}
.about-card h3 {
    font-size: 28px;
    margin-bottom: 8px;
}
.about-card p {
    opacity: 0.9;
    font-size: 16px;
}
.services {
    background: var(--bg-white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.service-card {
    position: relative;
    padding: 44px;
    background: var(--bg-lighter);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    overflow: hidden;
}
.service-card-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-medium);
}
.service-card:hover .service-card-glow {
    opacity: 1;
}
.service-card.featured {
    background: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}
.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: var(--accent-gradient);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
}
.service-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: white;
    box-shadow: var(--shadow-soft);
}
.service-title {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.service-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
}
.service-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}
.service-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--text-medium);
}
.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}
.service-link:hover {
    gap: 12px;
}
.why-us {
    background: var(--bg-light);
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.advantage-card {
    position: relative;
    padding: 44px 36px;
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    overflow: hidden;
}
.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.advantage-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-title);
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.04));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.advantage-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    box-shadow: var(--shadow-soft);
}
.advantage-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.advantage-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}
.process {
    background: var(--bg-white);
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.timeline-line {
    position: absolute;
    top: 90px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    z-index: 0;
}
.process-step {
    position: relative;
    z-index: 1;
}
.step-connector {
    position: absolute;
    top: 78px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--primary-gradient);
    border-radius: 50%;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-soft);
    z-index: 2;
}
.step-card {
    padding: 32px 24px;
    background: var(--bg-lighter);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    margin-top: 50px;
}
.step-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}
.step-number {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 800;
    background: var(--primary-gradient);
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}
.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
}
.step-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.step-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}
.testimonials {
    background: var(--bg-light);
}
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.testimonial-card {
    display: none;
    animation: fadeIn 0.5s ease;
}
.testimonial-card.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.testimonial-content {
    padding: 48px;
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-medium);
    text-align: center;
    position: relative;
}
.quote-icon {
    color: var(--border-medium);
    margin-bottom: 24px;
}
.testimonial-text {
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 32px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}
.author-info h4 {
    font-size: 17px;
    color: var(--text-dark);
}
.author-info p {
    font-size: 14px;
    color: var(--text-light);
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}
.dot {
    width: 12px;
    height: 12px;
    background: var(--border-medium);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background: var(--primary-gradient);
    transform: scale(1.2);
}
.dot:hover {
    background: var(--primary-color);
}
.cta-banner {
    background: var(--primary-gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}
.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}
.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
}
.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-title {
    font-size: clamp(28px, 4vw, 44px);
    color: white;
    margin-bottom: 16px;
}
.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
}
.contact {
    background: var(--bg-lighter);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}
.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--border-light);
}
.contact-card:hover .contact-arrow {
    transform: translateX(5px);
    opacity: 1;
}
.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}
.contact-details {
    flex: 1;
}
.contact-details h4 {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.contact-details p {
    font-size: 15px;
    color: var(--text-medium);
}
.contact-arrow {
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}
.contact-social {
    margin-top: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}
.contact-social p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}
.social-links-contact {
    display: flex;
    gap: 12px;
}
.social-link-contact {
    width: 44px;
    height: 44px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    transition: var(--transition);
}
.social-link-contact:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}
.contact-form {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--bg-lighter);
    color: var(--text-dark);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group textarea {
    resize: vertical;
    min-height: 140px;
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b6b8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
}
.error-message {
    display: block;
    font-size: 13px;
    color: #e74c3c;
    margin-top: 6px;
    min-height: 18px;
}
.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}
.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--success-gradient);
    color: white;
    border-radius: var(--border-radius);
    margin-top: 24px;
    font-weight: 500;
}
.form-success.show {
    display: flex;
    animation: slideUp 0.5s ease;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.footer {
    background: var(--bg-dark);
    padding: 80px 0 40px;
    color: white;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo {
    margin-bottom: 16px;
}
.footer-brand .logo-text {
    color: white;
}
.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}
.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-column li,
.footer-column a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}
.footer-column a:hover {
    color: white;
    transform: translateX(5px);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
}
.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}
.social-link:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-4px);
}
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--border-radius);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    .hero-illustration {
        height: 400px;
    }
    .problem-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .problem-visual {
        order: -1;
    }
    .problem-text {
        text-align: center;
    }
    .section-title.left,
    .section-text.left {
        text-align: center;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-text {
        text-align: center;
    }
    .about-features {
        align-items: center;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .timeline-line {
        display: none;
    }
    .step-connector {
        display: none;
    }
    .step-card {
        margin-top: 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        padding: 32px;
        gap: 32px;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
    }
    .nav-link {
        font-size: 24px;
    }
    .nav-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .section {
        padding: 80px 0;
    }
    .hero {
        padding: 120px 0 80px;
    }
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        padding: 32px;
    }
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    .hero-illustration {
        height: 350px;
    }
    .browser-mockup {
        width: 300px;
    }
    .process-timeline {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 300px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 32px 24px;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .problem-stats {
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero {
        padding: 100px 0 60px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-description {
        font-size: 15px;
    }
    .hero-illustration {
        height: 250px;
    }
    .browser-mockup {
        width: 240px;
    }
    .floating-element {
        display: none;
    }
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 26px;
    }
    .section-subtitle {
        font-size: 15px;
    }
    .section-text {
        font-size: 15px;
    }
    .service-card {
        padding: 28px 20px;
    }
    .service-title {
        font-size: 20px;
    }
    .service-description {
        font-size: 14px;
    }
    .advantage-card {
        padding: 28px 20px;
    }
    .advantage-title {
        font-size: 18px;
    }
    .advantage-text {
        font-size: 14px;
    }
    .advantage-number {
        font-size: 48px;
    }
    .step-card {
        padding: 24px 16px;
    }
    .step-title {
        font-size: 16px;
    }
    .testimonial-content {
        padding: 28px 20px;
    }
    .testimonial-text {
        font-size: 16px;
    }
    .cta-banner {
        padding: 60px 0;
    }
    .cta-title {
        font-size: 24px;
    }
    .cta-subtitle {
        font-size: 15px;
    }
    .contact-form {
        padding: 24px 16px;
    }
    .contact-card {
        padding: 16px 20px;
    }
    .hero-stats {
        padding: 20px;
    }
    .stat-number {
        font-size: 28px;
    }
    .stat-label {
        font-size: 11px;
    }
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    .btn-large {
        padding: 16px 28px;
        font-size: 15px;
    }
    .footer {
        padding: 60px 0 30px;
    }
    .footer-top {
        padding-bottom: 40px;
    }
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
    }
    .scroll-indicator {
        display: none;
    }
}
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-stats {
        padding: 16px;
        gap: 16px;
    }
    .stat-number {
        font-size: 24px;
    }
    .browser-mockup {
        width: 220px;
    }
    .section-title {
        font-size: 24px;
    }
    .service-card,
    .advantage-card {
        padding: 24px 16px;
    }
    .problem-stat {
        padding: 16px;
    }
    .problem-stat-number {
        font-size: 26px;
    }
    .about-card {
        padding: 40px 24px;
    }
    .contact-form {
        padding: 20px 14px;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 16px;
        font-size: 14px;
    }
    .testimonial-text {
        font-size: 15px;
    }
    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
}
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.cursor-dot {
    position: fixed;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9) 0%, rgba(102,126,234,0.95) 40%, rgba(102,126,234,0.9) 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease, width 0.18s, height 0.18s, box-shadow 0.18s;
    box-shadow: 0 8px 22px rgba(102, 126, 234, 0.12), inset 0 1px 0 rgba(255,255,255,0.25);
    backdrop-filter: blur(2px);
}
.cursor-outline {
    position: fixed;
    width: 64px;
    height: 64px;
    background: rgba(102,126,234,0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    filter: blur(6px);
    transition: transform 0.18s ease-out, width 0.18s, height 0.18s, opacity 0.18s;
    opacity: 0.95;
}
.cursor-dot.hover,
.cursor-outline.hover {
    transform: translate(-50%, -50%) scale(1.25);
    box-shadow: 0 14px 36px rgba(102,126,234,0.16), inset 0 1px 0 rgba(255,255,255,0.35);
}
@media (max-width: 1024px) {
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}
.show-theme {
    background: #fafbff;
    cursor: auto;
}
.show-theme * {
    cursor: auto;
}
@media (max-width: 1024px) {
    .show-theme,
    .show-theme * {
        cursor: auto;
    }
}
.cursor-dot,
.custom-cursor {
    display: none !important;
}
.cursor-outline {
    display: block !important;
    width: 28px;
    height: 28px;
    background: rgba(102,126,234,0.12);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease-out, width 0.18s, height 0.18s, opacity 0.12s;
    box-shadow: 0 6px 20px rgba(102,126,234,0.08);
    backdrop-filter: blur(2px);
    will-change: transform;
}
.cursor-outline.hover {
    transform: translate(-50%, -50%) scale(1.25);
    background: rgba(102,126,234,0.16);
    box-shadow: 0 10px 28px rgba(102,126,234,0.12);
}
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}
.hero-show {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
}
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(102, 126, 234, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 100% 50%, rgba(118, 75, 162, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 0% 80%, rgba(240, 147, 251, 0.06) 0%, transparent 50%);
    z-index: 0;
}
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    z-index: 0;
}
.hero-show-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    z-index: 1;
    transform: translateY(-36px);
    transition: transform 0.25s ease;
}
.hero-show-text {
    max-width: 600px;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 12px;
    background: rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}
.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-show-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}
.hero-show-title .title-word {
    display: inline-block;
    margin-right: 0.25em;
}
.hero-show-title .title-word.highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-show-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-show-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-show {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}
.btn-show-primary {
    background: var(--text-dark);
    color: white;
}
.btn-show-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.25);
}
.btn-show-primary svg {
    transition: transform 0.3s ease;
}
.btn-show-primary:hover svg {
    transform: translate(3px, -3px);
}
.btn-show-ghost {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border-medium);
}
.btn-show-ghost:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.btn-show-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--text-dark);
}
.btn-show-outline:hover {
    background: var(--text-dark);
    color: white;
}
.btn-show-white {
    background: white;
    color: var(--text-dark);
}
.btn-show-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.btn-show-ghost-light {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-show-ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}
.hero-show-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-card-stack {
    position: relative;
    width: 340px;
    height: 420px;
}
.hero-card {
    position: absolute;
    width: 280px;
    height: 180px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-card-1 {
    top: 20px;
    left: -50px;
    z-index: 3;
    transform: rotate(-6deg);
}
.hero-card-2 {
    top: 130px;
    left: 220px;
    z-index: 2;
    transform: rotate(4deg);
}
.hero-card-3 {
    top: 260px;
    left: 20px;
    z-index: 1;
    transform: rotate(-2deg);
}
.hero-card-stack:hover .hero-card-1 {
    transform: rotate(-8deg) translateY(-10px);
}
.hero-card-stack:hover .hero-card-2 {
    transform: rotate(7deg) translateX(10px);
}
.hero-card-stack:hover .hero-card-3 {
    transform: rotate(-8deg) translateY(10px) translateX(-15px);
}
.hero-card-label {
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
}
.hero-card-preview {
    height: calc(100% - 45px);
    background: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%),
        repeating-linear-gradient(0deg, var(--border-light) 0px, var(--border-light) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(90deg, var(--border-light) 0px, var(--border-light) 1px, transparent 1px, transparent 20px);
    position: relative;
    padding: 14px;
}
.hero-card-body {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    color: var(--text-dark);
}
.hero-card-body h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}
.hero-card-body p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.hero-card-link {
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}
.hero-card-link:hover {
    text-decoration: underline;
}
.scroll-cue {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.scroll-cue span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}
.marquee-section {
    padding: 24px 0;
    background: var(--text-dark);
    overflow: hidden;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll var(--marquee-duration, 20s) linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.marquee-content span {
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}
.marquee-dot {
    font-size: 8px;
    color: var(--primary-color);
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * var(--marquee-shift, 0px))); }
}
@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}
.section-show {
    padding: 80px 0;
    position: relative;
}
.section-dark {
    background: var(--text-dark);
}
.section-show-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    margin-bottom: 16px;
}
.section-label svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    vertical-align: middle;
    stroke: currentColor;
    stroke-width: 1.5;
    display: inline-block;
}
.section-dark .section-label {
    color: var(--accent-color);
}
.section-show-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}
.section-dark .section-show-title {
    color: white;
}
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}
.section-title-show {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}
.section-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-cta {
    text-align: center;
    margin-top: 56px;
}
.about-page {
    position: relative;
    overflow-x: clip;
}
.about-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    pointer-events: none;
    z-index: 0;
}
.about-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    filter: blur(80px);
}
.about-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: 50px;
    right: 5%;
    animation: aboutFloat1 20s ease-in-out infinite;
}
.about-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
    top: 100px;
    left: 5%;
    animation: aboutFloat2 15s ease-in-out infinite;
}
.about-shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #00d4ff 100%);
    top: 200px;
    left: 40%;
    animation: aboutFloat3 12s ease-in-out infinite;
}
@keyframes aboutFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 15px); }
}
@keyframes aboutFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -15px); }
}
@keyframes aboutFloat3 {
    0%, 100% { transform: translate(0, 0); opacity: 0.12; }
    50% { transform: translate(-15px, 10px); opacity: 0.08; }
}
.about-stats-section {
    position: relative;
}
.about-stat-card {
    position: relative;
    overflow: hidden;
}
.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.6s ease;
}
.about-stat-card:hover::before {
    left: 100%;
}
.about-stat-icon {
    position: relative;
    transition: transform 0.3s ease;
}
.about-stat-card:hover .about-stat-icon {
    transform: scale(1.1) rotate(5deg);
}
.about-stat-number {
    position: relative;
    display: inline-block;
}
.about-process-section {
    position: relative;
}
.about-process-wrapper {
    position: relative;
}
.about-process-line {
    position: absolute;
    top: 60px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    border-radius: 3px;
    z-index: 0;
    opacity: 0.3;
}
.about-process-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
    animation: processLineMove 3s ease-in-out infinite;
}
@keyframes processLineMove {
    0%, 100% { left: 0; }
    50% { left: 70%; }
}
.about-process-card {
    position: relative;
    z-index: 1;
}
.about-process-step {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-process-card:hover .about-process-step {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}
.about-mission-card {
    position: relative;
    overflow: hidden;
}
.about-mission-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.about-mission-card:hover::after {
    transform: scaleX(1);
}
.about-mission-icon {
    transition: transform 0.4s ease, background 0.3s ease;
}
.about-mission-card:hover .about-mission-icon {
    transform: translateY(-5px) rotate(5deg);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}
.about-value-number {
    position: relative;
    transition: transform 0.3s ease;
}
.about-value-card:hover .about-value-number {
    transform: scale(1.05);
}
.about-feature-icon {
    transition: transform 0.3s ease, background 0.3s ease;
}
.about-feature-card:hover .about-feature-icon {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.about-stat-card {
    background: #fff;
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.about-stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}
.about-stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.about-stat-icon svg {
    color: #667eea;
}
.about-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.about-stat-label {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 500;
}
.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.about-mission-card {
    background: #fff;
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.about-mission-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}
.about-mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.about-mission-icon svg {
    color: #667eea;
}
.about-mission-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.about-mission-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.about-value-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #fff;
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.about-value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}
.about-value-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}
.about-value-content h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.about-value-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}
.about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.about-process-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}
.about-process-step {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.about-process-step span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.about-process-content {
    flex: 1;
}
.about-process-content h3 {
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.about-process-content p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.about-process-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.about-process-icon svg {
    color: #667eea;
}
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.about-feature-card {
    background: #fff;
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.about-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}
.about-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.about-feature-icon svg {
    color: #667eea;
}
.about-feature-card h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.about-feature-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.section-alt {
    background: var(--bg-lighter);
}
.section-show .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-show .section-title {
    color: var(--text-dark);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}
.section-show .section-desc {
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-mission-grid {
        grid-template-columns: 1fr;
    }
    .about-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-process-line {
        display: none;
    }
    .about-shape-1 {
        width: 300px;
        height: 300px;
    }
    .about-shape-2 {
        width: 200px;
        height: 200px;
    }
    .about-shape-3 {
        display: none;
    }
}
@media (max-width: 768px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    .about-process-grid {
        grid-template-columns: 1fr;
    }
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    .about-value-card {
        padding: 25px;
    }
    .about-hero-shapes {
        opacity: 0.5;
    }
}
@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    .about-stat-card {
        padding: 25px 20px;
    }
    .about-value-card {
        flex-direction: column;
        text-align: center;
    }
    .about-value-number {
        margin: 0 auto;
    }
    .about-hero-shapes {
        display: none;
    }
}
.team-page {
    position: relative;
    overflow-x: clip;
    background: #fafbfc;
}
.team-page-light {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.team-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    overflow: hidden;
}
.team-hero-light {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.team-hero-light .team-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.team-hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.team-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.team-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.2) 100%);
    top: -200px;
    right: -100px;
    animation: floatShape 20s ease-in-out infinite;
}
.team-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25) 0%, rgba(249, 158, 11, 0.15) 100%);
    bottom: -150px;
    left: -100px;
    animation: floatShape 25s ease-in-out infinite reverse;
}
.team-shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(102, 126, 234, 0.15) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatShape 18s ease-in-out infinite;
}
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}
.team-hero-light .team-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.team-hero-light .team-hero-label {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    color: #667eea;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.team-hero-light .team-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    color: #1e293b;
    margin: 0 0 24px;
}
.team-hero-light .team-hero-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.team-hero-light .team-hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 32px;
}
.team-hero-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: -12px;
    margin-top: 32px;
}
.hero-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    margin-left: -12px;
}
.hero-avatar:first-child {
    margin-left: 0;
}
.hero-avatar:hover {
    transform: translateY(-8px) scale(1.15);
    z-index: 10;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: float-scroll 3s ease-in-out infinite;
    cursor: pointer;
    z-index: 10;
}
.scroll-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.scroll-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    transition: all 0.3s ease;
}
.scroll-indicator:hover .scroll-icon {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(4px);
}
@keyframes float-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}
.team-section {
    padding: 100px 0 120px;
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}
.team-bg-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.team-particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.3;
    animation: floatParticle 25s ease-in-out infinite;
    will-change: transform;
}
.team-particle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.1) 100%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}
.team-particle-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(249, 158, 11, 0.1) 100%);
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}
.team-particle-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(102, 126, 234, 0.1) 100%);
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
}
.team-particle-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
    bottom: 10%;
    right: 5%;
    animation-delay: 7s;
}
@keyframes floatParticle {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(20px, -30px, 0); }
}
.team-members-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.team-member-card {
    position: relative;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s ease var(--delay),
                transform 0.4s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
    will-change: transform, opacity;
    contain: layout style;
}
.team-member-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.team-member-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    border-color: var(--member-color);
}
.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--member-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.team-member-card:hover::before {
    transform: scaleX(1);
}
.member-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--member-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease 0.05s;
}
.team-member-card:hover .member-card-accent {
    transform: scaleX(1);
}
.member-card-content {
    display: flex;
    flex-direction: row;
    gap: 0;
    height: 100%;
}
.team-member-card:nth-child(even) .member-card-content {
    flex-direction: row-reverse;
}
.member-photo-section {
    position: relative;
    padding: 10px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transition: background 0.4s ease;
    flex-shrink: 0;
    width: 280px;
}
.team-member-card:hover .member-photo-section {
    background: var(--member-gradient);
}
.member-photo-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    transition: transform 0.4s ease;
    will-change: transform;
}
.team-member-card:hover .member-photo-wrapper {
    transform: scale(1.08) translateY(-6px);
}
.member-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border: 5px solid white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.team-member-card:hover .member-photo {
    border-color: white;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.member-photo-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.team-member-card:hover .member-photo-ring {
    opacity: 1;
}
.member-info-section {
    padding: 30px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.member-header {
    margin-bottom: 20px;
}
.member-name {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.2;
}
.member-firstname {
    color: var(--member-color);
}
.member-lastname {
    color: #1e293b;
}
.member-role {
    display: inline-block;
    padding: 6px 14px;
    background: color-mix(in srgb, var(--member-color) 10%, white);
    color: var(--member-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid color-mix(in srgb, var(--member-color) 20%, transparent);
    transition: all 0.3s ease;
}
.team-member-card:hover .member-role {
    background: color-mix(in srgb, var(--member-color) 15%, white);
    border-color: var(--member-color);
}
.member-quote {
    position: relative;
    margin: 0 0 18px;
    padding: 16px 20px;
    border: none;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 3px solid var(--member-color);
}
.member-quote .quote-icon {
    position: absolute;
    top: 12px;
    left: 12px;
    color: var(--member-color);
    opacity: 0.15;
}
.member-quote p {
    font-size: 0.95rem;
    font-style: italic;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    padding-left: 32px;
}
.member-skills {
    margin-bottom: 5px;
}
.skills-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 12px;
}
.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.skill-tag {
    padding: 8px 14px;
    background: #f1f5f9;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    transition: all 0.25s ease;
    border: 1px solid #e2e8f0;
    cursor: default;
}
.team-member-card:hover .skill-tag {
    background: white;
    color: var(--member-color);
    border-color: color-mix(in srgb, var(--member-color) 30%, transparent);
}
.team-values {
    padding: 80px 0 100px;
    background: #f8fafc;
}
.team-values-header {
    text-align: center;
    margin-bottom: 60px;
}
.team-values-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 12px;
}
.team-values-header p {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
}
.team-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.team-value-card {
    text-align: center;
    padding: 40px 28px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.team-value-card:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.25);
}
.team-value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}
.team-value-card:hover .team-value-icon {
    background: white;
    color: #667eea;
}
.team-value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px;
    transition: color 0.3s ease;
}
.team-value-card:hover h3 {
    color: white;
}
.team-value-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}
.team-value-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}
.team-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.team-cta-light {
    background: white;
    border-top: 1px solid #e2e8f0;
}
.team-cta-light .team-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.team-cta-light .team-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 16px;
}
.team-cta-light .team-cta-content p {
    font-size: 1.15rem;
    color: #64748b;
    margin: 0 0 40px;
    line-height: 1.7;
}
.team-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.team-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.team-cta-light .team-cta-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
}
.team-cta-light .team-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.45);
}
.team-cta-light .team-cta-secondary {
    background: #f1f5f9;
    color: #475569;
    border: none;
}
.team-cta-light .team-cta-secondary:hover {
    background: #e2e8f0;
    color: #1e293b;
}
@media (max-width: 1024px) {
    .team-members-list {
        gap: 36px;
    }
    .team-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .member-photo-section {
        width: 280px;
        padding: 40px;
    }
    .member-photo-wrapper {
        width: 140px;
        height: 140px;
    }
    .member-info-section {
        padding: 32px 36px;
    }
    .member-name {
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .team-hero {
        min-height: 100vh;
    }
    .team-hero-light .team-hero-title {
        font-size: 2.2rem;
    }
    .scroll-indicator {
        bottom: 30px;
    }
    .team-members-list {
        gap: 32px;
    }
    .member-card-content,
    .team-member-card:nth-child(even) .member-card-content {
        flex-direction: column;
    }
    .member-photo-section {
        width: 100%;
        padding: 40px 32px 32px;
    }
    .team-hero-light .team-hero-subtitle {
        font-size: 1.05rem;
    }
    .team-section {
        padding: 60px 0 80px;
    }
    .team-members-list {
        gap: 32px;
    }
    .member-photo-section {
        padding: 40px 32px 32px;
    }
    .member-photo-wrapper {
        width: 140px;
        height: 140px;
    }
    .member-info-section {
        padding: 28px;
    }
    .member-name {
        font-size: 1.35rem;
    }
    .member-quote p {
        font-size: 0.9rem;
        padding-left: 28px;
    }
    .team-values {
        padding: 60px 0 80px;
    }    .team-values-header h2 {
        font-size: 2rem;
    }
    .team-values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .team-value-card {
        padding: 28px 20px;
    }
    .team-value-icon {
        width: 52px;
        height: 52px;
    }
    .team-value-card h3 {
        font-size: 1.1rem;
    }
    .team-cta {
        padding: 60px 0;
    }
    .team-cta-light .team-cta-content h2 {
        font-size: 1.8rem;
    }
    .team-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .team-hero-light .team-hero-title {
        font-size: 2rem;
    }
    .member-photo-section {
        padding: 28px;
    }
    .member-photo-wrapper {
        width: 120px;
        height: 120px;
    }
    .member-info-section {
        padding: 0 24px 28px;
    }
    .member-name {
        font-size: 1.35rem;
    }
    .skill-tag {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    .team-values-grid {
        grid-template-columns: 1fr;
    }
}
.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.service-showcase-card {
    display: grid;
    grid-template-columns: 80px 1fr auto 60px;
    gap: 32px;
    align-items: center;
    padding: 32px 40px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.service-showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.service-showcase-card:hover::before {
    opacity: 1;
}
.service-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}
.service-showcase-card > * {
    position: relative;
    z-index: 1;
}
.service-showcase-card:hover .service-showcase-number,
.service-showcase-card:hover .service-showcase-content h3,
.service-showcase-card:hover .service-showcase-content p,
.service-showcase-card:hover .service-showcase-icon {
    color: white;
}
.service-showcase-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgb(102 126 234 / 50%);
    transition: color 0.4s ease;
}
.service-showcase-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    transition: color 0.4s ease;
}
.service-showcase-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    transition: color 0.4s ease;
}
.service-showcase-icon {
    color: var(--primary-color);
    transition: color 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
.service-showcase-icon svg {
    display: block;
    width: 36px;
    height: 36px;
}
.service-showcase-icon svg {
    transform: translateY(1px);
    transition: transform 0.18s ease;
}
.service-showcase-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--text-dark);
    transition: all 0.3s ease;
}
.service-showcase-card:hover .service-showcase-link {
    background: white;
    color: var(--primary-color);
}
.service-showcase-link:hover {
    transform: scale(1.1);
}
.stats-show {
    padding: 80px 0;
    background: white;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.stats-show-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.stat-show-item {
    text-align: center;
}
.stat-show-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}
.stat-show-plus,
.stat-show-percent {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}
.stat-show-label {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}
.stat-show-divider {
    width: 1px;
    height: 60px;
    background: var(--border-light);
}
.work-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 24px;
    grid-auto-rows: 1fr;
    align-items: stretch;
}
.work-preview-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    min-height: 0; 
}
.work-preview-card:hover {
    transform: translateY(-8px);
}
.work-preview-large {
    grid-row: span 1;
}
.work-preview-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    flex: 1 1 auto;
    min-height: 0;
}
.work-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.work-preview-large .work-preview-image {
    aspect-ratio: 4/3;
    height: auto;
}
.work-preview-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%),
        radial-gradient(circle at 30% 20%, rgba(240, 147, 251, 0.15) 0%, transparent 50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}
.work-preview-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 65px 24px 24px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92), transparent);
}
.work-preview-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgb(0 0 0 / 60%);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 8px;
}
.work-preview-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}
.work-preview-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}
.process-show-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.process-show-step {
    padding: 32px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}
.process-show-step:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.12);
}
.process-show-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}
.process-show-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.process-show-content p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}
.testimonial-show {
    background: var(--bg-light);
}
.testimonial-show-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: visible;
}
.testimonial-show-quote {
    position: absolute;
    top: 30px;
    left: 40px;
    color: var(--primary-color);
    z-index: 2;
}
.testimonial-show-quote svg,
.testimonial-show-quote .quote-svg {
    overflow: visible;
    display: block;
    width: 64px;
    height: 64px;
}
.quote-mark {
    display: inline-block;
    font-size: 64px;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.15;
    transform: translateY(-6px);
    font-family: Georgia, 'Times New Roman', Times, serif;
    pointer-events: none;
}
.testimonial-show-text {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 32px;
}
.testimonial-show-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.testimonial-show-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-show-info {
    text-align: left;
}
.testimonial-show-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}
.testimonial-show-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.cta-show {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.cta-show-bg {
    position: absolute;
    inset: 0;
    background: var(--primary-gradient);
}
.cta-show-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}
.cta-show-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-show-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-show-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
}
.cta-show-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-show-section {
    padding: 80px 0;
}
.cta-show-banner {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 24px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-show-banner .cta-show-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}
.cta-show-banner .cta-show-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}
.cta-show-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .cta-show-banner {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }
    .cta-show-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-show-buttons .btn-show,
    .cta-show-buttons .btn-show-outline {
        width: 100%;
        justify-content: center;
    }
}
.footer-show {
    background: var(--text-dark);
    padding: 80px 0 40px;
    color: white;
}
.footer-show-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-show-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 280px;
    line-height: 1.6;
}
.footer-show-brand .logo-text {
    color: white;
}
.footer-show-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-show-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}
.footer-show-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-show-col a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}
.footer-show-col a:hover {
    color: white;
}
.footer-show-col li:not(:has(a)) {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}
.footer-show-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-show-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}
.btn-track-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}
.btn-track-order:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}
.btn-track-order svg {
    opacity: 0.8;
}
.btn-track-order:hover svg {
    opacity: 1;
}
.footer-show-social {
    display: flex;
    gap: 16px;
}
.footer-show-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}
.footer-show-social a:hover {
    background: var(--primary-color);
    color: white;
}
.footer-show-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}
.footer-show-brand .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}
.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}
.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
}
.footer-show-links h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.footer-show-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-show-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.footer-show-links a:hover {
    color: #fff;
}
.footer-show-contact h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.footer-show-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-show-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
.footer-show-contact i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}
@media (max-width: 1024px) {
    .footer-show-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .footer-show-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-show-contact li {
        justify-content: center;
    }
}
.back-to-top-show {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}
.back-to-top-show.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top-show:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}
@media (max-width: 1024px) {
    .hero-show-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        transform: translateY(-18px);
    }
    .hero-show-text {
        max-width: 100%;
    }
    .hero-show-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-show-actions {
        justify-content: center;
    }
    .hero-show-visual {
        order: -1;
    }
    .service-showcase-card {
        grid-template-columns: 60px 1fr 48px;
        gap: 20px;
        padding: 24px;
    }
    .service-showcase-icon {
        display: none;
    }
    .work-preview-grid {
        grid-template-columns: 1fr 1fr;
    }
    .work-preview-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .process-show-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-show-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}
@media (max-width: 768px) {
    .section-show {
        padding: 60px 0;
    }
    .hero-show {
        padding: 120px 0 60px;
    }
    .hero-card-stack {
        width: 280px;
        height: 340px;
    }
    .hero-card {
        width: 220px;
        height: 140px;
    }
    .hero-card-2 {
        top: 80px;
        left: 30px;
    }
    .hero-card-3 {
        top: 160px;
    }
    .stats-show-grid {
        gap: 40px;
    }
    .stat-show-divider {
        display: none;
    }
    .stat-show-number {
        font-size: 2.5rem;
    }
    .work-preview-grid {
        grid-template-columns: 1fr;
    }
    .work-preview-large {
        grid-column: span 1;
    }
    .process-show-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-show-wrapper {
        padding: 40px 24px;
    }
    .testimonial-show-text {
        font-size: 1.15rem;
    }
    .footer-show-links {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-show-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .hero-tag {
        font-size: 11px;
        padding: 6px 14px 6px 10px;
    }
    .hero-show-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-show {
        width: 100%;
        justify-content: center;
    }
    .hero-card-stack {
        width: 240px;
        height: 280px;
    }
    .hero-card {
        width: 180px;
        height: 110px;
    }
    .hero-card-2 {
        top: 60px;
        left: 25px;
    }
    .hero-card-3 {
        top: 120px;
        left: 5px;
    }
    .service-showcase-card {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
    .service-showcase-number {
        font-size: 1.8rem;
    }
    .service-showcase-link {
        margin: 0 auto;
    }
    .footer-show-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.page-hero-show {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(102, 126, 234, 0.08) 0%, #00000000 60%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgb(118 75 162 / 0%) 0%, transparent 50%);
    z-index: 0;
}
.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.page-hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.page-hero-desc {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 540px;
}
.service-full-block {
    margin-bottom: 80px;
}
.service-full-block:last-child {
    margin-bottom: 0;
}
.service-full-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}
.service-full-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.service-full-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.service-full-subtitle {
    font-size: 1rem;
    color: var(--text-medium);
}
.service-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-full-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.service-full-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.12);
}
.service-full-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}
.service-full-card:hover .service-full-icon {
    background: var(--primary-gradient);
    color: white;
}
.service-full-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.service-full-card > p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 16px;
}
.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    flex-grow: 1;
}
.service-features li {
    font-size: 0.85rem;
    color: var(--text-medium);
    padding-left: 20px;
    position: relative;
}
.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
}
.service-full-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: auto;
    transition: color 0.3s ease;
}
.service-full-cta:hover {
    color: var(--primary-color);
}
.service-full-cta svg {
    transition: transform 0.3s ease;
}
.service-full-cta:hover svg {
    transform: translate(3px, -3px);
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-us-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.why-us-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}
.why-us-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: white;
}
.why-us-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}
.why-us-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}
@media (max-width: 1024px) {
    .service-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .page-hero-show {
        padding: 140px 0 60px;
    }
    .service-full-header {
        flex-direction: column;
        gap: 16px;
    }
    .service-full-number {
        font-size: 3rem;
    }
    .service-full-grid {
        grid-template-columns: 1fr;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .page-hero-show {
        padding: 120px 0 40px;
    }
    .service-full-card {
        padding: 24px 20px;
    }
}
.portfolio-filter {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.filter-btn {
    padding: 10px 24px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.filter-btn.active {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: white;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--portfolio-gap);
    grid-auto-rows: minmax(180px, 1fr);
    grid-auto-flow: dense;
}
.portfolio-item.placeholder .portfolio-overlay {
    opacity: 1;
}
.portfolio-item.placeholder .portfolio-title {
    color: var(--text-dark);
}
.portfolio-item.placeholder .portfolio-desc {
    color: var(--text-medium);
}
@media (min-width: 1025px) {
    .portfolio-grid.layout-web,
    .portfolio-grid.layout-landing,
    .portfolio-grid.layout-design,
    .portfolio-grid.layout-ecommerce,
    .portfolio-grid.layout-tous {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        aspect-ratio: 1.3 / 1;
    }
     .portfolio-grid.layout-web .portfolio-item.pos-1 { grid-column: 1 / 3; grid-row: 2 / 4; }
     .portfolio-grid.layout-web .portfolio-item.pos-2 { grid-column: 1 / 2; grid-row: 1 / 2; }
     .portfolio-grid.layout-web .portfolio-item.pos-3 { grid-column: 2 / 3; grid-row: 1 / 2; }
     .portfolio-grid.layout-web .portfolio-item.pos-4 { grid-column: 3 / 4; grid-row: 1 / 2; }
     .portfolio-grid.layout-web .portfolio-item.pos-5 { grid-column: 3 / 4; grid-row: 2 / 3; }
     .portfolio-grid.layout-web .portfolio-item.pos-6 { grid-column: 3 / 4; grid-row: 3 / 4; }
    .portfolio-grid.layout-landing .portfolio-item.pos-1 { grid-column: 1 / -1; grid-row: 1 / 2; }
    .portfolio-grid.layout-landing .portfolio-item.pos-2 { grid-column: 1 / 3;  grid-row: 2 / 4; }
    .portfolio-grid.layout-landing .portfolio-item.pos-3 { grid-column: 3 / 4; grid-row: 2 / 3; }
    .portfolio-grid.layout-landing .portfolio-item.pos-4 { grid-column: 3 / 4; grid-row: 3 / 4; }
    .portfolio-grid.layout-landing .portfolio-item.pos-5,
    .portfolio-grid.layout-landing .portfolio-item.pos-6 { display: none; }
    .portfolio-grid.layout-ecommerce .portfolio-item.pos-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
    .portfolio-grid.layout-ecommerce .portfolio-item.pos-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
    .portfolio-grid.layout-ecommerce .portfolio-item.pos-3 { grid-column: 3 / 4; grid-row: 1 / 2; }
    .portfolio-grid.layout-ecommerce .portfolio-item.pos-4 { grid-column: 2 / 3; grid-row: 2 / 3; }
    .portfolio-grid.layout-ecommerce .portfolio-item.pos-5 { grid-column: 3 / 4; grid-row: 2 / 3; }
    .portfolio-grid.layout-ecommerce .portfolio-item.pos-6 { grid-column: 1 / 4; grid-row: 3 / 4; }
    .portfolio-grid.layout-design .portfolio-item.pos-1 { grid-column: 2 / 4; grid-row: 1 / 3; }
    .portfolio-grid.layout-design .portfolio-item.pos-2 { grid-column: 1 / 2; grid-row: 1 / 2; }
    .portfolio-grid.layout-design .portfolio-item.pos-3 { grid-column: 1 / 2; grid-row: 2 / 3; }
    .portfolio-grid.layout-design .portfolio-item.pos-4 { grid-column: 1 / 2; grid-row: 3 / 4; }
    .portfolio-grid.layout-design .portfolio-item.pos-5 { grid-column: 2 / 3; grid-row: 3 / 4; }
    .portfolio-grid.layout-design .portfolio-item.pos-6 { grid-column: 3 / 4; grid-row: 3 / 4; }
    .portfolio-grid.layout-tous .portfolio-item.pos-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
    .portfolio-grid.layout-tous .portfolio-item.pos-2 { grid-column: 3 / 4; grid-row: 1 / 2; }
    .portfolio-grid.layout-tous .portfolio-item.pos-3 { grid-column: 3 / 4; grid-row: 2 / 3; }
    .portfolio-grid.layout-tous .portfolio-item.pos-4 { grid-column: 1 / 2; grid-row: 3 / 4; }
    .portfolio-grid.layout-tous .portfolio-item.pos-5 { grid-column: 2 / 3; grid-row: 3 / 4; }
    .portfolio-grid.layout-tous .portfolio-item.pos-6 { grid-column: 3 / 4; grid-row: 3 / 4; }
    .portfolio-grid.layout-web .portfolio-item,
    .portfolio-grid.layout-landing .portfolio-item,
    .portfolio-grid.layout-design .portfolio-item,
    .portfolio-grid.layout-ecommerce .portfolio-item,
    .portfolio-grid.layout-tous .portfolio-item {
        aspect-ratio: unset;
        height: 100%;
        align-self: stretch;
    }
    .portfolio-grid {
        align-items: stretch;
        justify-items: stretch;
    }
}
.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--text-dark);
}
.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.98);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
}
.portfolio-item-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 4/3;
}
.portfolio-image {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}
.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%),
        radial-gradient(circle at 30% 20%, rgba(240, 147, 251, 0.2) 0%, transparent 50%);
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-item:hover .portfolio-placeholder {
    transform: scale(1.05);
}
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-info {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}
.portfolio-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 10px;
}
.portfolio-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}
.portfolio-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}
.portfolio-tech {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.portfolio-tech span {
    padding: 4px 10px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}
.portfolio-link {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--text-dark);
    opacity: 0;
    transform: translateY(-10px) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-item:hover .portfolio-link {
    opacity: 1;
    transform: translateY(0) rotate(0);
}
.portfolio-link:hover {
    background: var(--primary-color);
    color: white;
}
.portfolio-link {
    display: none !important;
}
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-item-large {
        grid-column: span 1;
    }
    .portfolio-item {
        aspect-ratio: 16/10;
    }
    .portfolio-overlay {
        opacity: 1;
    }
    .portfolio-info {
        transform: translateY(0);
    }
    .portfolio-link {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}
@media (max-width: 480px) {
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .portfolio-title {
        font-size: 1.1rem;
    }
}
.configurator-section {
    padding-top: 40px !important;
    position: relative;
}
.configurator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: 
        radial-gradient(ellipse 600px 400px at 10% 20%, rgba(102, 126, 234, 0.06), transparent),
        radial-gradient(ellipse 500px 350px at 90% 80%, rgba(118, 75, 162, 0.05), transparent);
    pointer-events: none;
    z-index: 0;
}
.configurator-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 45px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.configurator-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.config-step {
    background: var(--bg-white);
    border-radius: 28px;
    padding: 38px 42px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.config-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.config-step:hover {
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.25);
}
.config-step:hover::before {
    opacity: 1;
}
.config-step-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    font-size: 1.35rem;
    color: var(--text-dark);
    font-weight: 700;
}
.config-step-title .step-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35);
    position: relative;
    text-shadow: 0 2px 6px rgba(0,0,0,0.45);
}
.config-step-title .step-number::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 17px;
    background: var(--primary-gradient);
    opacity: 0.2;
    z-index: -1;
}
.config-project-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.config-type-card {
    position: relative;
    cursor: pointer;
    display: block;
}
.config-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.config-type-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 18px;
    background: linear-gradient(145deg, var(--bg-lighter) 0%, var(--bg-white) 100%);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 175px;
    position: relative;
    overflow: hidden;
}
.config-type-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.04));
    opacity: 0;
    transition: opacity 0.35s ease;
}
.config-type-card:hover .config-type-content {
    border-color: rgba(102, 126, 234, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.15);
}
.config-type-card:hover .config-type-content::before {
    opacity: 1;
}
.config-type-card input:checked + .config-type-content {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.06));
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.22);
    transform: translateY(-4px);
}
.config-type-card input:checked + .config-type-content::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    animation: checkPop 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
}
@keyframes checkPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}
.config-type-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 18px;
    margin-bottom: 16px;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.config-type-card:hover .config-type-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}
.config-type-icon svg {
    width: 28px;
    height: 28px;
}
.config-type-name {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    position: relative;
    z-index: 1;
}
.config-type-price {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: block;
    position: relative;
    z-index: 1;
    background: rgba(102, 126, 234, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
}
.config-pages-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}
.pages-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--bg-lighter) 0%, var(--bg-white) 100%);
    border: 2px solid var(--border-medium);
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-dark);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
.pages-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
}
.pages-btn:active {
    transform: scale(0.95);
}
.pages-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    padding: 15px 25px;
    background: linear-gradient(145deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.03));
    border-radius: 20px;
}
.pages-count {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: transform 0.2s ease;
}
.pages-count.bump {
    animation: countBump 0.3s ease;
}
@keyframes countBump {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
.pages-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
}
.config-pages-note {
    text-align: center;
    margin-top: 24px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.04));
    border-radius: 14px;
    font-size: 0.9rem;
    color: var(--text-medium);
    border: 1px dashed rgba(102, 126, 234, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.config-pages-note svg {
    color: var(--primary-color);
    flex-shrink: 0;
}
.config-addons-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.config-addon-category {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}
.config-addon-category:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.addon-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 18px;
}
.addon-category-title svg {
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
    padding: 8px;
    border-radius: 10px;
    width: 34px;
    height: 34px;
}
.addon-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.config-addon-item {
    display: flex;
    align-items: center;
    padding: 18px 22px;
    background: linear-gradient(145deg, var(--bg-lighter) 0%, var(--bg-white) 100%);
    border: 2px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.config-addon-item:hover {
    background: rgba(102, 126, 234, 0.06);
    border-color: rgba(102, 126, 234, 0.25);
    transform: translateX(4px);
}
.config-addon-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.config-addon-item:has(input:checked) {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.06));
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
}
.addon-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-medium);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-right: 16px;
    background: var(--bg-white);
}
.config-addon-item input:checked + .addon-checkbox {
    background: var(--primary-gradient);
    border-color: transparent;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.35);
}
.config-addon-item input:checked + .addon-checkbox::after {
    content: '✓';
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    animation: checkPop 0.25s ease;
}
.addon-info {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.addon-name {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}
.addon-price {
    font-size: 0.88rem;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    background: var(--primary-gradient);
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
}
.configurator-summary {
    position: sticky;
    top: 110px;
}
.summary-card {
    background: var(--bg-white);
    border-radius: 28px;
    padding: 38px;
    border: 1px solid var(--border-light);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}
.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
}
.summary-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08), transparent 70%);
    pointer-events: none;
}
.summary-title {
    font-size: 1.35rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
}
.summary-title svg {
    color: var(--primary-color);
    flex-shrink: 0;
}
.summary-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
    padding: 12px 16px;
    background: var(--bg-lighter);
    border-radius: 12px;
}
.summary-label {
    font-size: 0.9rem;
    color: var(--text-light);
}
.summary-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    text-align: right;
}
.summary-options-section {
    flex-direction: column;
    gap: 12px;
    background: transparent;
    padding: 0;
}
.summary-options-section .summary-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.summary-options-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 180px;
    width: 100%;
    overflow-y: auto;
    padding-right: 8px;
}
.summary-options-list::-webkit-scrollbar {
    width: 4px;
}
.summary-options-list::-webkit-scrollbar-track {
    background: var(--bg-lighter);
    border-radius: 4px;
}
.summary-options-list::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}
.summary-options-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-medium);
    padding: 10px 14px;
    background: var(--bg-lighter);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}
.summary-options-list li::before {
    content: '✓';
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    background: var(--primary-gradient);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}
.summary-options-list .no-options {
    color: var(--text-muted);
    font-style: italic;
    background: transparent;
    border-left: none;
    padding: 8px 0;
}
.summary-options-list .no-options::before {
    display: none;
}
.summary-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
    margin: 26px 0;
}
.summary-price-block {
    text-align: center;
    margin-bottom: 28px;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.05));
    border-radius: 18px;
    position: relative;
}
.summary-price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
.summary-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}
.summary-price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}
.summary-price-currency {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-weight: 600;
}
.summary-price-note {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}
.summary-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 30px;
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}
.summary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}
.summary-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(102, 126, 234, 0.4);
    color: #fff;
}
.summary-cta:hover::before {
    left: 100%;
}
.summary-cta svg {
    transition: transform 0.3s ease;
}
.summary-cta:hover svg:last-child {
    transform: translateX(5px);
}
.summary-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    padding: 12px 16px;
    background: rgba(17, 153, 142, 0.08);
    border-radius: 10px;
    font-size: 0.8rem;
    color: #11998e;
    font-weight: 500;
}
.summary-guarantee svg {
    color: #11998e;
    flex-shrink: 0;
}
@media (max-width: 1100px) {
    .configurator-wrapper {
        grid-template-columns: 1fr 360px;
        gap: 35px;
    }
}
@media (max-width: 900px) {
    .configurator-wrapper {
        grid-template-columns: 1fr;
    }
    .configurator-summary {
        position: static;
        order: -1;
        margin-bottom: 25px;
    }
    .config-project-types {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .config-step {
        padding: 28px 24px;
        border-radius: 22px;
    }
    .config-step-title {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        font-size: 1.2rem;
    }
    .config-project-types {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .config-type-content {
        flex-direction: row;
        text-align: left;
        padding: 20px;
        gap: 18px;
        min-height: auto;
    }
    .config-type-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .addon-options {
        grid-template-columns: 1fr;
    }
    .pages-btn {
        width: 52px;
        height: 48px;
    }
    .pages-count {
        font-size: 2.5rem;
    }
    .summary-price-amount {
        font-size: 2rem;
    }
    .summary-card {
        padding: 28px 24px;
    }
}
.configurator-v2 {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}
.config-v2-steps-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    order: 1;
}
.config-v2-summary {
    order: 2;
    position: sticky;
    top: 110px;
    contain: layout style;
}
.config-v2-summary-inner {
    display: flex;
    flex-direction: column;
}
.config-v2-step {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.config-v2-step:last-of-type {
    margin-bottom: 0;
}
.config-v2-step-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}
.config-v2-step-num {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.config-v2-step-text h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 4px;
}
.config-v2-step-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}
.config-v2-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.config-v2-type-card {
    cursor: pointer;
    display: block;
    position: relative;
}
.config-v2-type-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.config-v2-type-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 12px;
    background: linear-gradient(145deg, var(--bg-lighter), var(--bg-white));
    border: 2px solid var(--border-light);
    border-radius: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-sizing: border-box;
    min-height: 160px;
    justify-content: space-between; 
}
.config-v2-type-card:hover .config-v2-type-inner {
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.12);
}
.config-v2-type-card.active .config-v2-type-inner,
.config-v2-type-card input:checked ~ .config-v2-type-inner {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.04));
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.18);
}
.config-v2-type-card.active .config-v2-type-inner::after,
.config-v2-type-card input:checked ~ .config-v2-type-inner::after {
    content: '✓';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 22px;
    height: 22px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    animation: checkPop 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}
.config-v2-type-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 14px;
    margin-bottom: 10px;
    color: #fff;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}
.config-v2-type-card:hover .config-v2-type-icon {
    transform: scale(1.08);
}
.config-v2-type-icon svg {
    width: 24px;
    height: 24px;
}
.config-v2-type-info {
    display: flex;
    flex-direction: column;
    gap: 6px; 
    margin-bottom: 8px;
    flex: 1 1 auto;
    min-height: 0; 
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 6px;
}
.config-v2-type-name {
    font-size: 0.86rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.28; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.config-v2-type-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.22; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.config-v2-type-price {
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(102, 126, 234, 0.1);
    padding: 3px 8px;
    border-radius: 12px;
    margin-top: auto;
    white-space: nowrap;
}
.config-v2-type-toggle {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.08);
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 5;
}
.config-v2-type-toggle:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: scale(1.1);
}
.config-v2-type-toggle svg {
    color: var(--primary-color);
    width: 14px;
    height: 14px;
}
.config-v2-type-tooltip {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.96);
    width: max(240px, 90%);
    max-width: 320px;
    z-index: 100;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.2s ease-out,
                visibility 0.2s;
    will-change: transform, opacity;
    pointer-events: none;
}
.config-v2-type-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
    border-radius: 2px 0 0 0;
}
.config-v2-type-tooltip p {
    margin: 0;
    padding: 10px 14px;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-dark);
    text-align: center;
}
.config-v2-type-card.desc-expanded .config-v2-type-tooltip {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.config-v2-type-card.desc-expanded .config-v2-type-toggle {
    background: var(--primary-color);
}
.config-v2-type-card.desc-expanded .config-v2-type-toggle svg {
    color: #fff;
}
@media (max-width: 640px) {
    .config-v2-type-inner {
        height: auto;
        min-height: 72px;
        justify-content: flex-start;
        padding: 12px;
    }
    .config-v2-type-info {
        align-items: flex-start;
        justify-content: center;
    }
    .config-v2-type-name,
    .config-v2-type-desc {
            white-space: normal;
            overflow: visible;
            text-overflow: clip;
            line-height: 1.35; 
    }
}
.config-v2-options-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.config-v2-option-group {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}
.config-v2-option-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.config-v2-option-title {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 6px;
}
.config-v2-option-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}
.config-v2-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.config-v2-counter-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--bg-lighter), var(--bg-white));
    border: 2px solid var(--border-medium);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    color: var(--text-dark);
}
.config-v2-counter-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.3);
}
.config-v2-counter-btn:active {
    transform: scale(0.95);
}
.config-v2-counter-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
    text-align: center;
    transition: transform 0.2s ease;
}
.config-v2-counter-value.bump {
    animation: countBump 0.25s ease;
}
.config-v2-addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.config-v2-addon-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.config-v2-addon {
    display: block;
    cursor: pointer;
    will-change: transform, box-shadow;
}
.config-v2-addon input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.config-v2-addon-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(145deg, var(--bg-lighter), var(--bg-white));
    border: 2px solid var(--border-light);
    border-radius: 14px;
    transition: box-shadow 0.28s var(--ease, cubic-bezier(.2,.9,.2,1)), border-color 0.28s var(--ease), background 0.28s var(--ease);
    position: relative;
}
.config-v2-addon:hover .config-v2-addon-inner {
    border-color: rgba(102, 126, 234, 0.35);
    background: rgba(102, 126, 234, 0.04);
}
.config-v2-addon.checked .config-v2-addon-inner {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.05));
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.12);
}
.config-v2-addon-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.config-v2-addon.checked .config-v2-addon-icon {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}
.config-v2-addon-name {
    flex: 1;
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 500;
}
.config-v2-addon-price {
    font-size: 0.78rem;
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
}
.config-v2-addon-toggle {
    position: static;
    margin-left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.06);
    border: none;
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}
.config-v2-addon-toggle:hover {
    background: rgba(102, 126, 234, 0.12);
    transform: translateY(-1px);
}
.config-v2-addon-toggle svg {
    color: var(--primary-color);
    transition: transform 0.28s ease;
}
.config-v2-addon-wrapper.expanded .config-v2-addon-toggle svg {
    transform: rotate(180deg);
}
.config-v2-addon-desc {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.96);
    width: max(280px, 90%);
    max-width: 360px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12),
                0 4px 12px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.2s ease-out,
                visibility 0.2s;
    will-change: transform, opacity;
}
.config-v2-addon-desc::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 2px 0 0 0;
}
.config-v2-addon-desc > div {
    padding: 0;
}
.config-v2-addon-desc p {
    margin: 0;
    padding: 10px 14px;
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--text-dark);
    text-align: center;
}
.config-v2-addon-wrapper.expanded .config-v2-addon-inner {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}
.config-v2-addon-wrapper.expanded .config-v2-addon-desc {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}
.config-v2-no-options {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding: 20px;
}
.config-v2-summary {
    position: sticky;
    top: 110px;
}
.config-v2-summary-inner {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 28px;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}
.config-v2-summary-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}
.config-v2-summary-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}
.config-v2-summary-title svg {
    color: var(--primary-color);
}
.config-v2-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: var(--bg-lighter);
    border-radius: 10px;
    margin-bottom: 10px;
}
.config-v2-summary-row span {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.config-v2-summary-row strong {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}
.config-v2-summary-options {
    margin: 16px 0;
}
.config-v2-summary-options > span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.config-v2-summary-options ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 150px;
    overflow-y: auto;
}
.config-v2-summary-options ul::-webkit-scrollbar {
    width: 4px;
}
.config-v2-summary-options ul::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}
.config-v2-summary-options li {
    font-size: 0.85rem;
    color: var(--text-medium);
    padding: 10px 12px;
    background: var(--bg-lighter);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}
.config-v2-summary-options li.no-opt {
    color: var(--text-muted);
    font-style: italic;
    border-left: none;
    background: transparent;
}
.config-v2-summary-total {
    text-align: center;
    margin: 20px 0;
    padding: 20px 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.04));
    border-radius: 14px;
}
.config-v2-summary-total > span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.config-v2-total-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}
.config-v2-total-price #sum-total {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.2s ease;
}
.config-v2-total-price .currency {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 600;
}
.config-v2-summary-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 16px;
}
.config-v2-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}
.config-v2-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: #fff;
}
.config-v2-cta svg {
    transition: transform 0.3s ease;
}
.config-v2-cta:hover svg {
    transform: translateX(4px);
}
@media (max-width: 1100px) {
    .configurator-v2 {
        grid-template-columns: 1fr 340px;
        gap: 30px;
    }
    .config-v2-types {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .configurator-v2 {
        display: flex;
        flex-direction: column;
    }
    .config-v2-summary {
        position: static;
        order: -1;
        margin-bottom: 24px;
    }
    .config-v2-steps-col {
        order: 1;
    }
    .config-v2-types {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .config-v2-step {
        padding: 24px 20px;
        border-radius: 20px;
    }
    .config-v2-step-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .config-v2-step-num {
        margin: 0 auto;
    }
    .config-v2-types {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .config-v2-type-inner {
        flex-direction: row;
        text-align: left;
        padding: 16px;
        min-height: auto;
        gap: 14px;
    }
    .config-v2-type-icon {
        margin-bottom: 0;
        width: 46px;
        height: 46px;
    }
    .config-v2-type-info {
        flex: 1;
        margin-bottom: 0;
    }
    .config-v2-type-price {
        margin-top: 0;
    }
    .config-v2-addons-grid {
        grid-template-columns: 1fr;
    }
    .config-v2-counter-value {
        font-size: 2.2rem;
    }
    .config-v2-total-price #sum-total {
        font-size: 1.8rem;
    }
    .config-v2-summary-inner {
        padding: 22px 18px;
    }
}
.pricing-show-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-show-card {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}
.pricing-show-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.pricing-show-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.15);
    box-shadow: 0 20px 48px rgba(102, 126, 234, 0.2);
}
.pricing-show-card:hover::before {
    opacity: 1;
}
.pricing-show-card.featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.04) 0%, rgba(118, 75, 162, 0.04) 100%);
    border-color: rgba(102, 126, 234, 0.25);
    transform: scale(1.02);
}
.pricing-show-card.featured::before {
    opacity: 1;
}
.pricing-show-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}
.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-gradient);
    color: #fff;
    padding: 8px 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}
.pricing-show-header {
    text-align: center;
    padding: 36px 32px 28px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.02) 0%, transparent 100%);
}
.pricing-show-name {
    font-size: 1.3rem;
    color: var(--text-medium);
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.pricing-show-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin: 24px 0;
}
.pricing-show-amount {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.pricing-show-currency {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
}
.pricing-show-features {
    list-style: none;
    padding: 32px;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pricing-show-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--text-medium);
    font-size: 0.95rem;
    background: rgba(102, 126, 234, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.pricing-show-features li:hover {
    background: rgba(102, 126, 234, 0.08);
    transform: translateX(4px);
}
.pricing-show-features li:last-child {
    border-bottom: none;
}
.pricing-show-features li i {
    color: #667eea;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}
.pricing-show-features li.disabled {
    color: rgba(255, 255, 255, 0.3);
}
.pricing-show-features li.disabled i {
    color: rgba(255, 255, 255, 0.2);
}
.pricing-show-card .btn-show {
    width: 100%;
    text-align: center;
    justify-content: center;
}
.pricing-show-card.pricing-show-featured {
    background: linear-gradient(165deg, rgb(255 255 255) 0%, rgba(233, 218, 247, 0.554) 100%);
    box-shadow: 0 0 10px rgba(118, 75, 162, 0.2);
    border: rgba(118, 75, 162, 0.2) 2px solid;
    transform: scale(1.02);
}
.pricing-show-card.pricing-show-featured::before {
    opacity: 1;
}
.pricing-show-card.pricing-show-featured:hover {
    transform: scale(1.02) translateY(-8px);
}
.pricing-show-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--primary-gradient);
    color: #fff;
    padding: 8px 18px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    z-index: 2;
}
.pricing-show-header h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.pricing-show-header p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}
.pricing-show-price .price-amount {
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.pricing-show-price .price-currency {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 5px;
}
.pricing-show-features li svg {
    color: #667eea;
    flex-shrink: 0;
}
.pricing-show-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: calc(100% - 64px);
    margin: 0 32px 32px;
    padding: 16px 28px;
    background: var(--bg-light);
    border: 2px solid rgba(102, 126, 234, 0.15);
    border-radius: 12px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-show-cta:hover {
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}
.pricing-show-cta svg {
    transition: transform 0.3s ease;
}
.pricing-show-cta:hover svg {
    transform: translate(3px, -3px);
}
.pricing-show-cta-primary {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
}
.pricing-show-cta-primary:hover {
    background: var(--primary-gradient-hover);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}
.pricing-ecommerce-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.pricing-ecommerce-card {
    background: #fff;
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.pricing-ecommerce-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.15);
}
.ecommerce-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #667eea;
}
.pricing-ecommerce-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 10px;
}
.ecommerce-desc {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 25px;
}
.ecommerce-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}
.ecommerce-price .price-from {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.ecommerce-price .price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ecommerce-price .price-currency {
    color: var(--text-muted);
    font-size: 1rem;
}
.design-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.design-service-card {
    background: #fff;
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.design-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}
.design-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #667eea;
}
.design-service-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}
.design-service-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}
.design-service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.design-service-price span {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.design-service-price strong {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
    min-height: 700px;
    align-content: start;
}
.faq-item {
    background: #fff;
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.faq-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}
.faq-question span {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
}
.faq-question svg {
    color: #667eea;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    padding: 0 30px 25px;
}
@media (max-width: 1024px) {
    .design-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .pricing-ecommerce-grid {
        grid-template-columns: 1fr;
    }
    .faq-question {
        padding: 20px;
    }
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    .config-v2-addons-grid {
        grid-template-columns: 1fr;
    }
    .config-v2-addon-toggle {
        width: 26px;
        height: 26px;
    }
    .config-v2-addon-toggle svg {
        width: 14px;
        height: 14px;
    }
}
@media (max-width: 600px) {
    .design-services-grid {
        grid-template-columns: 1fr;
    }
}
.addon-show-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.addon-show-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 30px;
    transition: all 0.3s ease;
}
.addon-show-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(5px);
}
.addon-show-info h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.addon-show-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}
.addon-show-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
    white-space: nowrap;
}
.faq-show-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-show-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-show-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
}
.faq-show-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-show-question h4 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
}
.faq-show-question i {
    color: #667eea;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.faq-show-item.active .faq-show-question i {
    transform: rotate(180deg);
}
.faq-show-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-show-item.active .faq-show-answer {
    max-height: 300px;
}
.faq-show-answer p {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 1024px) {
    .pricing-show-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-show-card.featured,
    .pricing-show-card.pricing-show-featured {
        transform: scale(1);
        grid-column: span 2;
        max-width: 450px;
        margin: 0 auto;
    }
    .pricing-show-card.featured:hover,
    .pricing-show-card.pricing-show-featured:hover {
        transform: translateY(-10px);
    }
}
@media (max-width: 768px) {
    .pricing-show-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .pricing-show-card.featured,
    .pricing-show-card.pricing-show-featured {
        grid-column: span 1;
        max-width: 100%;
    }
    .pricing-show-card {
        padding: 35px 25px;
    }
    .pricing-show-amount {
        font-size: 2.8rem;
    }
    .addon-show-list {
        grid-template-columns: 1fr;
    }
    .addon-show-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
.commander-page {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    min-height: 100vh;
}
.commander-hero {
    position: relative;
    padding: 160px 0 60px;
    overflow: hidden;
}
.commander-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.commander-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.05) 50%, transparent 100%);
}
.commander-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(102, 126, 234, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}
.commander-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.commander-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}
.commander-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.1));
    top: -100px;
    right: -100px;
}
.commander-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.15), rgba(102, 126, 234, 0.1));
    bottom: -50px;
    left: -50px;
}
.commander-shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(102, 126, 234, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.commander-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.commander-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #667eea;
    margin-bottom: 24px;
    position: relative;
}
.commander-hero-badge svg {
    color: #f59e0b;
}
.badge-pulse {
    position: relative;
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}
.commander-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}
.commander-highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.commander-hero-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
}
.commander-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.proof-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.proof-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
}
.proof-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
}
.proof-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a2e;
}
.commander-progress-section {
    padding: 30px 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.commander-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}
.commander-progress-bar .progress-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.commander-progress-bar .progress-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #f1f5f9;
    color: #94a3b8;
    border: 2px solid #e2e8f0;
}
.commander-progress-bar .progress-step.completed .progress-step-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: transparent;
    color: #fff;
}
.commander-progress-bar .progress-step.active .progress-step-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.commander-progress-bar .progress-step-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
    transition: color 0.3s ease;
}
.commander-progress-bar .progress-step.completed .progress-step-text,
.commander-progress-bar .progress-step.active .progress-step-text {
    color: #1a1a2e;
}
.progress-connector {
    width: 60px;
    height: 3px;
    background: #e2e8f0;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}
.progress-connector.completed {
    background: linear-gradient(90deg, #10b981, #059669);
}
.progress-connector.completed::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: progressShine 2s infinite;
}
@keyframes progressShine {
    to { left: 100%; }
}
.commander-main {
    padding: 60px 0 100px;
    position: relative;
}
.commander-progress {
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
}
.progress-track {
    position: absolute;
    top: 20px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: #e2e8f0;
    border-radius: 3px;
    z-index: 0;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
    width: 0%;
    transition: width 0.4s ease;
}
.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.progress-step-dot {
    width: 42px;
    height: 42px;
    background: #fff;
    border: 3px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #94a3b8;
    transition: all 0.3s ease;
}
.progress-step.active .progress-step-dot {
    border-color: #667eea;
    color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}
.progress-step.completed .progress-step-dot {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
    color: #fff;
}
.progress-step-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #94a3b8;
    transition: color 0.3s ease;
}
.progress-step.active .progress-step-label,
.progress-step.completed .progress-step-label {
    color: #667eea;
}
.commander-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}
.commander-form-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.commander-step {
    display: none;
}
.commander-step.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.commander-step-header {
    margin-bottom: 35px;
}
.commander-step-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.commander-step-header p {
    color: #64748b;
    font-size: 1rem;
}
.project-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.project-type-card {
    cursor: pointer;
}
.project-type-card input {
    display: none;
}
.project-type-content {
    position: relative;
    padding: 30px 25px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}
.project-type-content:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}
.project-type-card input:checked + .project-type-content {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.03));
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
}
.project-type-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    transition: all 0.3s ease;
}
.project-type-card input:checked + .project-type-content .project-type-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}
.project-type-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.project-type-content p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 12px;
}
.project-type-price {
    font-size: 0.8rem;
    color: #94a3b8;
}
.project-type-price strong {
    color: #667eea;
    font-weight: 600;
}
.project-type-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}
.project-type-card input:checked + .project-type-content .project-type-check {
    opacity: 1;
    transform: scale(1);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}
.feature-card {
    cursor: pointer;
}
.feature-card input {
    display: none;
}
.feature-content {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.feature-content:hover {
    border-color: #cbd5e1;
}
.feature-card input:checked + .feature-content {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.03));
}
.feature-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.feature-card input:checked + .feature-content .feature-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}
.feature-content span {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a2e;
}
.feature-badge {
    padding: 4px 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}
.feature-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: #667eea;
}
.design-section {
    margin-bottom: 40px;
}
.design-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
}
.design-style-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.design-style-card {
    cursor: pointer;
}
.design-style-card input {
    display: none;
}
.design-style-content {
    padding: 16px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}
.design-style-content:hover {
    border-color: #cbd5e1;
}
.design-style-card input:checked + .design-style-content {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.03));
}
.design-preview {
    height: 80px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    position: relative;
}
.design-preview-header {
    height: 16px;
    background: #e2e8f0;
}
.design-preview-header.gradient {
    background: linear-gradient(90deg, #667eea, #764ba2);
}
.design-preview-header.dark {
    background: #1a1a2e;
}
.design-preview-content {
    padding: 8px;
}
.design-preview-line {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 6px;
}
.design-preview-line.short {
    width: 60%;
}
.design-preview-card {
    height: 20px;
    background: #f1f5f9;
    border-radius: 4px;
    margin-bottom: 4px;
}
.design-preview-shape {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
}
.design-preview-content.offset {
    padding-left: 50px;
}
.design-preview-block {
    height: 40px;
    background: #f1f5f9;
    border-radius: 4px;
}
.design-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 8px;
}
.design-preview-grid div {
    height: 25px;
    background: #f1f5f9;
    border-radius: 3px;
}
.design-style-content span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a2e;
}
.timeline-section {
    margin-bottom: 30px;
}
.timeline-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.timeline-option {
    cursor: pointer;
}
.timeline-option input {
    display: none;
}
.timeline-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.timeline-content:hover {
    border-color: #cbd5e1;
}
.timeline-option input:checked + .timeline-content {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.03));
}
.timeline-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.timeline-icon.urgent {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}
.timeline-icon.normal {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}
.timeline-icon.flexible {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}
.timeline-info {
    flex: 1;
}
.timeline-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2px;
}
.timeline-info span {
    font-size: 0.85rem;
    color: #64748b;
}
.timeline-extra {
    padding: 6px 12px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}
.timeline-extra.recommended {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
}
.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.contact-form-grid .form-group {
    display: flex;
    flex-direction: column;
}
.contact-form-grid .form-group.full-width {
    grid-column: span 2;
}
.contact-form-grid label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.contact-form-grid input,
.contact-form-grid textarea {
    padding: 14px 18px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: #1a1a2e;
    transition: all 0.3s ease;
}
.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
    outline: none;
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}
.contact-form-grid input::placeholder,
.contact-form-grid textarea::placeholder {
    color: #94a3b8;
}
.commander-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 10px;
}
.commander-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.commander-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
}
.commander-btn-prev {
    background: #fff;
    color: #64748b;
    border: 2px solid #e2e8f0;
}
.commander-btn-prev:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    box-shadow: none;
    transform: none;
}
.commander-btn-submit {
    background: linear-gradient(135deg, #10b981, #059669);
}
.commander-btn-submit:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}
.commander-btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}
.commander-btn-outline:hover {
    background: rgba(102, 126, 234, 0.05);
    box-shadow: none;
}
.commander-success {
    text-align: center;
    padding: 60px 20px;
    animation: fadeInUp 0.5s ease;
}
.success-animation {
    margin-bottom: 30px;
    position: relative;
}
.success-checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.success-checkmark svg {
    color: #10b981;
}
.success-checkmark circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: strokeCircle 0.6s ease-in-out forwards;
}
.success-checkmark .checkmark-path {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: strokeCheck 0.4s ease-in-out 0.4s forwards;
}
@keyframes strokeCircle {
    to { stroke-dashoffset: 0; }
}
@keyframes strokeCheck {
    to { stroke-dashoffset: 0; }
}
.success-confetti {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
}
.success-confetti span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: confettiExplode 1s ease-out forwards;
}
.success-confetti span:nth-child(1) { background: #667eea; animation-delay: 0s; }
.success-confetti span:nth-child(2) { background: #764ba2; animation-delay: 0.05s; }
.success-confetti span:nth-child(3) { background: #10b981; animation-delay: 0.1s; }
.success-confetti span:nth-child(4) { background: #f59e0b; animation-delay: 0.15s; }
.success-confetti span:nth-child(5) { background: #ef4444; animation-delay: 0.2s; }
.success-confetti span:nth-child(6) { background: #667eea; animation-delay: 0.25s; }
.success-confetti span:nth-child(7) { background: #764ba2; animation-delay: 0.3s; }
.success-confetti span:nth-child(8) { background: #10b981; animation-delay: 0.35s; }
.success-confetti span:nth-child(9) { background: #f59e0b; animation-delay: 0.4s; }
.success-confetti span:nth-child(10) { background: #ef4444; animation-delay: 0.45s; }
@keyframes confettiExplode {
    0% { 
        transform: translate(0, 0) scale(0);
        opacity: 1;
    }
    100% { 
        transform: translate(var(--tx, 50px), var(--ty, -50px)) scale(1);
        opacity: 0;
    }
}
.success-confetti span:nth-child(1) { --tx: -60px; --ty: -40px; }
.success-confetti span:nth-child(2) { --tx: 60px; --ty: -50px; }
.success-confetti span:nth-child(3) { --tx: -40px; --ty: 50px; }
.success-confetti span:nth-child(4) { --tx: 50px; --ty: 40px; }
.success-confetti span:nth-child(5) { --tx: -70px; --ty: 10px; }
.success-confetti span:nth-child(6) { --tx: 70px; --ty: -10px; }
.success-confetti span:nth-child(7) { --tx: 0px; --ty: -70px; }
.success-confetti span:nth-child(8) { --tx: 0px; --ty: 70px; }
.success-confetti span:nth-child(9) { --tx: -50px; --ty: -60px; }
.success-confetti span:nth-child(10) { --tx: 50px; --ty: 60px; }
@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.commander-success h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}
.commander-success p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.success-next-steps {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    padding: 0;
    background: transparent;
}
.next-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    flex: 1;
    max-width: 160px;
    transition: all 0.3s ease;
    position: relative;
}
.next-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}
.next-step::after {
    content: '';
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-right: 2px solid #667eea;
    border-bottom: 2px solid #667eea;
    transform: translateY(-50%) rotate(-45deg);
}
.next-step:last-child::after {
    display: none;
}
.next-step-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35);
}
.next-step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.next-step-text strong {
    display: block;
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 2px;
}
.next-step-text span {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
}
.success-details {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.05));
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 32px;
    text-align: left;
}
.success-ticket {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 24px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}
.success-ticket .ticket-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    margin-bottom: 8px;
}
.success-ticket .ticket-number {
    font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    word-break: break-all;
}
.success-ticket .ticket-hint {
    font-size: 0.8rem;
    opacity: 0.85;
}
@media (max-width: 480px) {
    .success-ticket .ticket-number {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
}
.success-details-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.success-details-title svg {
    width: 16px;
    height: 16px;
}
.success-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.success-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.success-detail-label {
    font-size: 0.75rem;
    color: #64748b;
}
.success-detail-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
}
.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.commander-summary {
    position: relative;
}
.summary-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.summary-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}
.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}
.summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.summary-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
}
.summary-header h3 svg {
    color: #667eea;
}
.summary-edit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #667eea;
    text-decoration: none;
    padding: 6px 12px;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.summary-edit:hover {
    background: rgba(102, 126, 234, 0.15);
}
.summary-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}
.summary-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
}
.empty-illustration {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #94a3b8;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.summary-empty p {
    color: #64748b;
    margin-bottom: 16px;
}
.btn-configure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-configure:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.summary-type-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.summary-type-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
}
.summary-type-info {
    flex: 1;
}
.summary-label {
    font-size: 0.8rem;
    color: #94a3b8;
    display: block;
    margin-bottom: 2px;
}
.summary-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
}
.summary-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 8px 0;
}
.summary-options-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.summary-options-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #1a1a2e;
    padding: 8px 12px;
    background: rgba(16, 185, 129, 0.06);
    border-radius: 8px;
    border-left: 3px solid #10b981;
}
.summary-options-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
}
.summary-total {
    padding: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.03));
    border-radius: 14px;
    margin-top: 10px;
}
.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.summary-total-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}
.summary-total-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.summary-total-amount span:first-child {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.summary-total-amount .currency {
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
}
.summary-total-note {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: right;
}
.summary-guarantees {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #64748b;
}
.guarantee-item svg {
    color: #10b981;
    flex-shrink: 0;
}
.summary-help {
    padding: 20px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(18, 140, 126, 0.03));
    border-radius: 16px;
    border: 1px solid rgba(37, 211, 102, 0.15);
}
.help-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.help-header svg {
    color: #25d366;
}
.summary-help p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 14px;
}
.help-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #25d366;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.help-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}
.summary-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
    text-transform: uppercase;
}
.summary-live::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: livePulse 2s infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.summary-total-old {
    text-align: center;
}
.summary-total-label-old {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 6px;
}
.summary-total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.summary-total-note {
    font-size: 0.75rem;
    color: #94a3b8;
}
.summary-guarantees {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}
.guarantee-item:last-child {
    border-bottom: none;
}
.guarantee-item svg {
    color: #10b981;
    flex-shrink: 0;
}
.guarantee-item span {
    font-size: 0.85rem;
    color: #475569;
}
.summary-help {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}
.summary-help h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.summary-help p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 16px;
}
.summary-help-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}
.summary-help-link:hover {
    color: #764ba2;
}
.summary-edit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #667eea;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(102, 126, 234, 0.08);
    transition: all 0.3s ease;
}
.summary-edit:hover {
    background: rgba(102, 126, 234, 0.15);
}
.summary-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
    gap: 16px;
    color: #94a3b8;
}
.summary-empty svg {
    opacity: 0.5;
}
.summary-empty p {
    font-size: 0.95rem;
    color: #64748b;
}
.btn-configure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-configure:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
}
.summary-type-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 12px;
}
.summary-type-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    flex-shrink: 0;
}
.summary-type-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.summary-type-info .summary-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.summary-type-info .summary-value {
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    max-width: none;
}
.summary-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 8px 0;
}
.summary-options {
    margin-bottom: 20px;
}
.summary-options .summary-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.summary-options-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.summary-options-list li {
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.05));
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #667eea;
}
.form-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #fafbfc;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    position: relative;
    transition: all 0.3s ease;
}
.form-section:hover {
    border-color: rgba(102, 126, 234, 0.2);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.05);
}
.form-section:last-of-type {
    margin-bottom: 30px;
}
.form-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    position: relative;
}
.form-section-number {
    position: absolute;
    top: -45px;
    left: -45px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.form-section-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.form-section:hover .form-section-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    transform: scale(1.05);
}
.form-section-header > div:not(.form-section-icon):not(.form-section-number):not(.section-status) {
    flex: 1;
}
.form-section-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}
.form-section-header p {
    font-size: 0.85rem;
    color: #64748b;
}
.section-status {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}
.section-status.complete {
    opacity: 1;
    transform: scale(1);
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}
.section-status.complete::after {
    content: '✓';
    font-size: 0.75rem;
    font-weight: 700;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}
.form-group.full-width {
    grid-column: span 2;
}
.form-group.floating-label {
    position: relative;
}
.form-group.floating-label input,
.form-group.floating-label textarea {
    padding: 22px 18px 10px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: #1a1a2e;
    transition: all 0.3s ease;
}
.form-group.floating-label label {
    position: absolute;
    left: 18px;
    top: 16px;
    font-size: 1rem;
    font-weight: 400;
    color: #94a3b8;
    pointer-events: none;
    transition: all 0.2s ease;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.form-group.floating-label textarea ~ label {
    top: 16px;
}
.form-group.floating-label input:focus ~ label,
.form-group.floating-label input:not(:placeholder-shown) ~ label,
.form-group.floating-label textarea:focus ~ label,
.form-group.floating-label textarea:not(:placeholder-shown) ~ label {
    top: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #667eea;
    background: #fff;
    padding: 0 4px;
    left: 14px;
}
.form-group.floating-label .required {
    color: #ef4444;
    font-size: inherit;
}
.form-group.floating-label .optional {
    color: #94a3b8;
    font-size: 0.7rem;
    font-weight: 400;
}
.input-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: all 0.3s ease;
    border-radius: 0 0 12px 12px;
}
.form-group.floating-label input:focus ~ .input-line,
.form-group.floating-label textarea:focus ~ .input-line {
    width: 100%;
    left: 0;
}
.field-validation {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
}
.form-group.floating-label.full-width .field-validation {
    top: 22px;
    transform: none;
}
.valid-icon {
    color: #10b981;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}
.form-group.valid .valid-icon {
    opacity: 1;
    transform: scale(1);
}
.form-group.invalid input,
.form-group.invalid textarea {
    border-color: #ef4444;
}
.form-group.invalid .error-message {
    color: #ef4444;
    font-size: 0.75rem;
}
.textarea-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}
.char-counter {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}
.char-counter.warning {
    color: #f59e0b;
}
.char-counter.limit {
    color: #ef4444;
}
.select-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.select-label svg {
    color: #667eea;
    flex-shrink: 0;
    vertical-align: sub;
    margin-right: 3px;
}
.select-wrapper {
    position: relative;
}
.select-wrapper select {
    width: 100%;
    padding: 16px 45px 16px 18px;
    background: #fff url('data:image/svg+xml;utf8,') no-repeat right center;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: #1a1a2e;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: none !important;
    transition: all 0.3s ease;
}
.select-wrapper select::-ms-expand {
    display: none;
}
.select-wrapper select::-webkit-inner-spin-button,
.select-wrapper select::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.select-wrapper select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}
.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    transition: transform 0.3s ease;
}
.select-wrapper select:focus ~ .select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: #667eea;
}
.form-hint {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: #94a3b8;
}
.contact-preferences {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.preference-option {
    cursor: pointer;
}
.preference-option input {
    display: none;
}
.preference-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.preference-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.preference-content:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}
.preference-option input:checked + .preference-content {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.02));
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.12);
}
.preference-option input:checked + .preference-content::before {
    transform: scaleX(1);
}
.preference-icon {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
}
.preference-option input:checked + .preference-content .preference-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    transform: scale(1.05);
}
.preference-icon.whatsapp {
    color: #25d366;
}
.preference-option input:checked + .preference-content .preference-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}
.preference-text {
    text-align: center;
}
.preference-text strong {
    display: block;
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 2px;
}
.preference-text small {
    font-size: 0.8rem;
    color: #94a3b8;
}
.preference-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}
.preference-option input:checked + .preference-content .preference-check {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
}
.preference-option input:checked + .preference-content .preference-check::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
}
.preference-option.disabled {
    pointer-events: none;
    opacity: 0.5;
}
.preference-option.disabled .preference-content {
    cursor: not-allowed;
    background: #f1f5f9;
}
.preference-option.disabled .preference-content::after {
    content: 'Numéro requis';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: #94a3b8;
    white-space: nowrap;
}
.form-completion {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
}
.completion-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}
.completion-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 8px;
    transition: width 0.4s ease;
    position: relative;
}
.completion-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.completion-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #667eea;
    white-space: nowrap;
}
.commander-form .form-group {
    margin-bottom: 0;
}
.form-actions {
    text-align: center;
    padding-top: 20px;
}
.commander-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.commander-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.commander-submit-btn:hover::before {
    left: 100%;
}
.commander-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.35);
}
.commander-submit-btn .btn-text {
    transition: opacity 0.3s ease;
}
.commander-submit-btn .btn-icon {
    transition: transform 0.3s ease;
}
.commander-submit-btn:hover .btn-icon {
    transform: translateX(4px) translateY(-4px);
}
.commander-submit-btn .btn-loading {
    display: none;
    gap: 6px;
}
.commander-submit-btn.loading .btn-text,
.commander-submit-btn.loading .btn-icon {
    display: none;
}
.commander-submit-btn.loading .btn-loading {
    display: flex;
}
.loading-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: loadingBounce 1.4s infinite ease-in-out both;
}
.loading-dot:nth-child(1) { animation-delay: -0.32s; }
.loading-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes loadingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}
.form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
}
.form-disclaimer svg {
    color: #10b981;
}
.commander-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}
.success-project-summary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 12px;
    padding: 20px 30px;
    margin: 20px auto 30px;
    max-width: 300px;
}
.success-project-summary p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: #475569;
}
.success-project-summary p strong {
    color: #1a1a2e;
}
.commander-no-project {
    padding: 60px 0;
    display: none;
}
.no-project-card {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 50px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.no-project-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
}
.no-project-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.no-project-card > p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 28px;
    line-height: 1.6;
}
.commander-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.commander-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
}
.no-project-alt {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #94a3b8;
}
@media (max-width: 1100px) {
    .commander-content {
        grid-template-columns: 1fr;
    }
    .commander-summary {
        position: static;
        order: -1;
    }
    .summary-card {
        max-width: 100%;
    }
    .summary-guarantees {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
    .guarantee-item {
        border-bottom: none;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        padding: 16px;
    }
    .guarantee-item:not(:last-child) {
        border-right: 1px solid #f1f5f9;
    }
}
@media (max-width: 768px) {
    .commander-hero {
        padding: 140px 0 40px;
    }
    .commander-social-proof {
        gap: 10px;
    }
    .proof-badge {
        padding: 10px 14px;
        gap: 8px;
    }
    .proof-icon {
        width: 30px;
        height: 30px;
    }
    .proof-icon svg {
        width: 16px;
        height: 16px;
    }
    .proof-badge span {
        font-size: 0.8rem;
    }
    .commander-progress-section {
        padding: 20px 0;
    }
    .commander-progress-bar {
        gap: 0;
    }
    .commander-progress-bar .progress-step {
        padding: 8px 12px;
    }
    .commander-progress-bar .progress-step-text {
        display: none;
    }
    .progress-connector {
        width: 30px;
    }
    .commander-form-wrapper {
        padding: 20px;
    }
    .form-section {
        padding: 20px;
        margin-bottom: 24px;
    }
    .form-section-number {
        top: -35px;
        left: -10px;
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    .form-section-header {
        flex-wrap: wrap;
        gap: 12px;
    }
    .form-section-icon {
        width: 40px;
        height: 40px;
    }
    .form-section-header h2 {
        font-size: 1.1rem;
    }
    .project-type-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .design-style-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-grid .form-group.full-width {
        grid-column: span 1;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .contact-preferences {
        grid-template-columns: 1fr;
    }
    .preference-content {
        flex-direction: row;
        padding: 16px;
    }
    .preference-icon {
        width: 40px;
        height: 40px;
    }
    .preference-text {
        text-align: left;
        flex: 1;
    }
    .form-completion {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .completion-text {
        text-align: center;
    }
    .commander-submit-btn {
        width: 100%;
        padding: 18px 30px;
    }
    .commander-nav {
        flex-direction: column;
    }
    .commander-btn {
        width: 100%;
        justify-content: center;
    }
    .commander-content {
        grid-template-columns: 1fr;
    }
    .commander-summary {
        order: -1;
    }
    .summary-sticky {
        position: relative;
        top: 0;
    }
    .success-next-steps {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .progress-track {
        left: 30px;
        right: 30px;
    }
    .progress-step-label {
        display: none;
    }
    .success-actions {
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .design-style-grid {
        grid-template-columns: 1fr;
    }
    .timeline-content {
        flex-wrap: wrap;
    }
    .timeline-extra {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }
    .commander-hero-title {
        font-size: 1.8rem;
    }
    .commander-hero-subtitle {
        font-size: 1rem;
    }
}
.about-story {
    padding: 100px 0;
}
.story-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}
.story-content .section-title-show {
    margin-bottom: 30px;
}
.story-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.story-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.story-stat {
    text-align: center;
}
.story-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}
.story-stat .stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
.story-visual {
    position: relative;
}
.visual-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}
.visual-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
}
.visual-content i {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}
.visual-content p {
    font-size: 1.4rem;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}
.visual-content span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}
.about-values {
    background: rgba(255, 255, 255, 0.02);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}
.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.value-icon i {
    font-size: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.value-card h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.value-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}
.about-timeline {
    padding: 120px 0;
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding-left: 60px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}
.timeline-item {
    position: relative;
    margin-bottom: 50px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-marker {
    position: absolute;
    left: -52px;
    top: 5px;
    width: 24px;
    height: 24px;
    background: var(--primary-gradient);
    border-radius: 50%;
    border: 4px solid #0a0a14;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
}
.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}
.timeline-content:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(10px);
}
.timeline-date {
    display: inline-block;
    background: var(--primary-gradient);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.timeline-content h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}
.about-why {
    background: rgba(255, 255, 255, 0.02);
}
.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-content .section-title-show {
    margin-bottom: 40px;
}
.why-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.why-icon {
    flex-shrink: 0;
}
.why-icon i {
    font-size: 1.5rem;
    color: #667eea;
}
.why-text h4 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.why-text p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}
.why-image {
    position: relative;
    height: 500px;
}
.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.floating-card:hover {
    transform: scale(1.05);
    border-color: rgba(102, 126, 234, 0.4);
}
.floating-card i {
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.floating-card span {
    color: #fff;
    font-weight: 500;
}
.floating-card.card-1 {
    top: 10%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}
.floating-card.card-2 {
    top: 25%;
    right: 5%;
    animation: float2 7s ease-in-out infinite;
}
.floating-card.card-3 {
    bottom: 30%;
    left: 15%;
    animation: float3 5s ease-in-out infinite;
}
.floating-card.card-4 {
    bottom: 10%;
    right: 10%;
    animation: float4 6.5s ease-in-out infinite;
}
@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}
@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(2deg); }
}
@keyframes float4 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(-3deg); }
}
@media (max-width: 1024px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .why-image {
        height: 350px;
    }
}
@media (max-width: 768px) {
    .story-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    .story-stat {
        flex: 1;
        min-width: 80px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .timeline {
        padding-left: 40px;
    }
    .timeline::before {
        left: 10px;
    }
    .timeline-marker {
        left: -42px;
        width: 20px;
        height: 20px;
    }
    .timeline-content {
        padding: 20px;
    }
    .floating-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .floating-card {
        position: static;
        animation: none !important;
    }
    .why-image {
        height: auto;
    }
}
.team-section {
    padding: 100px 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}
.team-card {
    perspective: 1000px;
}
.team-card-inner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}
.team-card:hover .team-card-inner {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
.team-photo {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.photo-placeholder {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.4);
}
.team-social {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    transition: all 0.4s ease;
}
.team-card:hover .team-social {
    bottom: 20px;
}
.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.team-social a:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
}
.team-info {
    padding: 30px;
    text-align: center;
}
.team-info h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.team-role {
    display: inline-block;
    background: var(--primary-gradient);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 15px;
}
.team-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.team-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.team-skills span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}
.team-culture {
    background: rgba(255, 255, 255, 0.02);
}
.culture-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.culture-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.culture-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.culture-stat {
    text-align: center;
}
.culture-stat i {
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}
.culture-stat span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}
.culture-stat p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}
.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.culture-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.culture-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
}
.culture-item i {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}
.culture-item h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}
.join-team {
    padding: 60px 0;
}
.join-banner {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.join-content h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}
.join-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .culture-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .culture-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    .culture-grid {
        grid-template-columns: 1fr;
    }
    .join-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    .team-social {
        bottom: 20px;
    }
}
.contact-section {
    padding: 80px 0 120px;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-intro h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}
.contact-intro p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
.config-addon-item.disabled {
    opacity: 0.45;
    filter: grayscale(60%);
    pointer-events: none;
}
.config-addon-item.disabled .addon-checkbox {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.06);
}
.config-addon-category.hidden {
    display: none !important;
}
.config-addon-item.hidden-item {
    display: none !important;
}
    padding: 25px;
    transition: all 0.3s ease;
}
.contact-card:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(5px);
}
.contact-card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-card-icon i {
    font-size: 1.3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contact-card-content h4 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 5px;
}
.contact-card-content a,
.contact-card-content p {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-card-content a:hover {
    color: #667eea;
}
.contact-social h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-3px);
}
.contact-form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}
.contact-form-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.contact-form-card > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 35px;
}
.btn-full {
    width: 100%;
    justify-content: center;
}
.form-success-message {
    text-align: center;
    padding: 40px 20px;
}
.form-success-message .success-icon {
    font-size: 3.5rem;
    color: #4ecdc4;
    margin-bottom: 20px;
}
.form-success-message h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.form-success-message p {
    color: rgba(255, 255, 255, 0.7);
}
.map-section {
    padding: 60px 0;
}
.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
}
.map-placeholder {
    height: 350px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 30px 30px;
}
.map-overlay {
    text-align: center;
    position: relative;
    z-index: 1;
}
.map-overlay i {
    font-size: 4rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}
.map-overlay h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.map-overlay p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
}
.contact-faq {
    background: rgba(255, 255, 255, 0.02);
}
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
@media (max-width: 768px) {
    .contact-form-card {
        padding: 30px 25px;
    }
    .contact-intro h2 {
        font-size: 1.8rem;
    }
    .contact-card {
        padding: 20px;
    }
    .map-placeholder {
        height: 250px;
    }
    .social-links {
        flex-wrap: wrap;
    }
}
.custom-cursor,
.cursor-dot {
    display: none;
}
@media (hover: hover) and (pointer: fine) {
    .custom-cursor {
        display: block;
        position: fixed;
        width: 40px;
        height: 40px;
        border: 2px solid rgba(102, 126, 234, 0.5);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, border-color 0.2s, background 0.2s;
    }
    .cursor-dot {
        display: block;
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--primary-gradient);
        border-radius: 50%;
        pointer-events: none;
        z-index: 100000;
        transform: translate(-50%, -50%);
        transition: width 0.15s, height 0.15s, background 0.2s;
    }
    .custom-cursor.hover {
        width: 60px;
        height: 60px;
        border-color: rgba(102, 126, 234, 0.8);
        background: rgba(102, 126, 234, 0.1);
    }
    .cursor-dot.hover {
        width: 12px;
        height: 12px;
    }
    body.show-theme {
        cursor: none;
    }
    body.show-theme a,
    body.show-theme button,
    body.show-theme input,
    body.show-theme select,
    body.show-theme textarea {
        cursor: none;
    }
}
.nav-show {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
.logo-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.nav-menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}
.nav-menu li a.active {
    color: #fff;
    background: rgba(102, 126, 234, 0.2);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: right 0.4s ease;
        z-index: 1000;
        padding: 80px 40px;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu li a {
        font-size: 1.3rem;
        padding: 15px 20px;
    }
    .nav-show {
        padding: 15px 0;
    }
}
.nav-show.scrolled {
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}
.portfolio-item.reveal-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
.portfolio-item.reveal-up.revealed {
    opacity: 1 !important;
    transform: none !important;
}
.portfolio-grid.is-animating .portfolio-item {
    opacity: 0 !important;
    transform: translateY(18px) !important;
    transition: none !important;
}
.portfolio-grid.is-animating.is-animating-play .portfolio-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.45s ease, transform 0.45s ease !important;
}
.portfolio-grid { visibility: hidden; }
.portfolio-grid.js-ready { visibility: visible; }
.portfolio-grid.hold-items .portfolio-item { display: none !important; }
.portfolio-grid.is-animating.is-animating-play .portfolio-item.pos-1 { transition-delay: 0s !important; }
.portfolio-grid.is-animating.is-animating-play .portfolio-item.pos-2 { transition-delay: 0.08s !important; }
.portfolio-grid.is-animating.is-animating-play .portfolio-item.pos-3 { transition-delay: 0.16s !important; }
.portfolio-grid.is-animating.is-animating-play .portfolio-item.pos-4 { transition-delay: 0.24s !important; }
.portfolio-grid.is-animating.is-animating-play .portfolio-item.pos-5 { transition-delay: 0.32s !important; }
.portfolio-grid.is-animating.is-animating-play .portfolio-item.pos-6 { transition-delay: 0.40s !important; }
.portfolio-grid.layout-web.is-animating.is-animating-play .portfolio-item.pos-2 { transition-delay: 0s !important; }
.portfolio-grid.layout-web.is-animating.is-animating-play .portfolio-item.pos-3 { transition-delay: 0.08s !important; }
.portfolio-grid.layout-web.is-animating.is-animating-play .portfolio-item.pos-4 { transition-delay: 0.16s !important; }
.portfolio-grid.layout-web.is-animating.is-animating-play .portfolio-item.pos-1 { transition-delay: 0.24s !important; }
.portfolio-grid.layout-web.is-animating.is-animating-play .portfolio-item.pos-5 { transition-delay: 0.32s !important; }
.portfolio-grid.layout-web.is-animating.is-animating-play .portfolio-item.pos-6 { transition-delay: 0.40s !important; }
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.portfolio-grid.layout-design.is-animating.is-animating-play .portfolio-item.pos-2 { transition-delay: 0s !important; }
.portfolio-grid.layout-design.is-animating.is-animating-play .portfolio-item.pos-3 { transition-delay: 0.08s !important; }
.portfolio-grid.layout-design.is-animating.is-animating-play .portfolio-item.pos-1 { transition-delay: 0.16s !important; }
.portfolio-grid.layout-design.is-animating.is-animating-play .portfolio-item.pos-4 { transition-delay: 0.24s !important; }
.portfolio-grid.layout-design.is-animating.is-animating-play .portfolio-item.pos-5 { transition-delay: 0.32s !important; }
.portfolio-grid.layout-design.is-animating.is-animating-play .portfolio-item.pos-6 { transition-delay: 0.40s !important; }
.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}
::selection {
    background: rgba(58, 70, 124, 0.5);
    color: #fff;
}
::-moz-selection {
    background: rgba(58, 70, 124, 0.5);
    color: #fff;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0a0a14;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}
.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.team-intro-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}
.team-grid-show {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}
.team-card-show {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.team-card-show:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
.team-card-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.team-avatar {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-avatar svg {
    color: rgba(255, 255, 255, 0.4);
}
.team-social-links {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    transition: all 0.4s ease;
}
.team-card-show:hover .team-social-links {
    bottom: 20px;
}
.team-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}
.team-social-links a:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
}
.team-card-info {
    padding: 30px;
    text-align: center;
}
.team-card-info h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.team-card-role {
    display: inline-block;
    background: var(--primary-gradient);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 15px;
}
.team-card-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}
.values-grid-show {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.value-card-show {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}
.value-card-show:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3);
}
.value-icon-show {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.value-icon-show svg {
    color: #667eea;
}
.value-card-show h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.value-card-show p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}
.stats-grid-show {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-card-show {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}
.stat-card-show:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.3);
}
.stat-number-show {
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}
.stat-card-show span:last-child {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}
.contact-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}
.contact-info-card:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
}
.contact-icon-show {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon-show svg {
    color: #667eea;
}
.contact-info-content h4 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
}
.contact-info-content a,
.contact-info-content p {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info-content a:hover {
    color: #667eea;
}
.contact-form-show {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}
.contact-form-show::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}
.contact-form-show h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.contact-form-show > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 35px;
}
.form-grid-show {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.form-group-full {
    grid-column: 1 / -1;
}
.faq-grid-show {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.faq-item-show {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}
.faq-item-show:hover {
    border-color: rgba(102, 126, 234, 0.3);
}
.faq-item-show h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.faq-item-show p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}
@media (max-width: 1024px) {
    .team-grid-show {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid-show {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid-show {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-grid-show {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .team-grid-show {
        grid-template-columns: 1fr;
    }
    .values-grid-show {
        grid-template-columns: 1fr;
    }
    .stats-grid-show {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .form-grid-show {
        grid-template-columns: 1fr;
    }
    .contact-form-show {
        padding: 30px;
    }
    .stat-number-show {
        font-size: 2.5rem;
    }
}
@media (max-width: 480px) {
    .stats-grid-show {
        grid-template-columns: 1fr;
    }
    .team-intro-text {
        font-size: 1.05rem;
    }
}
.contact-page {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.contact-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.contact-hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.contact-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}
.contact-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.2) 100%);
    top: -150px;
    right: -100px;
}
.contact-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(249, 158, 11, 0.15) 100%);
    bottom: -100px;
    left: -50px;
}
.contact-shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(102, 126, 234, 0.15) 100%);
    top: 50%;
    left: 30%;
    transform: translateY(-50%);
}
.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.contact-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    color: #667eea;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #1e293b;
    margin: 0 0 20px;
}
.contact-hero-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contact-hero-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
}
.contact-main {
    padding: 80px 0 100px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-info-side {
    position: sticky;
    top: 120px;
}
.contact-intro {
    margin-bottom: 40px;
}
.contact-intro h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px;
}
.contact-intro p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.contact-info-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.12);
    transform: translateX(4px);
}
.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}
.contact-info-content h3 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    margin: 0 0 4px;
}
.contact-info-content a,
.contact-info-content p {
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
    transition: color 0.3s ease;
}
.contact-info-content a:hover {
    color: #667eea;
}
.contact-social {
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}
.contact-social h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    margin: 0 0 16px;
}
.contact-social-links {
    display: flex;
    gap: 12px;
}
.contact-social-link {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
}
.contact-social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}
.contact-form-card-new {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}
.contact-form-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.contact-form-header {
    margin-bottom: 32px;
}
.contact-form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
}
.contact-form-header p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}
.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: #1e293b;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}
.form-group textarea {
    resize: vertical;
    min-height: 140px;
}
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}
.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.35);
}
.contact-submit-btn:active {
    transform: translateY(-1px);
}
.contact-success {
    text-align: center;
    padding: 40px 20px;
}
.contact-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}
.contact-success h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
}
.contact-success p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}
.contact-faq-section {
    padding: 80px 0;
    background: #f8fafc;
}
.contact-faq-header {
    text-align: center;
    margin-bottom: 48px;
}
.contact-faq-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 12px;
}
.contact-faq-header p {
    font-size: 1.05rem;
    color: #64748b;
    margin: 0;
}
.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.contact-faq-item {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.contact-faq-item:hover {
    border-color: #667eea;
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.1);
    transform: translateY(-4px);
}
.contact-faq-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    margin-bottom: 20px;
}
.contact-faq-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px;
}
.contact-faq-item p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}
.contact-cta {
    padding: 80px 0;
    background: white;
}
.contact-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.contact-cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 12px;
}
.contact-cta-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0 0 32px;
}
.contact-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.contact-cta-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}
.contact-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}
.contact-cta-secondary {
    background: #f1f5f9;
    color: #475569;
}
.contact-cta-secondary:hover {
    background: #e2e8f0;
    color: #1e293b;
}
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-info-side {
        position: static;
    }
    .contact-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .contact-hero {
        padding: 140px 0 60px;
    }
    .contact-main {
        padding: 60px 0 80px;
    }
    .contact-form-card-new {
        padding: 32px 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-faq-grid {
        grid-template-columns: 1fr;
    }
    .contact-faq-section {
        padding: 60px 0;
    }
    .contact-cta {
        padding: 60px 0;
    }
}
@media (max-width: 480px) {
    .contact-info-card {
        padding: 16px 20px;
    }
    .contact-social-links {
        flex-wrap: wrap;
    }
    .contact-cta-buttons {
        flex-direction: column;
    }
    .contact-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 32px;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    a, button {
        min-height: 44px;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}
@media (max-width: 1024px) {
    .nav-links {
        gap: 24px;
    }
    .nav-cta {
        padding: 10px 18px;
        font-size: 13px;
    }
}
@media (max-width: 900px) {
    .nav-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 32px;
        gap: 24px;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 99;
    }
    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
    }
    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        padding: 12px 24px;
    }
}
@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }
    .logo-img {
        width: 36px;
        height: 36px;
    }
    .mobile-menu-btn span {
        width: 24px;
    }
}
@media (max-width: 1024px) {
    .hero-show-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    .hero-show-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    .hero-show-visual {
        order: -1;
        transform: scale(0.9);
    }
}
@media (max-width: 768px) {
    .hero-show {
        padding: 120px 0 60px;
        min-height: auto;
    }
    .hero-show-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    .hero-show-desc {
        font-size: 1rem;
    }
    .hero-card-stack {
        width: 260px;
        height: 320px;
        transform: scale(0.85);
    }
    .hero-tag {
        font-size: 10px;
        padding: 6px 12px 6px 8px;
    }
}
@media (max-width: 480px) {
    .hero-show {
        padding: 100px 0 50px;
    }
    .hero-show-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    .hero-show-desc {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }
    .hero-show-actions {
        flex-direction: column;
        gap: 12px;
    }
    .btn-show {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    .hero-card-stack {
        transform: scale(0.7);
        margin: -30px 0;
    }
    .scroll-cue {
        display: none;
    }
}
@media (max-width: 1024px) {
    .service-showcase-card {
        grid-template-columns: 50px 1fr auto;
        gap: 16px;
        padding: 20px 24px;
    }
    .service-showcase-icon {
        display: none;
    }
    .service-showcase-number {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .services-showcase {
        gap: 12px;
    }
    .service-showcase-card {
        grid-template-columns: 1fr auto;
        gap: 16px;
        padding: 18px 20px;
    }
    .service-showcase-number {
        display: none;
    }
    .service-showcase-content h3 {
        font-size: 1.1rem;
    }
    .service-showcase-content p {
        font-size: 0.85rem;
    }
    .service-showcase-link {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 480px) {
    .service-showcase-card {
        padding: 16px;
    }
    .service-showcase-content h3 {
        font-size: 1rem;
    }
    .service-showcase-content p {
        display: none;
    }
}
@media (max-width: 768px) {
    .stats-show {
        padding: 50px 0;
    }
    .stats-show-grid {
        flex-direction: column;
        gap: 30px;
    }
    .stat-show-divider {
        display: none;
    }
    .stat-show-number {
        font-size: 2.5rem;
    }
}
@media (max-width: 480px) {
    .stats-show {
        padding: 40px 0;
    }
    .stat-show-number {
        font-size: 2rem;
    }
    .stat-show-label {
        font-size: 0.8rem;
    }
}
@media (max-width: 1024px) {
    .work-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .work-preview-large {
        grid-column: span 2;
    }
}
@media (max-width: 768px) {
    .work-preview-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .work-preview-large {
        grid-column: span 1;
    }
    .work-preview-info h3 {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .work-preview-card {
        border-radius: 16px;
    }
    .work-preview-info {
        padding: 40px 16px 16px;
    }
    .work-preview-tag {
        font-size: 10px;
        padding: 3px 10px;
    }
}
@media (max-width: 1024px) {
    .process-show-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 768px) {
    .process-show-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .process-show-step {
        padding: 24px;
    }
    .process-show-number {
        font-size: 2rem;
        margin-bottom: 14px;
    }
}
@media (max-width: 480px) {
    .process-show-step {
        padding: 20px;
        border-radius: 14px;
    }
    .process-show-content h3 {
        font-size: 1rem;
    }
    .process-show-content p {
        font-size: 0.85rem;
    }
}
@media (max-width: 900px) {
    .cta-show-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
        gap: 28px;
    }
    .cta-show-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-show-buttons .btn-show {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .cta-show-banner {
        padding: 32px 20px;
        border-radius: 20px;
    }
    .cta-show-banner .cta-show-content h2 {
        font-size: 1.5rem;
    }
    .cta-show-banner .cta-show-content p {
        font-size: 0.95rem;
    }
}
@media (max-width: 1024px) {
    .footer-show-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-show-links {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .footer-show {
        padding: 60px 0 30px;
    }
    .footer-show-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .footer-show-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .footer-track-btn {
        order: -1;
    }
}
@media (max-width: 480px) {
    .footer-show {
        padding: 50px 0 24px;
    }
    .footer-show-links {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .footer-show-col h4 {
        font-size: 0.8rem;
        margin-bottom: 14px;
    }
    .footer-show-col ul {
        gap: 10px;
    }
    .footer-show-col a {
        font-size: 0.9rem;
    }
    .footer-show-brand p {
        font-size: 0.85rem;
        max-width: 100%;
        text-align: center;
    }
    .footer-track-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}
@media (max-width: 1024px) {
    .portfolio-filters {
        flex-wrap: wrap;
        justify-content: center;
    }
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}
@media (max-width: 768px) {
    .portfolio-filters {
        gap: 8px;
    }
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .portfolio-grid {
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        border-radius: 8px;
    }
    .portfolio-item {
        aspect-ratio: 4/3;
    }
    .portfolio-title {
        font-size: 1rem;
    }
    .portfolio-category {
        font-size: 0.75rem;
    }
}
@media (max-width: 1024px) {
    .pricing-show-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .pricing-show-card.featured {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
        transform: none;
    }
}
@media (max-width: 768px) {
    .pricing-show-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pricing-show-card.featured {
        grid-column: span 1;
        max-width: 100%;
    }
    .pricing-show-card {
        padding: 28px 24px;
    }
    .pricing-show-amount {
        font-size: 2.5rem;
    }
}
@media (max-width: 480px) {
    .pricing-show-card {
        padding: 24px 20px;
        border-radius: 18px;
    }
    .pricing-show-amount {
        font-size: 2rem;
    }
    .pricing-show-features li {
        font-size: 0.85rem;
        padding: 8px 0;
    }
}
@media (max-width: 1100px) {
    .configurator-v2 {
        grid-template-columns: 1fr 340px;
        gap: 30px;
    }
}
@media (max-width: 900px) {
    .configurator-v2 {
        grid-template-columns: 1fr;
    }
    .config-v2-summary {
        position: static;
        order: -1;
    }
    .config-v2-types {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .config-v2-step {
        padding: 24px 18px;
        border-radius: 18px;
    }
    .config-v2-types {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .config-v2-type-inner {
        flex-direction: row;
        min-height: auto;
        padding: 14px 16px;
        gap: 14px;
        text-align: left;
        align-items: center;
    }
    .config-v2-type-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .config-v2-type-info {
        flex: 1;
        align-items: flex-start;
    }
    .config-v2-type-price {
        margin-top: 0;
    }
    .config-v2-counter {
        gap: 16px;
    }
    .config-v2-counter-btn {
        width: 44px;
        height: 44px;
    }
    .config-v2-counter-value {
        font-size: 2.2rem;
        min-width: 60px;
    }
    .config-v2-addons-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .config-v2-step-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .config-v2-step-text h3 {
        font-size: 1.1rem;
    }
    .summary-card {
        padding: 20px 16px;
        border-radius: 16px;
    }
    .summary-price-amount {
        font-size: 1.8rem;
    }
}
@media (max-width: 1024px) {
    .team-members-list {
        gap: 28px;
    }
    .member-card-content {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .team-hero {
        min-height: 70vh;
    }
    .team-hero-title {
        font-size: 2rem;
    }
    .team-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}
@media (max-width: 480px) {
    .team-hero {
        min-height: 60vh;
    }
    .team-hero-title {
        font-size: 1.6rem;
    }
    .team-values-grid {
        grid-template-columns: 1fr;
    }
    .team-value-card {
        padding: 24px 18px;
    }
    .member-info-section {
        padding: 20px 16px;
    }
    .member-name {
        font-size: 1.2rem;
    }
    .skill-tags {
        gap: 6px;
    }
    .skill-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
@media (max-width: 1100px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .story-visual {
        order: -1;
    }
}
@media (max-width: 768px) {
    .about-story {
        padding: 70px 0;
    }
    .story-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    .story-stat .stat-number {
        font-size: 2rem;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .about-story {
        padding: 50px 0;
    }
    .story-text {
        font-size: 1rem;
    }
    .visual-card {
        padding: 32px 24px;
    }
    .story-stats {
        gap: 24px;
        margin-top: 28px;
        padding-top: 28px;
    }
    .story-stat .stat-number {
        font-size: 1.8rem;
    }
}
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info-side {
        order: -1;
    }
}
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 50px;
    }
    .contact-hero-title {
        font-size: 2rem;
    }
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    .contact-form-card-new {
        padding: 28px 20px;
        border-radius: 18px;
    }
}
@media (max-width: 480px) {
    .contact-hero {
        padding: 100px 0 40px;
    }
    .contact-hero-title {
        font-size: 1.6rem;
    }
    .contact-form-card-new {
        padding: 24px 16px;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 16px;
        font-size: 15px;
    }
    .contact-submit-btn {
        padding: 16px 24px;
    }
}
@media (max-width: 1100px) {
    .commander-content {
        grid-template-columns: 1fr;
    }
    .commander-summary {
        position: static;
        order: -1;
    }
}
@media (max-width: 768px) {
    .commander-hero {
        padding: 120px 0 40px;
    }
    .commander-hero-title {
        font-size: 1.8rem;
    }
    .commander-progress-bar .progress-step-text {
        display: none;
    }
    .form-section {
        padding: 24px 18px;
        margin-bottom: 20px;
    }
    .project-type-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .commander-hero {
        padding: 100px 0 30px;
    }
    .commander-hero-title {
        font-size: 1.5rem;
    }
    .form-section {
        padding: 20px 14px;
        border-radius: 16px;
    }
    .form-section-header h2 {
        font-size: 1rem;
    }
    .design-style-grid {
        grid-template-columns: 1fr;
    }
    .commander-submit-btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
    .summary-guarantees {
        flex-direction: column;
    }
    .guarantee-item {
        border-bottom: 1px solid #f1f5f9;
        border-right: none;
    }
}
@media (max-width: 768px) {
    .section-show {
        padding: 60px 0;
    }
    .section-show-header {
        margin-bottom: 32px;
    }
    .section-show-title {
        font-size: 1.8rem;
    }
    .section-label {
        font-size: 11px;
    }
}
@media (max-width: 480px) {
    .section-show {
        padding: 48px 0;
    }
    .section-show-title {
        font-size: 1.5rem;
    }
    .section-desc {
        font-size: 0.95rem;
    }
}
@media (max-width: 768px) {
    .marquee-section {
        padding: 18px 0;
    }
    .marquee-content span {
        font-size: 12px;
        padding: 0 14px;
    }
}
@media (max-width: 480px) {
    .marquee-section {
        padding: 14px 0;
    }
    .marquee-content span {
        font-size: 11px;
        padding: 0 10px;
    }
}
@media (max-width: 768px) {
    .testimonial-show-wrapper {
        padding: 32px 20px;
        border-radius: 18px;
    }
    .testimonial-show-text {
        font-size: 1.1rem;
    }
    .testimonial-show-avatar {
        width: 52px;
        height: 52px;
    }
}
@media (max-width: 480px) {
    .testimonial-show-wrapper {
        padding: 24px 16px;
    }
    .testimonial-show-text {
        font-size: 1rem;
    }
    .testimonial-show-author {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
@media (max-width: 768px) {
    .back-to-top-show {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}
@media (max-width: 480px) {
    .back-to-top-show {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 768px) {
    .addon-show-list {
        grid-template-columns: 1fr;
    }
    .addon-show-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .faq-show-question {
        padding: 20px;
    }
    .faq-show-question h4 {
        font-size: 0.95rem;
    }
    .faq-show-answer p {
        padding: 0 20px 20px;
    }
}
@media (max-width: 480px) {
    .faq-show-item {
        border-radius: 12px;
    }
    .faq-show-question {
        padding: 16px;
    }
    .faq-show-question h4 {
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    .success-card {
        padding: 40px 24px;
    }
    .success-details-grid {
        grid-template-columns: 1fr;
    }
    .success-actions {
        flex-direction: column;
    }
    .success-actions .btn-show {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .success-card {
        padding: 32px 18px;
        border-radius: 18px;
    }
    .success-ticket .ticket-number {
        font-size: 1.2rem;
    }
    .success-next-steps {
        padding: 16px;
        flex-direction: column;
        gap: 16px;
    }
}
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
    .hero-illustration,
    .visual-card,
    .story-visual {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="url"],
    textarea,
    select {
        font-size: 16px; 
        padding: 14px 16px;
    }
    button,
    .btn,
    .btn-show {
        min-height: 48px;
    }
}
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    .footer-show {
        padding-bottom: max(40px, env(safe-area-inset-bottom));
    }
    .back-to-top-show {
        bottom: max(20px, calc(env(safe-area-inset-bottom) + 12px));
    }
}
@media print {
    .navbar,
    .footer-show,
    .back-to-top-show,
    .cursor-dot,
    .cursor-outline,
    .noise-overlay,
    .bg-shapes,
    .hero-bg-gradient {
        display: none !important;
    }
    body {
        background: white;
        color: black;
    }
    a {
        color: inherit;
        text-decoration: underline;
    }
    .container {
        max-width: 100%;
        padding: 0;
    }
}