/* =============================================
   Domaintest.gr — style.css
============================================= */

:root {
    --black: #111111;
    --white: #ffffff;
    --cream: #f8fafc;
    --accent: #2563eb;
    --accent2: #ff1744;
    --accent3: #00e5c0;
    --gray: #f1f5f9;
    --gray2: #e2e8f0;
    --mid: #64748b;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: #ffffff;
    color: var(--black);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, width 0.3s, height 0.3s, background 0.3s;
    transform: translate(-50%, -50%);
  }
  .cursor-follower {
    position: fixed;
    width: 40px; height: 40px;
    border: 1px solid rgba(79,110,247,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: left 0.12s ease, top 0.12s ease, transform 0.3s, width 0.3s, height 0.3s;
    transform: translate(-50%, -50%);
  }
  .cursor.hover { width: 20px; height: 20px; background: var(--accent2); }
  .cursor-follower.hover { width: 70px; height: 70px; border-color: rgba(255,77,109,0.3); }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 28px 60px;
    mix-blend-mode: normal;
    transition: background 0.4s, padding 0.4s;
  }
  nav.scrolled {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(20px);
    padding: 18px 60px;
    border-bottom: 1px solid rgba(45,78,245,0.12);
    box-shadow: 0 2px 24px rgba(45,78,245,0.1);
  }
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
  }
  .nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
    flex-shrink: 0;
  }
  .nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .logo-wrap {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }
  .logo-img {
    height: 56px;
    width: auto;
    display: block;
  }
  .logo-img-footer {
    height: 60px;
    /* SVG has dark bg — add brightness filter on footer dark bg */
    filter: brightness(0) invert(1);
  }
  .nav-links {
    display: flex; gap: 40px; list-style: none;
  }
  .nav-links a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(15,23,40,0.55);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta {
    background: var(--accent);
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 500 !important;
    transition: background 0.3s, transform 0.2s !important;
  }
  .nav-cta:hover { background: var(--accent2) !important; color: var(--white) !important; transform: scale(1.04); }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    position: relative; z-index: 2;
  }

  .hero-left {
    display: flex; flex-direction: column; gap: 32px;
  }

  /* RIGHT VISUAL */
  .hero-right {
    position: relative;
    height: 580px;
  }

  .hero-photo-wrap {
    position: absolute;
    top: 0; left: 20px; right: 0; bottom: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(45,78,245,0.2), 0 0 0 1px rgba(45,78,245,0.08);
  }
  .hero-photo {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
  }
  .hero-photo:hover { transform: scale(1.04); }
  .hero-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(45,78,245,0.15) 0%, rgba(255,23,68,0.08) 100%);
  }

  /* FLOATING CARDS */
  .float-card {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    backdrop-filter: blur(10px);
    animation: float 4s ease-in-out infinite;
    z-index: 10;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  .float-card-1 {
    top: -20px; left: -30px;
    display: flex; align-items: center; gap: 12px;
    animation-delay: 0s;
    min-width: 220px;
  }
  .fc-icon { font-size: 1.5rem; }
  .fc-content { flex: 1; }
  .fc-title { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--black); }
  .fc-sub { font-size: 0.75rem; color: rgba(15,23,40,0.45); margin-top: 2px; }
  .fc-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #00e5c0;
    box-shadow: 0 0 0 3px rgba(0,229,192,0.2);
    animation: pulse 2s infinite;
  }

  .float-card-2 {
    bottom: 80px; left: -40px;
    min-width: 200px;
    animation-delay: 1s;
  }
  .fc-stat-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 8px; }
  .fc-stat-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
  .fc-stat-label { font-size: 0.7rem; color: rgba(15,23,40,0.4); }
  .fc-sparkline { width: 80px; height: 30px; }
  .fc-label { font-size: 0.72rem; color: rgba(15,23,40,0.4); }

  .float-card-3 {
    top: 50%; right: -20px;
    transform: translateY(-50%);
    animation-delay: 0.5s;
    min-width: 170px;
  }
  .float-card-3 { animation: float2 4s ease-in-out infinite 0.5s; }
  @keyframes float2 {
    0%, 100% { transform: translateY(-50%) translateY(0px); }
    50% { transform: translateY(-50%) translateY(-10px); }
  }
  .fc-stack-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(15,23,40,0.4); margin-bottom: 10px; }
  .fc-stack-pills { display: flex; flex-wrap: wrap; gap: 6px; }
  .fc-pill { font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; }

  .float-card-4 {
    bottom: 20px; right: -10px;
    animation-delay: 1.5s;
    min-width: 190px;
  }
  .fc-stars { color: #f59e0b; font-size: 0.75rem; letter-spacing: 2px; margin-bottom: 6px; }
  .fc-review { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
  .fc-reviewer { font-size: 0.72rem; color: rgba(15,23,40,0.4); }

  .hero-bg {
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse 80% 60% at 70% 30%, rgba(45,78,245,0.18) 0%, transparent 60%),
      radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255,23,68,0.12) 0%, transparent 50%),
      linear-gradient(160deg, #ffffff 0%, #f5f6ff 50%, #fff5f7 100%);
  }

  .hero-grid {
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(rgba(45,78,245,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(45,78,245,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  }



  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(79,110,247,0.22);
    border: 1px solid rgba(45,78,245,0.25);
    border-radius: 100px;
    padding: 8px 16px;
    margin-bottom: 36px;
    width: fit-content;
  }
  .hero-badge-dot {
    width: 7px; height: 7px;
    background: var(--accent3);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }
  .hero-badge span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 120px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.01em;
    max-width: 900px;
    position: relative;
    z-index: 2;
    color: var(--black);
  }
  .hero-title .line2 { color: var(--accent); display: block; }
  .hero-title .line3 { color: var(--mid); display: block; }

  .hero-bottom { display: contents; }
  .hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(15,23,40,0.55);
    max-width: 380px;
    font-weight: 300;
  }
  .hero-desc strong { color: var(--black); font-weight: 500; }
  .hero-actions { display: flex; gap: 16px; align-items: center; }
  .btn-primary {
    background: var(--accent);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    display: inline-block;
  }
  .btn-primary:hover {
    background: var(--accent2);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(45,78,245,0.4);
  }
  .btn-outline {
    border: 1px solid rgba(15,23,40,0.2);
    color: var(--black);
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(79,110,247,0.05); }

  .hero-stats {
    display: flex; gap: 40px;
    padding-top: 8px;
    border-top: 1px solid rgba(45,78,245,0.1);
  }
  .stat-item { text-align: left; }
  .stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .stat-num span { color: var(--accent); }
  .stat-label {
    font-size: 0.75rem;
    color: rgba(15,23,40,0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* MARQUEE */
  .marquee-section {
    border-top: 1px solid rgba(79,110,247,0.1);
    border-bottom: 1px solid rgba(45,78,245,0.12);
    padding: 20px 0;
    overflow: hidden;
    background: rgba(45,78,245,0.06);
  }
  .marquee-track {
    display: flex; gap: 60px;
    animation: marquee 20s linear infinite;
    width: max-content;
  }
  .marquee-track:hover { animation-play-state: paused; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .marquee-item {
    display: flex; align-items: center; gap: 16px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(15,23,40,0.35);
    white-space: nowrap;
  }
  .marquee-item .dot {
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* SECTIONS */
  section { padding: 120px 60px; }

  .section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
  }
  .section-label::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--accent);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--black);
  }

  /* SERVICES */
  #services {
    background: linear-gradient(160deg, #0d1117 0%, #111827 60%, #0d1117 100%);
    position: relative;
    overflow: hidden;
  }
  #services::before {
    content: '';
    position: absolute;
    top: -150px; left: -150px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(45,78,245,0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  #services .section-label { color: var(--accent); }
  #services .section-label::before { background: var(--accent); }
  #services .section-title { color: #ffffff; }
  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 80px;
  }
  .services-header .section-title { max-width: 500px; }
  .services-desc {
    max-width: 340px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.95rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  /* IT SERVICES SECTION */
  #it-services {
    background: linear-gradient(160deg, #0f1923 0%, #1a2535 60%, #0f1923 100%);
    position: relative;
    overflow: hidden;
  }
  #it-services::before {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,229,192,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  #it-services .section-label { color: var(--accent3); }
  #it-services .section-label::before { background: var(--accent3); }
  #it-services .section-title { color: #ffffff; }
  #it-services .services-desc { color: rgba(255,255,255,0.45); }

  .it-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .it-card {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    color: #ffffff !important;
    border-radius: 20px !important;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s !important;
  }
  .it-card:hover {
    background: rgba(0,229,192,0.06) !important;
    border-color: rgba(0,229,192,0.25) !important;
    box-shadow: 0 20px 60px rgba(0,229,192,0.08) !important;
    transform: translateY(-4px) !important;
  }
  .it-card::after {
    background: linear-gradient(90deg, var(--accent3), #2d4ef5) !important;
  }
  .it-card .service-num { color: var(--accent3) !important; }
  .it-card .service-icon { color: var(--accent3) !important; }
  .it-card h3 { color: #ffffff !important; }
  .it-card p { color: rgba(255,255,255,0.5) !important; }
  .it-card .tag {
    border-color: rgba(0,229,192,0.2) !important;
    color: rgba(255,255,255,0.45) !important;
    background: rgba(0,229,192,0.06) !important;
  }
  .it-card:hover .tag {
    border-color: rgba(0,229,192,0.4) !important;
    color: var(--accent3) !important;
    background: rgba(0,229,192,0.12) !important;
  }
  .service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s, transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border-radius: 20px;
  }
  .service-card:hover {
    background: rgba(45,78,245,0.08);
    border-color: rgba(45,78,245,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(45,78,245,0.12);
  }
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1d4ed8, #2563eb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .service-card:hover::after { transform: scaleX(1); }
  .service-num {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 28px;
  }
  .service-icon {
    width: 52px; height: 52px;
    margin-bottom: 28px;
    color: var(--accent);
  }
  .service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #ffffff;
  }
  .service-card p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    margin-bottom: 32px;
  }
  .service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .tag {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border: 1px solid rgba(110,127,211,0.25);
    border-radius: 100px;
    color: rgba(255,255,255,0.4);
    background: rgba(110,127,211,0.08);
    transition: border-color 0.3s, color 0.3s, background 0.3s;
  }
  .service-card:hover .tag {
    border-color: rgba(110,127,211,0.4);
    color: var(--accent);
    background: rgba(110,127,211,0.15);
  }

  /* PORTFOLIO */
  #portfolio { background: #f1f5f9; }
  .portfolio-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 60px;
  }
  .portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .portfolio-single {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
  }
  .portfolio-single .portfolio-item {
    aspect-ratio: 16/7;
  }
  .portfolio-screenshot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
  }
  .portfolio-item:hover .portfolio-screenshot { transform: scale(1.04); }
  .portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16/10;
    background: var(--gray); color: var(--black);
  }
  .portfolio-item.tall { grid-row: span 2; aspect-ratio: auto; }
  .portfolio-visual {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s ease;
  }
  .portfolio-item:hover .portfolio-visual { transform: scale(1.04); }
  .pv1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); color: rgba(255,255,255,0.15); }
  .pv2 { background: linear-gradient(135deg, #2d1b00 0%, #4a2f00 100%); color: rgba(255,255,255,0.1); }
  .pv3 { background: linear-gradient(135deg, #0d1117 0%, #1c2128 50%, #0a3622 100%); color: rgba(255,255,255,0.12); }
  .pv4 { background: linear-gradient(135deg, #1a0a2e 0%, #2d1065 100%); color: rgba(255,255,255,0.1); }
  .portfolio-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .portfolio-item:hover .portfolio-overlay { opacity: 1; }
  .portfolio-cat {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
  }
  .portfolio-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .portfolio-link {
    position: absolute; top: 24px; right: 24px;
    width: 44px; height: 44px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--black);
    text-decoration: none;
    font-size: 1.1rem;
    transform: scale(0) rotate(-45deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .portfolio-item:hover .portfolio-link { transform: scale(1) rotate(0deg); }

  /* PROCESS */
  #process { background: var(--black); }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 80px;
  }
  .process-step {
    padding: 48px 36px;
    background: var(--gray); color: var(--black);
    position: relative;
  }
  .process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -16px; top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1.2rem;
    z-index: 2;
  }
  .process-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(79,110,247,0.15);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 24px;
  }
  .process-step h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .process-step p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(15,23,40,0.45);
    font-weight: 300;
  }

  /* PRICING */
  #pricing {
    background: linear-gradient(160deg, #0d1117 0%, #1a1f3c 60%, #0d1117 100%);
    position: relative;
    overflow: hidden;
  }
  #pricing::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(110,127,211,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  #pricing .section-label { color: rgba(255,255,255,0.5); }
  #pricing .section-label::before { background: rgba(255,255,255,0.3); }

  .pricing-header {
    text-align: center;
    margin-bottom: 72px;
    position: relative; z-index: 1;
  }
  .pricing-header .section-label { justify-content: center; }
  .pricing-header .section-title { color: #ffffff; margin-bottom: 16px; }
  .pricing-subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
    position: relative; z-index: 1;
  }

  .pricing-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 44px 36px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    color: #ffffff;
  }
  .pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(110,127,211,0.3);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  }

  .pricing-card.featured {
    background: linear-gradient(145deg, #1d4ed8 0%, #2563eb 100%);
    border-color: transparent;
    box-shadow: 0 32px 80px rgba(45,78,245,0.45);
    transform: translateY(-12px);
    padding-top: 52px;
  }
  .pricing-card.featured:hover { transform: translateY(-18px); }

  .pricing-badge-wrap {
    position: absolute;
    top: -16px; left: 0; right: 0;
    display: flex; justify-content: center;
  }
  .pricing-badge {
    background: #ffffff;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 6px 18px;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(45,78,245,0.25);
  }

  .pricing-plan-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
  }
  .pricing-card.featured .pricing-plan-label { color: rgba(255,255,255,0.7); }

  .pricing-amount {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 6px;
    line-height: 1;
  }
  .pricing-currency {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
  }
  .pricing-number {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #ffffff;
  }

  .pricing-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 32px;
    font-weight: 300;
  }
  .pricing-card.featured .pricing-note { color: rgba(255,255,255,0.55); }

  .pricing-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 28px;
  }
  .pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.2); }

  .pricing-features { list-style: none; margin-bottom: 40px; }
  .pricing-features li {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    padding: 9px 0;
    font-weight: 300;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .pricing-features li:last-child { border-bottom: none; }
  .pricing-features li::before {
    content: '✓';
    width: 22px; height: 22px;
    background: rgba(110,127,211,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    color: var(--accent);
    font-weight: 700;
  }
  .pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.1); }
  .pricing-card.featured .pricing-features li::before {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
  }

  .btn-pricing {
    width: 100%;
    padding: 15px;
    border-radius: 100px;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: block;
    transition: all 0.3s;
  }
  .btn-pricing-outline {
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.04);
  }
  .btn-pricing-outline:hover {
    border-color: rgba(110,127,211,0.6);
    color: #ffffff;
    background: rgba(110,127,211,0.12);
  }
  .btn-pricing-featured {
    background: #ffffff;
    color: var(--accent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .btn-pricing-featured:hover {
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  }

  /* TESTIMONIALS */
  #testimonials { background: #f8fafc; }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
  }
  .testimonial-card {
    background: var(--gray); color: var(--black);
    border-radius: 12px;
    padding: 40px 36px;
    border: 1px solid rgba(79,110,247,0.08);
    box-shadow: 0 4px 24px rgba(45,78,245,0.1);
  }
  .stars { color: var(--accent); font-size: 0.8rem; letter-spacing: 4px; margin-bottom: 20px; }
  .testimonial-text {
    font-size: 0.925rem;
    line-height: 1.8;
    color: rgba(15,23,40,0.7);
    font-weight: 300;
    margin-bottom: 28px;
    font-style: italic;
  }
  .testimonial-author { display: flex; align-items: center; gap: 14px; }
  .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 800;
    background: var(--gray2); color: var(--black);
    color: var(--accent);
    flex-shrink: 0;
  }
  .author-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .author-role { font-size: 0.75rem; color: rgba(15,23,40,0.35); margin-top: 2px; }

  /* CTA */
  #cta {
    background: linear-gradient(135deg, #2d4ef5 0%, #7c3aed 50%, #ff1744 100%);
    color: #ffffff;
    text-align: center;
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
  }
  .cta-bg {
    position: absolute; inset: 0;
    background: 
      radial-gradient(circle at 20% 50%, rgba(255,107,53,0.2) 0%, transparent 50%),
      radial-gradient(circle at 80% 50%, rgba(0,0,0,0.08) 0%, transparent 50%);
  }
  #cta .section-label { color: rgba(255,255,255,0.7); }
  #cta .section-label::before { background: rgba(255,255,255,0.7); }
  #cta .section-title {
    color: #ffffff;
    font-size: clamp(48px, 7vw, 100px);
    position: relative; z-index: 1;
    max-width: 800px;
    margin: 0 auto 16px;
  }
  .cta-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 400px;
    margin: 0 auto 52px;
    font-weight: 300;
    line-height: 1.7;
    position: relative; z-index: 1;
  }
  .cta-actions { display: flex; gap: 16px; justify-content: center; position: relative; z-index: 1; }
  .btn-dark {
    background: var(--black);
    color: #ffffff;
    padding: 18px 44px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
  }
  .btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }
  .btn-ghost {
    border: 1.5px solid rgba(255,255,255,0.4);
    color: #ffffff;
    padding: 18px 44px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s;
    display: inline-block;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); }

  /* FOOTER */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 80px 60px 48px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
  }
  .footer-brand .logo-wrap { display: block; margin-bottom: 20px; }
  .footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    max-width: 280px;
    margin-bottom: 28px;
  }
  .footer-socials { display: flex; gap: 12px; }
  .social-link {
    width: 40px; height: 40px;
    border: 1px solid rgba(79,110,247,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
  }
  .social-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(79,110,247,0.1); }
  .footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
  }
  .footer-col ul li a:hover { color: #ffffff; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
    font-weight: 300;
  }
  .footer-copy span { color: var(--accent); }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-legal a:hover { color: rgba(245,242,236,0.6); }

  /* ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  @media (max-width: 900px) {
    nav { padding: 20px 24px; z-index: 160; }
    nav.scrolled { padding: 14px 24px; }
    .nav-burger { display: flex; }
    .cursor, .cursor-follower { display: none; }
    body { cursor: auto; }
    .nav-links {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: fixed;
      top: 0; right: 0; bottom: 0;
      width: 80%;
      max-width: 320px;
      background: #ffffff;
      padding: 100px 40px 40px;
      box-shadow: -4px 0 40px rgba(0,0,0,0.12);
      transform: translateX(100%);
      transition: transform 0.35s ease;
      z-index: 150;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links li { border-bottom: 1px solid rgba(0,0,0,0.06); }
    .nav-links a {
      display: block;
      padding: 16px 0;
      font-size: 1rem;
      color: var(--black);
      text-transform: none;
      letter-spacing: 0;
    }
    .nav-links .nav-cta {
      margin-top: 16px;
      display: inline-block;
      padding: 12px 28px;
    }
    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 140;
    }
    .nav-overlay.open { display: block; }
    #hero { padding: 100px 24px 60px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-right { height: 360px; }
    .float-card-1 { left: 0; top: -10px; }
    .float-card-2 { left: 0; }
    .float-card-3 { right: 0; }
    .float-card-4 { right: 0; }
    .hero-stats { flex-direction: row; }
    section { padding: 80px 24px; }
    .services-header, .portfolio-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .services-grid, .process-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
    .pricing-grid, .it-grid { grid-template-columns: 1fr; gap: 20px; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-6px); }
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-item.tall { grid-row: span 1; aspect-ratio: 16/10; }
    .process-step::after { display: none; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    #cta { padding: 80px 24px; }
    .cta-actions { flex-direction: column; align-items: center; }
    footer { padding: 60px 24px 32px; }
  }