:root{
  --bg-1: #062241;
  --bg-2: #2e3740;
  --accent-1: #4f9ef3;
  --accent-2: #95a3b8;
  --muted: #9fb0c6;
  --glass: rgba(255,255,255,0.03);
  --white: #ffffff;
  --radius:18px;
  --container:1200px;
  --brand-font: 'Playfair Display', serif;
  --ui-font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

/* Smooth scrolling */
html { 
  scroll-behavior: smooth; 
  -webkit-overflow-scrolling: touch; 
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--white);
  font-family:var(--ui-font);
  background:
    radial-gradient(circle at 20% 20%, rgba(79,158,243,0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(149,163,184,0.12) 0%, transparent 40%),
    radial-gradient(circle at 40% 80%, rgba(79,158,243,0.08) 0%, transparent 35%),
    linear-gradient(135deg, var(--bg-1) 0%, #0a2d4d 25%, var(--bg-2) 50%, #1a3a52 75%, var(--bg-1) 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 200% 200%;
  background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  animation: meshMove 20s ease infinite;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
  overflow-x:hidden;
  position: relative;
}

@keyframes meshMove {
  0%, 100% { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%; }
  25% { background-position: 20% 10%, 10% 20%, 5% 15%, 25% 25%; }
  50% { background-position: 40% 20%, 20% 40%, 10% 30%, 50% 50%; }
  75% { background-position: 20% 10%, 10% 20%, 5% 15%, 75% 75%; }
}

/* Floating orbs effect */
body::after {
  content: '';
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,158,243,0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  animation: floatOrb1 25s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-100px, 150px) scale(1.1); }
  66% { transform: translate(50px, -100px) scale(0.9); }
}

/* Subtle pattern overlay */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.005) 0 1px, transparent 1px 6px),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='t'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='200' height='200' filter='url(%23t)' opacity='0.04'/></svg>");
  background-repeat: repeat, repeat;
  background-position: 0 0, 0 0;
  mix-blend-mode: overlay;
  opacity:0.9;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::before, body::after { display:none; }
  body {
    animation: none;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  }
  *,*::before,*::after { 
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Container */
.container{
  max-width:var(--container);
  margin:0 auto;
  padding: 0 2rem;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:120;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(6,34,65,0.85), rgba(46,55,64,0.75));
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(6,34,65,0.95), rgba(46,55,64,0.85));
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding: 1.25rem 0;
}

.brand{
  font-family:var(--brand-font);
  font-weight:700;
  font-size:1.3rem;
  color:var(--white);
  text-decoration:none;
  letter-spacing:0.6px;
  transition: color 0.3s ease;
}

.brand:hover {
  color: var(--accent-1);
}

.nav{
  display:flex;
  gap:1.5rem;
  align-items:center;
}

.nav a{ 
  color:var(--muted); 
  text-decoration:none; 
  font-weight:600; 
  padding:0.5rem 0.8rem; 
  border-radius:10px;
  transition: all 0.3s ease;
  position: relative;
}

.nav a:hover{ 
  color:var(--white); 
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

.header-actions{ 
  display:flex; 
  align-items:center; 
  gap:1rem; 
}

.social-icon{ 
  color:var(--muted); 
  display:inline-flex; 
  align-items:center; 
  justify-content:center; 
  width:40px; 
  height:40px; 
  border-radius:10px; 
  text-decoration:none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.phone{ 
  color:var(--muted); 
  font-weight:700; 
  text-decoration:none; 
  padding:0.5rem 0.8rem; 
  border-radius:10px; 
  background:transparent;
  transition: all 0.3s ease;
}

.phone:hover{ 
  color:var(--white); 
  background: rgba(255,255,255,0.04);
}

.nav-toggle{ 
  display:none; 
  background:transparent; 
  border:0; 
  color:var(--muted); 
  font-size:1.5rem; 
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s ease;
}

.nav-toggle:hover {
  color: var(--white);
}

/* Buttons */
.btn{ 
  display:inline-block; 
  padding:0.7rem 1.3rem; 
  border-radius:12px; 
  text-decoration:none; 
  font-weight:700; 
  font-size:0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary{ 
  background: linear-gradient(135deg,var(--accent-1),var(--accent-2)); 
  color:#012232; 
  box-shadow: 0 10px 30px rgba(79,158,243,0.2);
}

.btn-primary:hover{ 
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(79,158,243,0.3);
}

.btn-ghost{ 
  background:transparent; 
  color:var(--muted); 
  border:1px solid rgba(255,255,255,0.1); 
}

.btn-ghost:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
}

.btn-outline{ 
  background:transparent; 
  color:var(--muted); 
  border:1px solid rgba(255,255,255,0.08); 
  padding:0.5rem 1rem;
}

.btn-outline:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(30px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.animate-slide-up {
  opacity: 0;
  animation: slideUp 0.8s ease forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Hero */
.hero{ 
  padding:5rem 0 4rem;
}

.hero-grid{ 
  display:grid; 
  grid-template-columns: 1.1fr 520px; 
  gap:3rem; 
  align-items:center; 
}

.hero-left{ 
  max-width:68ch; 
}

.eyebrow{ 
  color:var(--accent-1); 
  font-weight:700; 
  font-size:0.85rem; 
  letter-spacing:1.2px; 
  text-transform:uppercase; 
  margin-bottom:1rem;
}

.hero h1{ 
  font-family:var(--brand-font); 
  font-size:3rem; 
  margin:0 0 1.5rem; 
  line-height:1.1; 
  font-weight: 700;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-1) 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.lead{ 
  color:var(--muted); 
  font-size:1.1rem; 
  margin-bottom:2rem; 
  line-height: 1.7;
}

.hero-actions{ 
  display:flex; 
  gap:1rem; 
  margin-bottom:2rem; 
  align-items:center;
  flex-wrap: wrap;
}

.hero-metrics{ 
  display:flex; 
  gap:2rem; 
  list-style:none; 
  padding:0; 
  margin:0; 
  color:var(--muted); 
  font-weight:700;
  flex-wrap: wrap;
}

.hero-metrics li strong{ 
  color:var(--white); 
  margin-right:0.4rem; 
  font-size: 1.1rem;
}

/* Hero SVG animations */
.hero-right{ 
  display:flex; 
  align-items:center; 
  justify-content:center; 
}

.hero-svg{ 
  width:100%; 
  height:auto; 
  border-radius:16px; 
  box-shadow: 0 20px 60px rgba(2,6,23,0.4); 
  border:1px solid rgba(255,255,255,0.05);
}

.chart-bar {
  animation: slideUp 1s ease forwards;
  transform-origin: bottom;
}

.pulse {
  animation: pulse 3s ease-in-out infinite;
}

/* Stats Bar */
.stats-bar {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-1);
  font-family: var(--brand-font);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Sections */
.section{ 
  padding:5rem 0; 
}

.section.alt{ 
  background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent); 
  border-top:1px solid rgba(255,255,255,0.03); 
}

.section-head{ 
  margin-bottom:3rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title{ 
  font-family:var(--brand-font); 
  font-size:2.5rem; 
  margin:0 0 1rem; 
  font-weight: 700;
  background: linear-gradient(135deg, var(--white), var(--accent-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub{ 
  color:var(--muted); 
  margin:0 0 1rem;
  font-size: 1.1rem;
}

/* Services */
.services-grid{ 
  display:grid; 
  grid-template-columns: repeat(5,1fr); 
  gap:1.5rem; 
  margin-top:2rem; 
}

.service-card{ 
  background: linear-gradient(135deg, rgba(79,158,243,0.03), rgba(149,163,184,0.02)); 
  padding:2rem; 
  border-radius:20px; 
  border:1px solid rgba(79,158,243,0.1); 
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover{ 
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(79,158,243,0.15);
  border-color: rgba(79,158,243,0.3);
  background: linear-gradient(135deg, rgba(79,158,243,0.05), rgba(149,163,184,0.03));
}

.service-icon{ 
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(79,158,243,0.1), rgba(149,163,184,0.05));
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotateY(10deg);
  background: linear-gradient(135deg, rgba(79,158,243,0.15), rgba(149,163,184,0.08));
}

.service-card h3{ 
  margin:0 0 1rem; 
  color:var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--white), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-height: 2.6em;
}

.service-subtitle {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
  opacity: 0.7;
}

.service-card p{ 
  margin:0 0 1rem; 
  color:var(--muted);
  line-height: 1.7;
  text-align: center;
  font-size: 0.95rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.service-features li {
  color: var(--muted);
  padding: 0.5rem 0;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
  text-align: left;
}

.service-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

/* Process Timeline */
.process-timeline {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.process-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #012232;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--brand-font);
  flex-shrink: 0;
}

.step-content h3 {
  margin: 0 0 0.75rem;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
}

.step-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Portfolio */
.portfolio-grid{ 
  display:grid; 
  grid-template-columns: repeat(3,1fr); 
  gap:2rem; 
  margin-top:2rem; 
}

.portfolio-item{ 
  border-radius:16px; 
  overflow:hidden; 
  border:1px solid rgba(255,255,255,0.05); 
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); 
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.portfolio-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item:hover{ 
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(2,6,23,0.5);
}

.portfolio-item img{ 
  width:100%; 
  height:240px; 
  object-fit:cover; 
  display:block;
  transition: transform 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item figcaption{ 
  padding:1.5rem; 
}

.portfolio-tag {
  display: inline-block;
  background: rgba(79,158,243,0.15);
  color: var(--accent-1);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.portfolio-item h4{ 
  margin:0 0 0.75rem;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

.portfolio-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.portfolio-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.portfolio-stats span {
  font-size: 0.85rem;
  color: var(--accent-1);
  font-weight: 600;
}

/* Testimonials */
.testimonials{ 
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:2rem; 
  margin-top:2rem; 
}

.testimonial{ 
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); 
  padding:2rem; 
  border-radius:16px; 
  border:1px solid rgba(255,255,255,0.05);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.testimonial.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(2,6,23,0.4);
}

.testimonial-stars {
  color: var(--accent-1);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial p{ 
  margin:0 0 1.5rem; 
  color:var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial cite{ 
  font-style: normal;
  display: block;
}

.testimonial cite strong {
  color: var(--white);
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial cite span {
  color: var(--accent-1);
  font-weight: 600;
  font-size: 0.9rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover {
  border-color: rgba(79,158,243,0.2);
}

.faq-item summary {
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--white);
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  color: var(--accent-1);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-content p {
  margin: 0;
}

/* Contact */
.contact-grid{ 
  display:grid; 
  grid-template-columns: 1.2fr 400px; 
  gap:3rem; 
  align-items:start; 
  margin-top:2rem; 
}

.contact-list{ 
  list-style:none; 
  padding:0; 
  margin:1.5rem 0 2rem; 
  color:var(--muted);
}

.contact-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list a{ 
  color:var(--accent-1); 
  text-decoration:none; 
  font-weight:700;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: var(--white);
}

/* Contact Panel */
.panel-card{ 
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); 
  padding:2rem; 
  border-radius:16px; 
  border:1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 100px;
}

.panel-card h3{ 
  margin:0 0 1rem; 
  color:var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.panel-card > p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.6;
}

.panel-features{ 
  margin:0; 
  padding:0;
  list-style: none;
}

.panel-features li {
  color: var(--muted);
  padding: 0.6rem 0;
  font-size: 0.95rem;
}

.cta-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(79,158,243,0.08);
  border-radius: 10px;
  border-left: 3px solid var(--accent-1);
}

.cta-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Footer */
.site-footer{ 
  margin-top:5rem; 
  padding:3rem 0 2rem; 
  border-top:1px solid rgba(255,255,255,0.05); 
  background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
}

.footer-inner{ 
  display:grid;
  grid-template-columns: 1fr 2fr;
  gap:3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.footer-brand p {
  color: var(--muted);
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.reference-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reference-links a {
  color: var(--accent-1);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  opacity: 0.8;
}

.reference-links a:hover {
  color: var(--white);
  opacity: 1;
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.social {
  display: flex;
  gap: 0.5rem;
}

.social .social-pill{ 
  text-decoration:none; 
  color:var(--muted); 
  padding:0.5rem 1rem; 
  border-radius:10px; 
  background: rgba(255,255,255,0.02); 
  font-weight:700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.social .social-pill:hover{ 
  color:var(--white); 
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

/* Floating WhatsApp */
.whatsapp-btn{ 
  position:fixed; 
  right:25px; 
  bottom:25px; 
  background: linear-gradient(135deg,var(--accent-1),var(--accent-2)); 
  color:#012232; 
  width:60px; 
  height:60px; 
  border-radius:50%; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  box-shadow: 0 10px 30px rgba(79,158,243,0.3); 
  z-index:140; 
  text-decoration:none; 
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-btn:hover{ 
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(79,158,243,0.4);
}

/* Responsive Tablet */
@media (max-width:1100px){
  .container {
    padding: 0 1.5rem;
  }

  .hero-grid{ 
    grid-template-columns: 1fr 420px; 
    gap: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }

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

  .testimonials {
    grid-template-columns: 1fr;
  }
  
  .contact-grid{ 
    grid-template-columns:1fr; 
  }

  .panel-card {
    position: static;
  }

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

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

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive Mobile */
@media (max-width:760px){
  .container {
    padding: 0 1.25rem;
  }

  .header-inner {
    padding: 1rem 0;
  }

  .nav{ 
    display:none; 
    position:absolute; 
    top:70px; 
    right:20px; 
    background:rgba(6,34,65,0.98); 
    padding:1.5rem; 
    border-radius:16px; 
    flex-direction:column; 
    min-width:240px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  }
  
  .nav.open{ 
    display:flex; 
  }
  
  .nav-toggle{ 
    display:block; 
  }

  .phone {
    display: none;
  }
  
  .hero{ 
    padding: 3rem 0 2rem;
  }

  .hero-grid{ 
    grid-template-columns:1fr; 
    gap:2rem; 
  }
  
  .hero h1{ 
    font-size:2rem;
    margin-bottom: 1rem;
  }

  .lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

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

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  
  .hero-svg{ 
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-sub {
    font-size: 1rem;
  }
  
  .services-grid{ 
    grid-template-columns:1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon svg {
    width: 36px;
    height: 36px;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .step-content h3 {
    font-size: 1.2rem;
  }
  
  .portfolio-grid{ 
    grid-template-columns:1fr;
    gap: 1.5rem;
  }

  .portfolio-item img {
    height: 200px;
  }

  .testimonials {
    gap: 1.5rem;
  }

  .testimonial {
    padding: 1.5rem;
  }

  .contact-grid {
    gap: 2rem;
  }

  .small-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .small-cta .btn {
    width: 100%;
    text-align: center;
  }

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

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

  .whatsapp-btn {
    width: 55px;
    height: 55px;
    right: 20px;
    bottom: 20px;
  }
}

/* Medium tablet breakpoint for services */
@media (max-width:900px) and (min-width:761px){
  .services-grid{ 
    grid-template-columns: repeat(2,1fr); 
  }
}

/* Extra small devices */
@media (max-width:480px){
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* Utility classes */
.link{ 
  color:var(--accent-1); 
  text-decoration:none; 
  font-weight:700;
  transition: color 0.3s ease;
}

.link:hover {
  color: var(--white);
}

.small-cta{ 
  margin-top:2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Loading state */
.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent-1);
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background: var(--accent-1);
  color: #012232;
}

::-moz-selection {
  background: var(--accent-1);
  color: #012232;
}
