:root{
  --bg:#ffffff;
  --card:#ffffff;
  --muted:#6c757d;
  --fg:#212529;
  --fg-secondary:#495057;
  --brand:#10b981;
  --brand2:#3b82f6;
  --accent:#f59e0b;
  --border:#dee2e6;
  --shadow-sm:0 1px 3px rgba(0,0,0,.08);
  --shadow-md:0 4px 12px rgba(0,0,0,.1);
  --shadow-lg:0 10px 24px rgba(0,0,0,.12);
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--fg);
  font-family:'Montserrat',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size:16px;
  line-height:1.7;
  scroll-behavior:smooth;
}

a{
  color:var(--brand2);
  text-decoration:none;
  transition:color .2s;
}
a:hover{
  color:var(--brand);
  text-decoration:underline;
}

.container{
  max-width:1120px;
  margin:0 auto;
  padding:32px 24px;
}

.header{
  position:sticky;
  top:0;
  background:rgba(255,255,255,.97);
  backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid var(--border);
  z-index:50;
  box-shadow:var(--shadow-sm);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  max-width:1120px;
  margin:0 auto;
  padding:14px 24px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  font-size:18px;
  color:var(--fg);
  transition:transform .2s;
}
.logo:hover{
  transform:scale(1.02);
  text-decoration:none;
}
.logo img{
  height:36px;
  width:auto;
}

.nav{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  align-items:center;
}
.nav a{
  color:var(--fg);
  font-weight:500;
  font-size:15px;
  padding:6px 0;
  border-bottom:2px solid transparent;
  transition:border-color .2s;
}
.nav a:hover{
  border-bottom-color:var(--brand);
  text-decoration:none;
}

.cta{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#ffffff;
  padding:12px 20px;
  border-radius:12px;
  font-weight:700;
  font-size:15px;
  border:0;
  box-shadow:0 3px 8px rgba(16,185,129,.25);
  transition:all .3s cubic-bezier(.4,0,.2,1);
  cursor:pointer;
}
.cta:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(16,185,129,.35);
  filter:brightness(1.08);
}
.cta:active{
  transform:translateY(0);
}

.hero{
  padding:64px 0 48px;
  text-align:center;
}

h1{
  font-size:42px;
  line-height:1.15;
  margin:16px 0 18px;
  color:var(--fg);
  font-weight:800;
  letter-spacing:-.02em;
}

h2{
  font-size:32px;
  margin:48px 0 16px;
  color:var(--fg);
  font-weight:700;
  letter-spacing:-.01em;
}

h3{
  font-size:22px;
  margin:32px 0 12px;
  color:var(--fg);
  font-weight:600;
}

p{
  color:var(--fg-secondary);
  margin:12px 0;
  font-size:16px;
  line-height:1.7;
}

.grid{
  display:grid;
  gap:24px;
  margin:32px 0;
}
.grid-3{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.grid-2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px;
  transition:all .3s cubic-bezier(.4,0,.2,1);
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:#cbd5e0;
}
.card strong{
  display:block;
  font-size:18px;
  color:var(--fg);
  margin-bottom:10px;
  font-weight:600;
}
.card p{
  margin:8px 0 0;
  font-size:15px;
  line-height:1.6;
}

.service-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:20px;
  padding:28px;
  transition:all .35s cubic-bezier(.4,0,.2,1);
  position:relative;
  overflow:hidden;
}

.service-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,var(--brand),var(--brand2));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .35s cubic-bezier(.4,0,.2,1);
}

.service-card:hover::before{
  transform:scaleX(1);
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 24px rgba(16,185,129,.15);
  border-color:var(--brand);
}

.service-icon{
  width:48px;
  height:48px;
  background:linear-gradient(135deg,rgba(16,185,129,.1),rgba(59,130,246,.1));
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
}

.service-icon svg{
  width:24px;
  height:24px;
  stroke:var(--brand2);
  stroke-width:2;
  fill:none;
}

.service-title{
  font-size:19px;
  color:var(--fg);
  margin-bottom:12px;
  font-weight:700;
  line-height:1.3;
}

.service-desc{
  font-size:15px;
  line-height:1.65;
  color:var(--fg-secondary);
  margin:0;
}

.badge{
  display:inline-block;
  background:linear-gradient(135deg,rgba(16,185,129,.1),rgba(59,130,246,.1));
  color:var(--brand2);
  border:1px solid rgba(59,130,246,.2);
  border-radius:999px;
  padding:6px 14px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.01em;
}

.image-section{
  margin:32px auto;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.08);
  max-width:800px;
}

.content-image{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

.team-showcase{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
  margin:48px 0;
}

.team-text h3{
  font-size:28px;
  line-height:1.3;
  color:var(--fg);
  margin:0 0 20px 0;
  font-weight:700;
}

.team-text p{
  margin:0 0 16px 0;
  line-height:1.7;
  color:var(--fg-secondary);
}

.team-text p:last-child{
  margin-bottom:0;
}

.team-image{
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,.08);
}

@media(max-width:768px){
  .image-section{
    max-width:100%;
    margin:24px 0;
  }
  
  .team-showcase{
    grid-template-columns:1fr;
    gap:32px;
    margin:32px 0;
  }
  
  .team-text h3{
    font-size:24px;
  }
}

.footer{
  border-top:1px solid var(--border);
  margin-top:64px;
  background:linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.footer-content{
  max-width:1120px;
  margin:0 auto;
  padding:56px 24px 24px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:48px;
  margin-bottom:40px;
}

.footer-column{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.footer-logo{
  max-height:40px;
  width:auto;
  max-width:200px;
  height:auto;
  object-fit:contain;
  margin-bottom:8px;
}

.footer-description{
  color:var(--fg-secondary);
  font-size:15px;
  line-height:1.6;
  margin:0;
}

.footer-contact{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-contact p{
  margin:0;
  font-size:14px;
  color:var(--fg-secondary);
}

.footer-contact a{
  color:var(--brand2);
  font-weight:500;
}

.footer-badge{
  margin-top:16px;
}

.pyme-badge{
  max-width:140px;
  height:auto;
  display:block;
}

.footer-title{
  font-size:16px;
  font-weight:700;
  color:var(--fg);
  margin:0 0 16px 0;
  letter-spacing:-.01em;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-links li{
  margin:0;
}

.footer-links a{
  color:var(--fg-secondary);
  font-size:14px;
  font-weight:400;
  transition:color .2s;
}

.footer-links a:hover{
  color:var(--brand);
  text-decoration:none;
}

.footer-office{
  margin-top:24px;
  padding-top:24px;
  border-top:1px solid var(--border);
}

.footer-office h4{
  font-size:14px;
  font-weight:600;
  color:var(--fg);
  margin:0 0 10px 0;
}

.footer-office p{
  margin:0;
  font-size:13px;
  line-height:1.5;
  color:var(--muted);
}

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding-top:32px;
  border-top:1px solid var(--border);
}

.footer-bottom p{
  margin:0;
  font-size:14px;
  color:var(--muted);
}

.footer-bottom-links{
  display:flex;
  gap:24px;
}

.footer-bottom-links a{
  color:var(--muted);
  font-size:14px;
  transition:color .2s;
}

.footer-bottom-links a:hover{
  color:var(--brand);
  text-decoration:none;
}

@media(max-width:1024px){
  .footer-grid{
    grid-template-columns:1.2fr 1fr 1fr;
    gap:40px;
  }
  
  .footer-column:last-child{
    grid-column:1 / -1;
  }
}

@media(max-width:768px){
  .footer-content{
    padding:40px 20px 20px;
  }
  
  .footer-grid{
    grid-template-columns:1fr;
    gap:32px;
  }
  
  .footer-column:last-child{
    grid-column:auto;
  }
  
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
  }
  
  .footer-bottom-links{
    gap:16px;
  }
}

@media(max-width:480px){
  .footer-content{
    padding:32px 16px 16px;
  }
  
  .footer-grid{
    gap:28px;
  }
  
  .footer-bottom-links{
    flex-direction:column;
    gap:12px;
  }
}

.list{
  padding-left:24px;
  margin:16px 0;
}
.list li{
  margin:10px 0;
  color:var(--fg-secondary);
  line-height:1.6;
}
.list li strong{
  color:var(--fg);
}

.kpis{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  justify-content:center;
  margin:32px 0;
}
.kpi{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px 24px;
  text-align:center;
  min-width:140px;
  transition:all .3s;
}
.kpi:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-sm);
}
.kpi strong{
  font-size:32px;
  color:var(--brand);
  display:block;
  margin-bottom:6px;
  font-weight:800;
}

.table-responsive{
  width:100%;
  overflow-x:auto;
  margin:24px 0;
  -webkit-overflow-scrolling:touch;
}

.table{
  width:100%;
  border-collapse:collapse;
  border:1px solid var(--border);
  margin:0;
}
.table th,.table td{
  border:1px solid var(--border);
  padding:14px 16px;
  text-align:left;
}
.table th{
  background:var(--card);
  font-weight:600;
  color:var(--fg);
}

.lead-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:linear-gradient(135deg,#f0f9ff,#f0fdf4);
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px 28px;
  margin:40px 0;
  box-shadow:var(--shadow-sm);
}
.lead-band div{
  flex:1;
  font-size:16px;
  color:var(--fg-secondary);
}

.muted{
  color:var(--muted);
}

.hero-bullets{
  display:grid;
  gap:14px;
  margin:24px auto;
  max-width:800px;
  text-align:left;
}
.hero-bullets .item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:var(--fg-secondary);
  font-size:16px;
  padding:12px 16px;
  background:rgba(248,249,250,.6);
  border-radius:10px;
  border:1px solid rgba(222,226,230,.5);
}

strong{
  color:var(--fg);
  font-weight:600;
}

.highlight{
  background:linear-gradient(120deg,rgba(16,185,129,.15) 0%,rgba(59,130,246,.15) 100%);
  padding:3px 8px;
  border-radius:6px;
  font-weight:500;
}

section{
  margin-bottom:56px;
}

/* Mobile menu button */
.mobile-menu-toggle{
  display:none;
  background:none;
  border:1px solid var(--border);
  border-radius:8px;
  padding:8px;
  cursor:pointer;
  color:var(--fg);
}

/* Responsive Design */
@media(max-width:1024px){
  .container{
    padding:28px 20px;
  }
  h1{
    font-size:36px;
  }
  h2{
    font-size:28px;
  }
}

@media(max-width:768px){
  .grid-3,.grid-2{
    grid-template-columns:1fr;
  }
  
  .header-inner{
    padding:12px 16px;
  }
  
  .nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:rgba(255,255,255,.98);
    backdrop-filter:blur(12px);
    flex-direction:column;
    gap:0;
    padding:12px 0;
    border-bottom:1px solid var(--border);
  }
  .nav.active{
    display:flex;
  }
  .nav a{
    padding:12px 20px;
    border-bottom:0;
  }
  
  .mobile-menu-toggle{
    display:block;
  }
  
  .lead-band{
    flex-direction:column;
    align-items:stretch;
    padding:20px;
    gap:16px;
  }
  .lead-band .cta{
    width:100%;
  }
  
  .hero{
    padding:40px 0 32px;
  }
  
  h1{
    font-size:32px;
  }
  h2{
    font-size:26px;
    margin:36px 0 12px;
  }
  h3{
    font-size:20px;
  }
  
  .container{
    padding:24px 16px;
  }
  
  .kpis{
    gap:12px;
  }
  .kpi{
    flex:1 1 calc(50% - 12px);
    min-width:0;
    padding:16px;
  }
  .kpi strong{
    font-size:26px;
  }
  
  .table th,.table td{
    padding:12px 10px;
    font-size:15px;
  }
  
  .table th{
    white-space:nowrap;
  }
}

@media(max-width:480px){
  h1{
    font-size:28px;
  }
  h2{
    font-size:24px;
  }
  
  .card{
    padding:20px;
  }
  
  .hero-bullets .item{
    padding:10px 12px;
    font-size:15px;
  }
  
  .kpi{
    flex:1 1 100%;
  }
  
  .table th,.table td{
    padding:10px 8px;
    font-size:14px;
  }
}

.card-icon{
  width:48px;
  height:48px;
  background:linear-gradient(135deg,rgba(16,185,129,.15),rgba(59,130,246,.15));
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
  font-size:24px;
}

.tech-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--border);
}

.tech-tag{
  display:inline-flex;
  align-items:center;
  padding:5px 12px;
  background:#ffffff;
  border:1px solid #e0e7ee;
  border-radius:8px;
  font-size:13px;
  font-weight:600;
  color:var(--fg);
  transition:all .2s;
}

.tech-tag:hover{
  background:rgba(16,185,129,.08);
  border-color:var(--brand);
  transform:translateY(-1px);
}

.card-desc{
  color:var(--fg-secondary);
  font-size:14px;
  line-height:1.6;
  margin:0;
}

.clients-section{
  background:var(--card);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:48px 0;
  margin:0;
}

.clients-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:32px 24px;
  align-items:center;
  justify-items:center;
  margin:32px 0;
}

.client-logo{
  width:100%;
  max-width:140px;
  height:auto;
  opacity:0.7;
  filter:grayscale(100%);
  transition:all .3s;
}

.client-logo:hover{
  opacity:1;
  filter:grayscale(0%);
  transform:scale(1.05);
}

@media(max-width:1024px){
  .clients-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:28px 20px;
  }
}

@media(max-width:768px){
  .clients-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px 16px;
  }
  
  .clients-section{
    padding:36px 0;
    margin:48px 0;
  }
}

@media(max-width:480px){
  .clients-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px 12px;
  }
  
  .client-logo{
    max-width:120px;
  }
}

.contact-form{
  max-width:600px;
  margin:32px auto;
  padding:32px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:8px;
}

.form-group{
  margin-bottom:20px;
}

.form-group label{
  display:block;
  font-weight:500;
  margin-bottom:8px;
  color:var(--fg);
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:12px 16px;
  border:1px solid var(--border);
  border-radius:6px;
  font-family:inherit;
  font-size:15px;
  background:var(--bg);
  color:var(--fg);
  transition:border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--brand);
}

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

.form-message{
  margin-top:20px;
  padding:16px;
  border-radius:6px;
  font-weight:500;
}

.form-message.success{
  background:#d1fae5;
  color:#065f46;
  border:1px solid #6ee7b7;
}

.form-message.error{
  background:#fee2e2;
  color:#991b1b;
  border:1px solid #fca5a5;
}

@media(max-width:768px){
  .contact-form{
    padding:24px;
  }
}

.legal-section{
  margin-top:48px;
  margin-bottom:48px;
}

.legal-section:first-of-type{
  margin-top:32px;
}

.legal-section h2{
  color:var(--fg);
  margin-bottom:20px;
  padding-bottom:12px;
  border-bottom:2px solid var(--border);
}

.legal-section h3{
  color:var(--fg);
  margin-top:32px;
  margin-bottom:16px;
  font-size:20px;
}

.legal-section p{
  margin-bottom:16px;
  line-height:1.8;
}

.legal-section ul.list{
  margin-bottom:20px;
}

.legal-section ul.list li{
  margin-bottom:12px;
}

.cookie-banner{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:rgba(255,255,255,.98);
  border-top:2px solid var(--border);
  box-shadow:0 -4px 20px rgba(0,0,0,.15);
  z-index:100;
  display:none;
  animation:slideUp .4s ease;
}

@keyframes slideUp{
  from{transform:translateY(100%)}
  to{transform:translateY(0)}
}

.cookie-banner-content{
  max-width:1120px;
  margin:0 auto;
  padding:24px;
  display:flex;
  align-items:center;
  gap:32px;
  flex-wrap:wrap;
}

.cookie-banner-text{
  flex:1;
  min-width:300px;
}

.cookie-banner-text strong{
  display:block;
  font-size:18px;
  margin-bottom:8px;
  color:var(--fg);
}

.cookie-banner-text p{
  color:var(--fg-secondary);
  font-size:14px;
  line-height:1.6;
  margin:0;
}

.cookie-banner-text a{
  color:var(--brand2);
  text-decoration:underline;
}

.cookie-banner-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.cookie-accept{
  padding:12px 28px;
  font-weight:600;
}

.cookie-reject{
  padding:12px 28px;
  background:transparent;
  border:2px solid var(--border);
  color:var(--fg);
  font-weight:600;
  border-radius:6px;
  cursor:pointer;
  transition:all .2s;
  white-space:nowrap;
}

.cookie-reject:hover{
  background:var(--card);
  border-color:var(--muted);
}

@media(max-width:768px){
  .cookie-banner-content{
    flex-direction:column;
    align-items:stretch;
    gap:20px;
    padding:20px;
  }
  
  .cookie-banner-text{
    min-width:auto;
  }
  
  .cookie-banner-actions{
    width:100%;
  }
  
  .cookie-accept,
  .cookie-reject{
    flex:1;
    text-align:center;
  }
}

.blog-intro{
  font-size:18px;
  color:var(--fg-secondary);
  margin-bottom:48px;
  line-height:1.8;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
  gap:32px;
  margin-bottom:64px;
}

.blog-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:8px;
  padding:28px;
  transition:all .3s;
  display:flex;
  flex-direction:column;
}

.blog-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}

.blog-card-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:16px;
}

.blog-category{
  background:var(--brand);
  color:white;
  padding:4px 12px;
  border-radius:4px;
  font-size:13px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.5px;
}

.blog-date{
  color:var(--muted);
  font-size:14px;
}

.blog-card-title{
  font-size:22px;
  font-weight:700;
  margin:0 0 16px 0;
  line-height:1.4;
}

.blog-card-title a{
  color:var(--fg);
  text-decoration:none;
  transition:color .2s;
}

.blog-card-title a:hover{
  color:var(--brand2);
  text-decoration:none;
}

.blog-card-excerpt{
  color:var(--fg-secondary);
  line-height:1.7;
  margin-bottom:20px;
  flex-grow:1;
}

.blog-read-more{
  color:var(--brand2);
  font-weight:600;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  transition:all .2s;
}

.blog-read-more:hover{
  color:var(--brand);
  transform:translateX(4px);
}

.blog-post{
  max-width:800px;
  margin:0 auto;
}

.blog-post-header{
  margin-bottom:48px;
}

.blog-back{
  display:inline-block;
  color:var(--brand2);
  text-decoration:none;
  margin-bottom:24px;
  font-weight:500;
  transition:all .2s;
}

.blog-back:hover{
  color:var(--brand);
  transform:translateX(-4px);
}

.blog-post-meta{
  display:flex;
  gap:16px;
  margin-bottom:20px;
}

.blog-post h1{
  font-size:42px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:20px;
  color:var(--fg);
}

.blog-post-lead{
  font-size:20px;
  color:var(--fg-secondary);
  line-height:1.7;
  margin-bottom:32px;
}

.blog-post-content{
  font-size:17px;
  line-height:1.8;
  color:var(--fg);
}

.blog-post-content h2{
  font-size:32px;
  font-weight:700;
  margin-top:48px;
  margin-bottom:20px;
  color:var(--fg);
}

.blog-post-content h3{
  font-size:24px;
  font-weight:600;
  margin-top:36px;
  margin-bottom:16px;
  color:var(--fg);
}

.blog-post-content h4{
  font-size:20px;
  font-weight:600;
  margin-top:28px;
  margin-bottom:12px;
  color:var(--fg);
}

.blog-post-content p{
  margin-bottom:20px;
}

.blog-post-content ul.list,
.blog-post-content ol.list{
  margin-bottom:24px;
}

.blog-post-content ul.list li,
.blog-post-content ol.list li{
  margin-bottom:12px;
}

.blog-post-content pre{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:6px;
  padding:20px;
  overflow-x:auto;
  margin:24px 0;
  font-family:'Courier New',monospace;
  font-size:14px;
  line-height:1.6;
}

.blog-post-content code{
  background:var(--card);
  padding:2px 6px;
  border-radius:3px;
  font-family:'Courier New',monospace;
  font-size:14px;
}

.blog-post-content pre code{
  background:transparent;
  padding:0;
}

.blog-post-footer{
  margin-top:64px;
  padding-top:48px;
  border-top:2px solid var(--border);
}

@media(max-width:768px){
  .blog-grid{
    grid-template-columns:1fr;
    gap:24px;
  }
  
  .blog-card{
    padding:24px;
  }
  
  .blog-post h1{
    font-size:32px;
  }
  
  .blog-post-lead{
    font-size:18px;
  }
  
  .blog-post-content{
    font-size:16px;
  }
  
  .blog-post-content h2{
    font-size:26px;
  }
  
  .blog-post-content h3{
    font-size:22px;
  }
}


/* Pricing Cards MVP */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:32px;
  margin:48px 0;
}

.pricing-card{
  background:var(--card);
  border:2px solid var(--border);
  border-radius:16px;
  padding:32px 28px;
  transition:all .3s ease;
  position:relative;
  display:flex;
  flex-direction:column;
}

.pricing-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(0,0,0,.08);
  border-color:var(--brand);
}

.pricing-card-popular{
  border-color:var(--brand);
  box-shadow:0 8px 24px rgba(16,185,129,.15);
  transform:scale(1.02);
}

.pricing-card-popular:hover{
  transform:scale(1.02) translateY(-4px);
  box-shadow:0 16px 40px rgba(16,185,129,.2);
}

.pricing-popular-badge{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:white;
  padding:6px 20px;
  border-radius:20px;
  font-size:13px;
  font-weight:700;
  box-shadow:0 4px 12px rgba(16,185,129,.3);
}

.pricing-header{
  text-align:center;
  margin-bottom:24px;
  padding-bottom:20px;
  border-bottom:1px solid var(--border);
}

.pricing-header h3{
  font-size:24px;
  font-weight:700;
  color:var(--fg);
  margin:0 0 8px 0;
}

.pricing-badge{
  display:inline-block;
  background:var(--brand);
  color:white;
  padding:4px 12px;
  border-radius:12px;
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.5px;
}

.pricing-amount{
  text-align:center;
  margin-bottom:16px;
}

.pricing-from{
  display:block;
  font-size:14px;
  color:var(--muted);
  margin-bottom:4px;
  font-weight:500;
}

.pricing-price{
  display:block;
  font-size:48px;
  font-weight:800;
  color:var(--brand);
  line-height:1;
  letter-spacing:-1px;
}

.pricing-duration{
  text-align:center;
  font-size:15px;
  color:var(--fg-secondary);
  margin-bottom:24px;
  padding-bottom:24px;
  border-bottom:1px solid var(--border);
  font-weight:500;
}

.pricing-features{
  flex-grow:1;
  margin-bottom:24px;
}

.pricing-feature{
  padding:10px 0;
  font-size:15px;
  color:var(--fg);
  line-height:1.5;
}

.pricing-example{
  background:rgba(16,185,129,.05);
  border:1px solid rgba(16,185,129,.15);
  border-radius:10px;
  padding:16px;
  font-size:14px;
  color:var(--fg-secondary);
  line-height:1.6;
}

.pricing-example strong{
  color:var(--fg);
  display:block;
  margin-bottom:6px;
}

@media(max-width:992px){
  .pricing-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:24px;
  }
}

@media(max-width:640px){
  .pricing-grid{
    grid-template-columns:1fr;
    gap:24px;
  }
  
  .pricing-card{
    padding:24px 20px;
  }
  
  .pricing-card-popular{
    transform:scale(1);
  }
  
  .pricing-card-popular:hover{
    transform:translateY(-4px);
  }
  
  .pricing-price{
    font-size:40px;
  }
  
  .pricing-header h3{
    font-size:22px;
  }
}

/* Stack tecnológico */
.tech-stack-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin:32px 0;
}

.tech-category-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px;
  transition:all .3s cubic-bezier(.4,0,.2,1);
}

.tech-category-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:#cbd5e0;
}

.tech-category-header{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:16px;
}

.tech-category-icon{
  font-size:40px;
  line-height:1;
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(16,185,129,.1), rgba(59,130,246,.1));
  border-radius:12px;
}

.tech-category-header h3{
  margin:0;
  font-size:20px;
  color:var(--fg);
  font-weight:700;
}

.tech-category-desc{
  color:var(--fg-secondary);
  font-size:14px;
  line-height:1.5;
  margin:0 0 20px 0;
}

.tech-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.tech-badge{
  display:inline-block;
  background:rgba(248,249,250,.8);
  color:var(--fg-secondary);
  border:1px solid var(--border);
  border-radius:8px;
  padding:6px 12px;
  font-size:13px;
  font-weight:500;
  transition:all .2s;
}

.tech-badge:hover{
  background:rgba(248,249,250,1);
  border-color:#cbd5e0;
  transform:translateY(-1px);
}

.tech-badge-primary{
  background:linear-gradient(135deg, rgba(16,185,129,.15), rgba(59,130,246,.15));
  color:var(--brand2);
  border:1px solid rgba(59,130,246,.3);
  font-weight:600;
}

.tech-badge-primary:hover{
  background:linear-gradient(135deg, rgba(16,185,129,.25), rgba(59,130,246,.25));
  border-color:rgba(59,130,246,.5);
}

@media(max-width:992px){
  .tech-stack-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:640px){
  .tech-stack-grid{
    grid-template-columns:1fr;
  }
  
  .tech-category-card{
    padding:24px;
  }
  
  .tech-category-icon{
    width:48px;
    height:48px;
    font-size:32px;
  }
  
  .tech-category-header h3{
    font-size:18px;
  }
}
