/* ============================================
   WEB-TEAM.ORG Custom Styles for Divi Child
   ============================================ */

:root {
    --wt-primary: #6366f1;
    --wt-primary-dark: #4f46e5;
    --wt-secondary: #06b6d4;
    --wt-accent: #8b5cf6;
    --wt-dark: #0f172a;
    --wt-darker: #020617;
    --wt-light: #f8fafc;
    --wt-gray: #94a3b8;
    --wt-glass: rgba(255, 255, 255, 0.03);
    --wt-glass-border: rgba(255, 255, 255, 0.08);
}

.webteam-wrapper {
    font-family: 'Inter', sans-serif;
    background: var(--wt-darker);
    color: var(--wt-light);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.webteam-wrapper * { box-sizing: border-box; }

.webteam-wrapper .wt-bg-animation {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.webteam-wrapper .wt-bg-animation::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: repeating-linear-gradient(
        transparent, transparent 50px,
        rgba(99, 102, 241, 0.03) 50px,
        rgba(99, 102, 241, 0.03) 51px
    );
    animation: wt-grid-move 20s linear infinite;
}

@keyframes wt-grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.webteam-wrapper nav {
    position: fixed;
    top: 0; width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--wt-glass-border);
    transition: all 0.3s ease;
}

.webteam-wrapper nav.wt-scrolled {
    padding: 0.8rem 5%;
    background: rgba(2, 6, 23, 0.9);
}

.webteam-wrapper .wt-logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--wt-primary), var(--wt-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    letter-spacing: -1px;
}

.webteam-wrapper .wt-logo span { font-weight: 300; opacity: 0.8; }

.webteam-wrapper .wt-nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0; padding: 0;
}

.webteam-wrapper .wt-nav-links a {
    color: var(--wt-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.webteam-wrapper .wt-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--wt-primary), var(--wt-secondary));
    transition: width 0.3s;
}

.webteam-wrapper .wt-nav-links a:hover { color: var(--wt-light); }
.webteam-wrapper .wt-nav-links a:hover::after { width: 100%; }

.webteam-wrapper .wt-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--wt-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.webteam-wrapper .wt-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 5rem;
    position: relative;
    overflow: hidden;
}

.webteam-wrapper .wt-hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.webteam-wrapper .wt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: var(--wt-glass);
    border: 1px solid var(--wt-glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--wt-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.webteam-wrapper .wt-hero-badge::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--wt-secondary);
    border-radius: 50%;
    animation: wt-pulse 2s infinite;
}

@keyframes wt-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.webteam-wrapper .wt-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    color: var(--wt-light);
}

.webteam-wrapper .wt-gradient-text {
    background: linear-gradient(135deg, var(--wt-primary), var(--wt-secondary), var(--wt-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: wt-gradient-shift 5s ease infinite;
}

@keyframes wt-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.webteam-wrapper .wt-hero p {
    font-size: 1.25rem;
    color: var(--wt-gray);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.webteam-wrapper .wt-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.wt-btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    font-family: 'Inter', sans-serif;
}

.wt-btn-primary {
    background: linear-gradient(135deg, var(--wt-primary), var(--wt-primary-dark));
    color: #fff !important;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.wt-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
    color: #fff !important;
}

.wt-btn-secondary {
    background: var(--wt-glass);
    color: var(--wt-light) !important;
    border: 1px solid var(--wt-glass-border);
    backdrop-filter: blur(10px);
}

.wt-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    color: var(--wt-light) !important;
}

.webteam-wrapper .wt-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    flex-wrap: wrap;
}

.webteam-wrapper .wt-stat-item { text-align: center; }

.webteam-wrapper .wt-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--wt-light), var(--wt-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.webteam-wrapper .wt-stat-label {
    color: var(--wt-gray);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.webteam-wrapper .wt-floating-shapes {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    pointer-events: none;
    overflow: hidden;
}

.webteam-wrapper .wt-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: wt-float 10s ease-in-out infinite;
}

.webteam-wrapper .wt-shape-1 {
    width: 400px; height: 400px;
    background: var(--wt-primary);
    top: -100px; right: -100px;
}

.webteam-wrapper .wt-shape-2 {
    width: 300px; height: 300px;
    background: var(--wt-secondary);
    bottom: -50px; left: -50px;
    animation-delay: -5s;
}

@keyframes wt-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.webteam-wrapper .wt-section {
    padding: 6rem 5%;
    position: relative;
    z-index: 1;
}

.webteam-wrapper .wt-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.webteam-wrapper .wt-section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid var(--wt-glass-border);
    border-radius: 50px;
    color: var(--wt-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.webteam-wrapper .wt-section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: var(--wt-light);
}

.webteam-wrapper .wt-section-header p {
    color: var(--wt-gray);
    font-size: 1.1rem;
}

.webteam-wrapper .wt-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.webteam-wrapper .wt-service-card {
    background: var(--wt-glass);
    border: 1px solid var(--wt-glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.webteam-wrapper .wt-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.webteam-wrapper .wt-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.webteam-wrapper .wt-service-card:hover::before { opacity: 1; }

.webteam-wrapper .wt-service-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--wt-primary), var(--wt-secondary));
    position: relative;
    z-index: 1;
}

.webteam-wrapper .wt-service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--wt-light);
}

.webteam-wrapper .wt-service-card p {
    color: var(--wt-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.webteam-wrapper .wt-service-features {
    list-style: none;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
    padding: 0;
}

.webteam-wrapper .wt-service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--wt-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.webteam-wrapper .wt-service-features li::before {
    content: '✓';
    color: var(--wt-secondary);
    font-weight: 700;
}

.webteam-wrapper .wt-about {
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03), transparent);
}

.webteam-wrapper .wt-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.webteam-wrapper .wt-about-visual { position: relative; }

.webteam-wrapper .wt-glass-card {
    background: var(--wt-glass);
    border: 1px solid var(--wt-glass-border);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
}

.webteam-wrapper .wt-code-block {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--wt-secondary);
    line-height: 1.8;
}

.webteam-wrapper .wt-glow {
    position: absolute;
    width: 200px; height: 200px;
    background: var(--wt-primary);
    filter: blur(100px);
    opacity: 0.3;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.webteam-wrapper .wt-about-text h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--wt-light);
}

.webteam-wrapper .wt-about-text p {
    color: var(--wt-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.webteam-wrapper .wt-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.webteam-wrapper .wt-tech-tag {
    padding: 0.5rem 1rem;
    background: var(--wt-glass);
    border: 1px solid var(--wt-glass-border);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--wt-gray);
    transition: all 0.3s;
    cursor: default;
}

.webteam-wrapper .wt-tech-tag:hover {
    border-color: var(--wt-primary);
    color: var(--wt-light);
    transform: translateY(-2px);
}

.webteam-wrapper .wt-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.webteam-wrapper .wt-process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.webteam-wrapper .wt-process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--wt-primary);
    font-size: 1.5rem;
    opacity: 0.5;
}

.webteam-wrapper .wt-step-number {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wt-primary), var(--wt-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    position: relative;
    color: #fff;
}

.webteam-wrapper .wt-step-number::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--wt-primary);
    opacity: 0.3;
    animation: wt-ripple 2s infinite;
}

@keyframes wt-ripple {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.5); opacity: 0; }
}

.webteam-wrapper .wt-process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--wt-light);
}

.webteam-wrapper .wt-process-step p {
    color: var(--wt-gray);
    font-size: 0.9rem;
}

.webteam-wrapper .wt-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.webteam-wrapper .wt-portfolio-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.webteam-wrapper .wt-portfolio-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    display: block;
}

.webteam-wrapper .wt-portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.webteam-wrapper .wt-portfolio-item:hover img { transform: scale(1.1); }
.webteam-wrapper .wt-portfolio-item:hover .wt-portfolio-overlay { opacity: 1; }

.webteam-wrapper .wt-portfolio-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s;
    color: var(--wt-light);
}

.webteam-wrapper .wt-portfolio-overlay p {
    color: var(--wt-gray);
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.4s 0.1s;
}

.webteam-wrapper .wt-portfolio-item:hover .wt-portfolio-overlay h3,
.webteam-wrapper .wt-portfolio-item:hover .wt-portfolio-overlay p {
    transform: translateY(0);
}

.webteam-wrapper .wt-portfolio-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    transform: translateY(20px);
    transition: transform 0.4s 0.2s;
}

.webteam-wrapper .wt-portfolio-item:hover .wt-portfolio-tags { transform: translateY(0); }

.webteam-wrapper .wt-portfolio-tags span {
    padding: 0.3rem 0.8rem;
    background: var(--wt-glass);
    border: 1px solid var(--wt-glass-border);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--wt-secondary);
}

.webteam-wrapper .wt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.webteam-wrapper .wt-pricing-card {
    background: var(--wt-glass);
    border: 1px solid var(--wt-glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

.webteam-wrapper .wt-pricing-card.wt-featured {
    border-color: var(--wt-primary);
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.15);
}

.webteam-wrapper .wt-pricing-card.wt-featured::before {
    content: 'Najpopularnije';
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--wt-primary), var(--wt-secondary));
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.webteam-wrapper .wt-pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
}

.webteam-wrapper .wt-pricing-card.wt-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.webteam-wrapper .wt-pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--wt-glass-border);
}

.webteam-wrapper .wt-pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--wt-light);
}

.webteam-wrapper .wt-price {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--wt-light), var(--wt-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.webteam-wrapper .wt-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--wt-gray);
}

.webteam-wrapper .wt-pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.webteam-wrapper .wt-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0;
    color: var(--wt-gray);
    font-size: 0.95rem;
}

.webteam-wrapper .wt-pricing-features li.wt-included::before {
    content: '✓';
    color: var(--wt-secondary);
    font-weight: 700;
    width: 20px;
    flex-shrink: 0;
}

.webteam-wrapper .wt-pricing-features li.wt-not-included { opacity: 0.4; }

.webteam-wrapper .wt-pricing-features li.wt-not-included::before {
    content: '×';
    color: var(--wt-gray);
    width: 20px;
    flex-shrink: 0;
}

.webteam-wrapper .wt-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.webteam-wrapper .wt-contact-info h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--wt-light);
}

.webteam-wrapper .wt-contact-info > p {
    color: var(--wt-gray);
    margin-bottom: 2rem;
}

.webteam-wrapper .wt-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.webteam-wrapper .wt-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.webteam-wrapper .wt-contact-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--wt-primary), var(--wt-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.webteam-wrapper .wt-contact-item div h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--wt-light);
}

.webteam-wrapper .wt-contact-item div p {
    color: var(--wt-gray);
    font-size: 0.9rem;
}

.webteam-wrapper .wt-contact-form {
    background: var(--wt-glass);
    border: 1px solid var(--wt-glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.webteam-wrapper .wt-form-group {
    margin-bottom: 1.5rem;
}

.webteam-wrapper .wt-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--wt-gray);
}

.webteam-wrapper .wt-form-group input,
.webteam-wrapper .wt-form-group textarea,
.webteam-wrapper .wt-form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--wt-glass-border);
    border-radius: 12px;
    color: var(--wt-light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.webteam-wrapper .wt-form-group input:focus,
.webteam-wrapper .wt-form-group textarea:focus,
.webteam-wrapper .wt-form-group select:focus {
    outline: none;
    border-color: var(--wt-primary);
    background: rgba(255, 255, 255, 0.05);
}

.webteam-wrapper .wt-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.webteam-wrapper .wt-form-group select option {
    background: var(--wt-dark);
    color: var(--wt-light);
}

.webteam-wrapper .wt-footer {
    background: var(--wt-darker);
    border-top: 1px solid var(--wt-glass-border);
    padding: 4rem 5% 2rem;
    position: relative;
    z-index: 1;
}

.webteam-wrapper .wt-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.webteam-wrapper .wt-footer-brand .wt-logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.webteam-wrapper .wt-footer-brand p {
    color: var(--wt-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.webteam-wrapper .wt-footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--wt-light);
}

.webteam-wrapper .wt-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.webteam-wrapper .wt-footer-links li { margin-bottom: 0.8rem; }

.webteam-wrapper .wt-footer-links a {
    color: var(--wt-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.webteam-wrapper .wt-footer-links a:hover { color: var(--wt-primary); }

.webteam-wrapper .wt-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--wt-glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.webteam-wrapper .wt-footer-bottom p {
    color: var(--wt-gray);
    font-size: 0.9rem;
}

.webteam-wrapper .wt-social-links {
    display: flex;
    gap: 1rem;
}

.webteam-wrapper .wt-social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--wt-glass);
    border: 1px solid var(--wt-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wt-gray);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.webteam-wrapper .wt-social-links a:hover {
    background: var(--wt-primary);
    color: #fff;
    border-color: var(--wt-primary);
    transform: translateY(-3px);
}

.webteam-wrapper .wt-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.webteam-wrapper .wt-reveal.wt-active {
    opacity: 1;
    transform: translateY(0);
}

.webteam-wrapper ::-webkit-scrollbar {
    width: 8px;
}

.webteam-wrapper ::-webkit-scrollbar-track {
    background: var(--wt-darker);
}

.webteam-wrapper ::-webkit-scrollbar-thumb {
    background: var(--wt-primary);
    border-radius: 4px;
}

.webteam-wrapper ::-webkit-scrollbar-thumb:hover {
    background: var(--wt-primary-dark);
}

.webteam-wrapper ::selection {
    background: rgba(99, 102, 241, 0.3);
    color: var(--wt-light);
}

@media (max-width: 968px) {
    .webteam-wrapper .wt-nav-links { display: none; }
    .webteam-wrapper .wt-mobile-menu-btn { display: block; }
    .webteam-wrapper .wt-about-content,
    .webteam-wrapper .wt-contact-content { grid-template-columns: 1fr; }
    .webteam-wrapper .wt-footer-content { grid-template-columns: 1fr 1fr; }
    .webteam-wrapper .wt-process-step:not(:last-child)::after { display: none; }
    .webteam-wrapper .wt-pricing-card.wt-featured { transform: scale(1); }
    .webteam-wrapper .wt-pricing-card.wt-featured:hover { transform: scale(1) translateY(-10px); }
}

@media (max-width: 640px) {
    .webteam-wrapper .wt-hero-stats { gap: 2rem; }
    .webteam-wrapper .wt-footer-content { grid-template-columns: 1fr; }
    .webteam-wrapper .wt-portfolio-grid { grid-template-columns: 1fr; }
    .webteam-wrapper .wt-hero { padding: 6rem 5% 3rem; }
}
