.elementor-15 .elementor-element.elementor-element-bb25a43{--display:flex;}.elementor-15 .elementor-element.elementor-element-83f3249{padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS *//* ============================================
   WebSEOX Portfolio — Elementor Custom CSS
   Paste this into Elementor → Page Settings → Custom CSS
   ============================================ */

/* CSS Variables */
:root {
    --wsox-orange: #FF7B0B;
    --wsox-orange-hover: #e66d00;
    --wsox-blue: #4595EC;
    --wsox-dark: #192A3D;
    --wsox-darker: #101D2B;
    --wsox-text: #3A4F66;
    --wsox-text-light: #6b7d94;
    --wsox-border: #E1E8ED;
    --wsox-bg-light: #FAFBFC;
    --wsox-bg-warm: #F9F8F2;
    --wsox-bg-tech: #F5F0FF;
    --wsox-bg-grey: #F2F5F7;
    --wsox-white: #FFFFFF;
    --wsox-shadow-sm: 0 1px 3px rgba(25,42,61,0.08);
    --wsox-shadow-md: 0 4px 20px rgba(25,42,61,0.12);
    --wsox-shadow-lg: 0 8px 40px rgba(25,42,61,0.15);
    --wsox-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
html { scroll-behavior: smooth; }
body { font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }

/* Typography */
.wsox-eyebrow {
    font-family: "Space Grotesk", "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 13px; font-weight: 600; line-height: 1.3;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--wsox-orange); display: inline-block; margin-bottom: 16px;
}
.wsox-eyebrow.wsox-blue { color: var(--wsox-blue); }

/* Container */
.wsox-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Section base */
.wsox-section { padding: 120px 0; }
.wsox-section-title { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.wsox-section-title h2 { margin-bottom: 16px; }
.wsox-section-title p { margin: 0 auto; color: var(--wsox-text-light); max-width: 680px; }

/* Buttons */
.wsox-btn {
    font-family: "Inter", sans-serif; font-size: 16px; font-weight: 600;
    line-height: 1; letter-spacing: -0.005em; padding: 16px 32px;
    border: none; border-radius: 4px; cursor: pointer; transition: var(--wsox-transition);
    display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.wsox-btn-primary { background: var(--wsox-orange); color: var(--wsox-dark); }
.wsox-btn-primary:hover { background: var(--wsox-orange-hover); transform: translateY(-2px); box-shadow: var(--wsox-shadow-md); text-decoration: none; }
.wsox-btn-secondary { background: transparent; color: var(--wsox-white); border: 1px solid rgba(255,255,255,0.3); }
.wsox-btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); text-decoration: none; }
.wsox-btn-dark { background: var(--wsox-dark); color: var(--wsox-white); }
.wsox-btn-dark:hover { background: var(--wsox-darker); transform: translateY(-2px); text-decoration: none; }

/* ============================================
   HEADER
   ============================================ */
.wsox-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--wsox-white); border-bottom: 1px solid var(--wsox-border);
    transition: var(--wsox-transition);
}
.wsox-header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.wsox-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.wsox-logo:hover { text-decoration: none; }
.wsox-logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.wsox-logo-text { display: flex; flex-direction: column; }
.wsox-logo-name { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 20px; color: var(--wsox-dark); letter-spacing: -0.02em; line-height: 1.2; }
.wsox-logo-sub { font-family: "Inter", sans-serif; font-size: 11px; font-weight: 500; color: var(--wsox-text-light); letter-spacing: 0.02em; }
.wsox-nav { display: flex; align-items: center; gap: 32px; }
.wsox-nav a { font-family: "Inter", sans-serif; font-weight: 600; font-size: 15px; color: var(--wsox-text); text-decoration: none; transition: var(--wsox-transition); position: relative; }
.wsox-nav a:hover { color: var(--wsox-dark); text-decoration: none; }
.wsox-nav a:not(.wsox-btn)::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--wsox-orange); transition: var(--wsox-transition); }
.wsox-nav a:not(.wsox-btn):hover::after { width: 100%; }
.wsox-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--wsox-dark); }
.wsox-mobile-menu {
    position: fixed; top: 72px; left: 0; right: 0; background: var(--wsox-white);
    border-bottom: 1px solid var(--wsox-border); padding: 24px;
    transform: translateY(-100%); opacity: 0; transition: var(--wsox-transition); z-index: 999;
}
.wsox-mobile-menu.active { transform: translateY(0); opacity: 1; }
.wsox-mobile-menu a { display: block; padding: 12px 0; font-weight: 600; color: var(--wsox-dark); border-bottom: 1px solid var(--wsox-border); text-decoration: none; }
.wsox-mobile-menu a:last-child { border-bottom: none; }
.wsox-mobile-menu .wsox-btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ============================================
   HERO
   ============================================ */
.wsox-hero {
    background: var(--wsox-dark); min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 80px; position: relative; overflow: hidden; margin-top: 72px;
}
.wsox-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(69,149,236,0.03) 100%),
        radial-gradient(circle at 80% 20%, rgba(69,149,236,0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255,123,11,0.05) 0%, transparent 40%);
    pointer-events: none;
}
.wsox-hero-grid {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(69,149,236,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(69,149,236,0.03) 1px, transparent 1px);
    background-size: 60px 60px; pointer-events: none;
}
.wsox-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.wsox-hero-content { color: var(--wsox-white); }
.wsox-hero-content h1 { color: var(--wsox-white); margin-bottom: 24px; }
.wsox-hero-content p { color: #E1E8ED; font-size: 18px; line-height: 1.7; margin-bottom: 32px; max-width: 540px; }
.wsox-hero-buttons { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.wsox-hero-trust { display: flex; align-items: center; gap: 16px; font-size: 14px; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.wsox-hero-trust span { display: flex; align-items: center; gap: 6px; }
.wsox-dot { width: 4px; height: 4px; background: var(--wsox-orange); border-radius: 50%; }

.wsox-hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.wsox-hero-photo-wrap { position: relative; width: 380px; height: 480px; }
.wsox-hero-photo-box {
    width: 100%; height: 100%; border-radius: 16px; overflow: hidden;
    position: relative; z-index: 2; box-shadow: var(--wsox-shadow-lg);
}
.wsox-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wsox-hero-line { position: absolute; z-index: 1; }
.wsox-line-orange { width: 2px; height: 120px; background: linear-gradient(to bottom, var(--wsox-orange), transparent); top: -40px; left: 30px; }
.wsox-line-blue { width: 100px; height: 2px; background: linear-gradient(to right, transparent, var(--wsox-blue)); bottom: 60px; left: -50px; }

.wsox-tech-node {
    position: absolute; background: rgba(25,42,61,0.9); border: 1px solid rgba(69,149,236,0.3);
    padding: 8px 16px; border-radius: 20px; font-family: "Space Grotesk", sans-serif;
    font-size: 12px; font-weight: 600; color: var(--wsox-blue); z-index: 3;
    backdrop-filter: blur(8px); animation: wsoxFloat 6s ease-in-out infinite;
}
.wsox-tech-node:nth-of-type(3) { top: 10%; right: -20px; animation-delay: 0s; }
.wsox-tech-node:nth-of-type(4) { top: 35%; right: -40px; animation-delay: 1.5s; color: var(--wsox-orange); border-color: rgba(255,123,11,0.3); }
.wsox-tech-node:nth-of-type(5) { bottom: 25%; right: -10px; animation-delay: 3s; }
.wsox-tech-node:nth-of-type(6) { bottom: 10%; right: 30px; animation-delay: 4.5s; color: var(--wsox-orange); border-color: rgba(255,123,11,0.3); }

@keyframes wsoxFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============================================
   CREDIBILITY
   ============================================ */
.wsox-credibility { background: var(--wsox-white); padding: 60px 0; border-bottom: 1px solid var(--wsox-border); }
.wsox-credibility-inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; text-align: center; }
.wsox-cred-item { position: relative; padding-top: 20px; }
.wsox-cred-item::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 3px; background: var(--wsox-orange); border-radius: 2px; }
.wsox-cred-item:nth-child(even)::before { background: var(--wsox-blue); }
.wsox-cred-number { font-family: "Space Grotesk", sans-serif; font-size: 36px; font-weight: 700; color: var(--wsox-dark); line-height: 1; margin-bottom: 8px; }
.wsox-cred-label { font-size: 14px; color: var(--wsox-text); font-weight: 500; }

/* ============================================
   ABOUT
   ============================================ */
.wsox-about { background: var(--wsox-bg-light); padding: 120px 0; }
.wsox-about-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: start; }
.wsox-about-content h2 { margin-bottom: 24px; }
.wsox-lead { font-size: 20px; font-weight: 500; color: var(--wsox-dark); line-height: 1.5; margin-bottom: 24px; padding-left: 20px; border-left: 3px solid var(--wsox-blue); }
.wsox-advantages { list-style: none; margin-top: 32px; }
.wsox-advantages li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 16px; }
.wsox-advantages li::before {
    content: ''; width: 20px; height: 20px; min-width: 20px; background: var(--wsox-orange); border-radius: 50%; margin-top: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center; background-size: 12px;
}
.wsox-working-panel { background: var(--wsox-white); border: 1px solid var(--wsox-border); border-radius: 12px; padding: 40px; position: sticky; top: 100px; }
.wsox-working-panel h4 { margin-bottom: 24px; font-size: 18px; }
.wsox-working-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--wsox-border); font-size: 15px; }
.wsox-working-item:last-child { border-bottom: none; }
.wsox-wicon { width: 32px; height: 32px; background: var(--wsox-bg-grey); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; }

/* ============================================
   SERVICES
   ============================================ */
.wsox-services-intro { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.wsox-services-intro h2 { margin-bottom: 16px; }
.wsox-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wsox-service-card {
    background: var(--wsox-white); border: 1px solid var(--wsox-border); border-radius: 16px;
    padding: 40px 32px; transition: var(--wsox-transition); position: relative; overflow: hidden;
}
.wsox-service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--wsox-orange); transform: scaleX(0); transform-origin: left; transition: var(--wsox-transition); }
.wsox-service-card:nth-child(even)::before { background: var(--wsox-blue); }
.wsox-service-card:hover { transform: translateY(-4px); box-shadow: var(--wsox-shadow-md); border-color: var(--wsox-blue); }
.wsox-service-card:hover::before { transform: scaleX(1); }
.wsox-sicon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 24px; }
.wsox-service-card:nth-child(odd) .wsox-sicon { background: rgba(255,123,11,0.1); }
.wsox-service-card:nth-child(even) .wsox-sicon { background: rgba(69,149,236,0.1); }
.wsox-service-card h4 { margin-bottom: 12px; font-size: 20px; }
.wsox-service-card p { font-size: 15px; color: var(--wsox-text-light); line-height: 1.6; margin-bottom: 20px; }
.wsox-stags { display: flex; flex-wrap: wrap; gap: 8px; }
.wsox-stags span { font-size: 12px; font-weight: 500; padding: 4px 12px; background: var(--wsox-bg-grey); border-radius: 20px; color: var(--wsox-text); }

/* ============================================
   WHY ME
   ============================================ */
.wsox-whyme { background: var(--wsox-bg-light); padding: 120px 0; }
.wsox-whyme-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.wsox-whyme-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.wsox-why-center { width: 200px; height: 200px; background: var(--wsox-dark); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--wsox-white); text-align: center; position: relative; z-index: 2; box-shadow: var(--wsox-shadow-lg); }
.wsox-why-label { font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--wsox-orange); margin-bottom: 8px; }
.wsox-why-value { font-family: "Space Grotesk", sans-serif; font-size: 18px; font-weight: 700; line-height: 1.2; }
.wsox-connector { position: absolute; height: 2px; background: linear-gradient(to right, var(--wsox-orange), var(--wsox-blue)); z-index: 1; }
.wsox-con-left { width: 100px; left: 0; top: 50%; }
.wsox-con-right { width: 100px; right: 0; top: 50%; }
.wsox-why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.wsox-why-card { background: var(--wsox-white); border: 1px solid var(--wsox-border); border-radius: 12px; padding: 32px; transition: var(--wsox-transition); }
.wsox-why-card:hover { border-color: var(--wsox-blue); transform: translateY(-2px); box-shadow: var(--wsox-shadow-sm); }
.wsox-why-card h4 { font-size: 18px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.wsox-wnum { width: 28px; height: 28px; background: var(--wsox-orange); color: var(--wsox-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-family: "Space Grotesk", sans-serif; font-weight: 700; flex-shrink: 0; }
.wsox-why-card p { font-size: 15px; color: var(--wsox-text-light); line-height: 1.6; margin: 0; }

/* ============================================
   PORTFOLIO
   ============================================ */
.wsox-portfolio-item { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 100px; }
.wsox-portfolio-item:last-child { margin-bottom: 0; }
.wsox-portfolio-item.wsox-reverse { direction: rtl; }
.wsox-portfolio-item.wsox-reverse > * { direction: ltr; }
.wsox-portfolio-img { position: relative; border-radius: 12px; overflow: hidden; box-shadow: var(--wsox-shadow-lg); }
.wsox-portfolio-img img { width: 100%; height: auto; display: block; transition: var(--wsox-transition); }
.wsox-portfolio-img:hover img { transform: scale(1.02); }
.wsox-browser-bar { height: 28px; background: #e2e8f0; display: flex; align-items: center; padding: 0 12px; gap: 6px; }
.wsox-bdot { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1; }
.wsox-pcat { display: inline-flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.wsox-pcat span { font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; }
.wsox-pcat span:first-child { background: rgba(255,123,11,0.1); color: var(--wsox-orange); }
.wsox-pcat span:last-child { background: rgba(69,149,236,0.1); color: var(--wsox-blue); }
.wsox-portfolio-content h3 { margin-bottom: 16px; }
.wsox-portfolio-content p { margin-bottom: 20px; color: var(--wsox-text-light); }
.wsox-pmeta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.wsox-pmeta span { font-size: 14px; color: var(--wsox-text-light); display: flex; align-items: center; gap: 6px; }
.wsox-presult { background: var(--wsox-bg-light); border-left: 3px solid var(--wsox-orange); padding: 16px 20px; border-radius: 0 8px 8px 0; margin-bottom: 24px; font-size: 15px; color: var(--wsox-text); }
.wsox-presult strong { color: var(--wsox-dark); }

/* ============================================
   INDUSTRIES
   ============================================ */
.wsox-industries { background: var(--wsox-bg-warm); padding: 120px 0; }
.wsox-industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.wsox-industry-card {
    background: var(--wsox-white); border: 1px solid var(--wsox-border); border-radius: 12px;
    padding: 32px 24px; text-align: center; transition: var(--wsox-transition); cursor: default;
}
.wsox-industry-card:hover { transform: translateY(-4px); box-shadow: var(--wsox-shadow-md); border-color: var(--wsox-blue); }
.wsox-industry-icon { font-size: 32px; margin-bottom: 16px; }
.wsox-industry-card h4 { font-size: 16px; margin-bottom: 8px; }
.wsox-industry-card p { font-size: 13px; color: var(--wsox-text-light); line-height: 1.5; margin: 0; }

/* ============================================
   SKILLS
   ============================================ */
.wsox-skills { background: var(--wsox-bg-tech); padding: 120px 0; }
.wsox-skills-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.wsox-skill-group h4 { font-size: 16px; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.wsox-sgicon { color: var(--wsox-blue); }
.wsox-skill-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.wsox-skill-tags span { font-size: 14px; font-weight: 500; padding: 8px 16px; background: var(--wsox-bg-grey); border-radius: 6px; color: var(--wsox-text); transition: var(--wsox-transition); cursor: default; }
.wsox-skill-tags span:hover { background: var(--wsox-white); box-shadow: var(--wsox-shadow-sm); }
.wsox-simportant { position: relative; padding-left: 18px !important; }
.wsox-simportant::before { content: ''; position: absolute; left: 6px; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; background: var(--wsox-orange); border-radius: 50%; }

/* ============================================
   PROCESS
   ============================================ */
.wsox-process { background: var(--wsox-bg-warm); padding: 120px 0; }
.wsox-process-steps { display: flex; justify-content: space-between; position: relative; max-width: 1000px; margin: 0 auto; }
.wsox-process-line { position: absolute; top: 30px; left: 60px; right: 60px; height: 2px; background: linear-gradient(to right, var(--wsox-orange), var(--wsox-blue)); z-index: 0; }
.wsox-process-step { text-align: center; position: relative; z-index: 1; width: 180px; }
.wsox-step-num { width: 60px; height: 60px; background: var(--wsox-orange); color: var(--wsox-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: "Space Grotesk", sans-serif; font-size: 22px; font-weight: 700; margin: 0 auto 20px; box-shadow: 0 4px 15px rgba(255,123,11,0.3); position: relative; }
.wsox-process-step:nth-child(even) .wsox-step-num { background: var(--wsox-blue); box-shadow: 0 4px 15px rgba(69,149,236,0.3); }
.wsox-step-num::after { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--wsox-orange); animation: wsoxPulse 2s ease-in-out infinite; }
.wsox-process-step:nth-child(even) .wsox-step-num::after { border-color: var(--wsox-blue); }
@keyframes wsoxPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.15); opacity: 0; } }
.wsox-process-step h4 { font-size: 18px; margin-bottom: 8px; }
.wsox-process-step p { font-size: 14px; color: var(--wsox-text-light); line-height: 1.5; margin: 0 auto; max-width: 160px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.wsox-testimonials { background: var(--wsox-dark); color: var(--wsox-white); padding: 120px 0; }
.wsox-testimonials .wsox-section-title h2, .wsox-testimonials .wsox-section-title p { color: var(--wsox-white); }
.wsox-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.wsox-testi-card { background: var(--wsox-white); border-radius: 12px; padding: 32px; color: var(--wsox-text); }
.wsox-stars { color: var(--wsox-orange); margin-bottom: 16px; font-size: 18px; letter-spacing: 2px; }
.wsox-testi-text { font-size: 15px; line-height: 1.7; margin-bottom: 20px; color: var(--wsox-text); }
.wsox-testi-author { display: flex; align-items: center; gap: 12px; }
.wsox-tavatar { width: 44px; height: 44px; border-radius: 50%; background: var(--wsox-bg-grey); display: flex; align-items: center; justify-content: center; font-family: "Space Grotesk", sans-serif; font-weight: 700; color: var(--wsox-dark); font-size: 16px; }
.wsox-tname { font-weight: 600; color: var(--wsox-dark); font-size: 15px; }
.wsox-tproj { font-size: 13px; color: var(--wsox-text-light); }
.wsox-upwork-panel { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.wsox-upwork-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.wsox-upwork-stat { text-align: center; }
.wsox-unum { font-family: "Space Grotesk", sans-serif; font-size: 32px; font-weight: 700; color: var(--wsox-orange); line-height: 1; }
.wsox-ulabel { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.wsox-upwork-badge { display: flex; align-items: center; gap: 12px; padding: 12px 24px; background: rgba(255,123,11,0.15); border-radius: 8px; color: var(--wsox-orange); font-weight: 600; font-size: 15px; }

/* ============================================
   ENGAGEMENT
   ============================================ */
.wsox-engagement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wsox-engage-card { background: var(--wsox-white); border: 1px solid var(--wsox-border); border-radius: 16px; padding: 40px 32px; text-align: center; transition: var(--wsox-transition); }
.wsox-engage-card:hover { border-color: var(--wsox-blue); transform: translateY(-4px); box-shadow: var(--wsox-shadow-md); }
.wsox-eicon { width: 64px; height: 64px; background: var(--wsox-bg-grey); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 28px; }
.wsox-engage-card h4 { margin-bottom: 12px; }
.wsox-engage-card p { font-size: 15px; color: var(--wsox-text-light); line-height: 1.6; margin: 0 auto 24px; max-width: 320px; }

/* ============================================
   FAQ
   ============================================ */
.wsox-faq { background: var(--wsox-bg-light); padding: 120px 0; }
.wsox-faq-list { max-width: 800px; margin: 0 auto; }
.wsox-faq-item { background: var(--wsox-white); border: 1px solid var(--wsox-border); border-radius: 12px; margin-bottom: 16px; overflow: hidden; transition: var(--wsox-transition); }
.wsox-faq-item:hover { border-color: var(--wsox-blue); }
.wsox-faq-q { padding: 24px 32px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; color: var(--wsox-dark); font-size: 16px; transition: var(--wsox-transition); }
.wsox-faq-q:hover { color: var(--wsox-blue); }
.wsox-faq-toggle { width: 28px; height: 28px; background: var(--wsox-bg-grey); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--wsox-transition); flex-shrink: 0; margin-left: 16px; font-size: 18px; }
.wsox-faq-item.active .wsox-faq-toggle { background: var(--wsox-orange); color: var(--wsox-white); transform: rotate(45deg); }
.wsox-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.wsox-faq-item.active .wsox-faq-a { max-height: 300px; padding: 0 32px 24px; }
.wsox-faq-a p { color: var(--wsox-text-light); font-size: 15px; line-height: 1.7; margin: 0; }

/* ============================================
   CONTACT
   ============================================ */
.wsox-contact { background: var(--wsox-dark); color: var(--wsox-white); padding: 120px 0; position: relative; overflow: hidden; }
.wsox-contact::before { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,123,11,0.15) 0%, transparent 70%); pointer-events: none; }
.wsox-contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 2; }
.wsox-contact-content h2 { color: var(--wsox-white); margin-bottom: 20px; }
.wsox-contact-content p { color: #E1E8ED; margin-bottom: 32px; }
.wsox-contact-methods { display: flex; flex-direction: column; gap: 16px; }
.wsox-cmethod { display: flex; align-items: center; gap: 12px; color: var(--wsox-white); font-size: 15px; transition: var(--wsox-transition); text-decoration: none; }
.wsox-cmethod:hover { color: var(--wsox-orange); text-decoration: none; }
.wsox-cicon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.wsox-contact-form-card { background: var(--wsox-white); border-radius: 16px; padding: 40px; color: var(--wsox-text); }
.wsox-fgroup { margin-bottom: 20px; }
.wsox-fgroup label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; color: var(--wsox-dark); }
.wsox-fgroup input, .wsox-fgroup select, .wsox-fgroup textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--wsox-border); border-radius: 8px; font-family: "Inter", sans-serif; font-size: 15px; color: var(--wsox-dark); transition: var(--wsox-transition); background: var(--wsox-bg-light); }
.wsox-fgroup input:focus, .wsox-fgroup select:focus, .wsox-fgroup textarea:focus { outline: none; border-color: var(--wsox-blue); box-shadow: 0 0 0 3px rgba(69,149,236,0.1); }
.wsox-fgroup textarea { resize: vertical; min-height: 120px; }
.wsox-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================
   FOOTER
   ============================================ */
.wsox-footer { background: var(--wsox-darker); color: rgba(255,255,255,0.6); padding: 60px 0 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.wsox-footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.wsox-footer-logo { width: 120px; height: auto; margin-bottom: 16px; }
.wsox-footer-brand p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.5); max-width: 280px; }
.wsox-footer-links h5 { color: var(--wsox-white); font-size: 14px; margin-bottom: 20px; letter-spacing: 0.04em; }
.wsox-footer-links a { display: block; color: rgba(255,255,255,0.5); font-size: 14px; padding: 6px 0; transition: var(--wsox-transition); text-decoration: none; }
.wsox-footer-links a:hover { color: var(--wsox-orange); text-decoration: none; }
.wsox-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 8px; }

/* ============================================
   ANIMATIONS
   ============================================ */
.wsox-fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.wsox-fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .wsox-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .wsox-hero-content p { margin-left: auto; margin-right: auto; }
    .wsox-hero-buttons { justify-content: center; }
    .wsox-hero-trust { justify-content: center; }
    .wsox-hero-visual { order: -1; margin-bottom: 40px; }
    .wsox-hero-photo-wrap { width: 300px; height: 380px; }
    .wsox-about-inner { grid-template-columns: 1fr; }
    .wsox-working-panel { position: static; }
    .wsox-whyme-inner { grid-template-columns: 1fr; }
    .wsox-whyme-visual { margin-bottom: 40px; }
    .wsox-portfolio-item, .wsox-portfolio-item.wsox-reverse { grid-template-columns: 1fr; direction: ltr; }
    .wsox-portfolio-item > * { direction: ltr; }
    .wsox-industries-grid { grid-template-columns: repeat(3, 1fr); }
    .wsox-contact-inner { grid-template-columns: 1fr; }
    .wsox-contact-content { text-align: center; }
    .wsox-contact-methods { align-items: center; }
    .wsox-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .wsox-section, .wsox-about, .wsox-whyme, .wsox-skills, .wsox-process, .wsox-testimonials, .wsox-faq, .wsox-contact, .wsox-industries { padding: 64px 0; }
    .wsox-nav { display: none; }
    .wsox-mobile-toggle { display: block; }
    .wsox-credibility-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .wsox-services-grid { grid-template-columns: 1fr; }
    .wsox-why-cards { grid-template-columns: 1fr; }
    .wsox-industries-grid { grid-template-columns: repeat(2, 1fr); }
    .wsox-skills-grid { grid-template-columns: repeat(2, 1fr); }
    .wsox-process-steps { flex-direction: column; align-items: center; gap: 40px; }
    .wsox-process-line { display: none; }
    .wsox-process-step { width: 100%; max-width: 300px; }
    .wsox-testimonials-grid { grid-template-columns: 1fr; }
    .wsox-upwork-panel { flex-direction: column; text-align: center; }
    .wsox-engagement-grid { grid-template-columns: 1fr; }
    .wsox-form-row { grid-template-columns: 1fr; }
    .wsox-footer-inner { grid-template-columns: 1fr; text-align: center; }
    .wsox-footer-brand p { margin: 0 auto; }
    .wsox-footer-logo { margin: 0 auto 16px; display: block; }
}

@media (max-width: 480px) {
    .wsox-industries-grid { grid-template-columns: 1fr; }
    .wsox-skills-grid { grid-template-columns: 1fr; }
    .wsox-hero-photo-wrap { width: 260px; height: 320px; }
    .wsox-tech-node { display: none; }
    .wsox-hero-line { display: none; }
}/* End custom CSS */