/* RC&Co Technologies — Futuristic, accessible theme */
:root{
  --bg:#0b0f1a;
  --card:#101627;
  --muted:#a7b0c0;
  --text:#e9eef7;
  --brand:#2dd4bf;
  --brand-2:#3b82f6;
  --line:rgba(255,255,255,.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji', sans-serif;
  background: radial-gradient(1200px 800px at 20% -10%, rgba(61,130,246,.18), transparent 60%),
              radial-gradient(1000px 700px at 110% 10%, rgba(45,212,191,.18), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.6;
}

.container{width:min(1120px, 92%); margin:0 auto}
a{color:var(--brand); text-decoration:none}
a:hover{text-decoration:underline}

.site-header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background:linear-gradient(180deg, rgba(11,15,26,.8), rgba(11,15,26,.3));
  border-bottom:1px solid var(--line);
}
.site-header .nav{
  display:flex; align-items:center; justify-content:space-between; padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:700; color:var(--text)}
.brand img{width:60px; height:60px; border-radius:8px}
.brand strong{color:var(--brand-2); font-weight:800}

nav a{margin:0 12px; color:var(--muted)}
nav a.btn{margin-left:18px}
.nav-toggle{display:none; background:none; border:1px solid var(--line); color:var(--text); padding:6px 10px; border-radius:8px}

.hero{padding:72px 0 40px; border-bottom:1px solid var(--line)}
.hero-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:36px; align-items:center}
.hero h1{font-size:clamp(32px, 4vw, 54px); line-height:1.1; margin:0 0 12px}
.grad{background:linear-gradient(90deg,var(--brand),var(--brand-2)); -webkit-background-clip:text; background-clip:text; color:transparent}
.hero p{color:var(--muted); margin:0 0 18px}
.cta{display:flex; gap:12px; margin:8px 0 14px}
.trust{display:flex; gap:18px; padding:0; margin:10px 0 0; list-style:none; color:#cdd6e6; font-size:14px}
.hero-visual img{width:100%; border-radius:18px; border:1px solid var(--line)}
.hero-visual1 img{width:50%; border-radius:18px; border:1px solid var(--line)}

.btn{background:linear-gradient(90deg,var(--brand-2),var(--brand)); color:#05101a; font-weight:700; padding:12px 18px; border:none; border-radius:12px; box-shadow:0 8px 24px rgba(59,130,246,.25); cursor:pointer; display:inline-block}
.btn:hover{filter:brightness(1.05)}
.btn.ghost{background:transparent; color:var(--text); border:1px solid var(--line)}
.btn-sm{padding:8px 12px; border-radius:10px}

.section{padding:72px 0}
.section.alt{background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00)); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section-title{font-size:32px; margin:0 0 6px}
.section-subtitle{color:var(--muted); margin:0 0 28px}

.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.card{background:rgba(255,255,255,.02); border:1px solid var(--line); border-radius:16px; padding:18px}
.card h3{margin:0 0 8px}
.card ul{margin:10px 0 0 18px; color:#cfd6e8}

.grid.gallery{display:grid; grid-template-columns:repeat(3,1fr); gap:12px}
.gallery figure{margin:0}
.gallery img{width:100%; height:220px; object-fit:cover; border-radius:14px; border:1px solid var(--line)}
.gallery figcaption{font-size:14px; color:#cfd6e8; margin-top:6px}

.steps{display:grid; grid-template-columns:repeat(4,1fr); gap:14px}
.step{background:rgba(255,255,255,.02); border:1px solid var(--line); border-radius:16px; padding:18px}
.step span{display:inline-block; font-weight:700; color:var(--brand-2); margin-bottom:6px}

.pricing{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.price-card{background:rgba(255,255,255,.02); border:1px solid var(--line); border-radius:16px; padding:22px}
.price-card .price{font-size:28px; font-weight:800}
.price-card.featured{background:linear-gradient(180deg, rgba(59,130,246,.12), rgba(45,212,191,.10)); border-color:rgba(90,150,255,.35)}

.about{display:grid; grid-template-columns:1fr .9fr; gap:18px; align-items:center}
.about-visual img{width:100%; border-radius:16px; border:1px solid var(--line)}
.bullets{margin:10px 0 0 18px; color:#cfd6e8}

.testimonials .testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
blockquote{margin:0; padding:16px; background:rgba(255,255,255,.02); border-left:3px solid var(--brand-2); border-radius:12px}

.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:22px}
.contact-list{list-style:none; padding:0; margin:10px 0; color:#cfd6e8}
.contact-form label{display:block; margin-bottom:12px}
.contact-form input,.contact-form textarea{
  width:100%; background:rgba(255,255,255,.03); border:1px solid var(--line); border-radius:10px;
  padding:12px 12px; color:var(--text)
}
.contact-form input:focus,.contact-form textarea:focus{outline:2px solid rgba(59,130,246,.55)}

.site-footer{border-top:1px solid var(--line); padding:22px 0; color:#b8c0d0}
.foot{display:flex; align-items:center; justify-content:space-between}
.site-footer nav a{color:#b8c0d0; margin-left:12px}

dialog{border:none; border-radius:14px; padding:18px; max-width:560px}
dialog::backdrop{background:rgba(0,0,0,.5)}

.whatsapp-fab{
  position:fixed; right:18px; bottom:18px; background:linear-gradient(90deg,var(--brand),var(--brand-2));
  color:#05101a; padding:12px 14px; border-radius:999px; border:1px solid var(--line);
  box-shadow:0 10px 26px rgba(0,0,0,.35); font-weight:800
}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr 1fr}
  .grid.gallery{grid-template-columns:1fr 1fr}
  .steps{grid-template-columns:1fr 1fr}
  .pricing{grid-template-columns:1fr}
  .about{grid-template-columns:1fr}
  .testimonials .testi-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  nav{display:none}
  .nav-toggle{display:inline-flex}
  .site-header .nav{gap:10px}
  .site-header nav.open{display:flex; flex-direction:column; position:absolute; right:4%; top:60px; background:rgba(9,12,20,.98); border:1px solid var(--line); padding:12px; border-radius:12px}
  nav.open a{margin:6px 0}
}
/* === Futuristic Interlude (between Services & Process) === */
.interlude{position:relative; height:34vh; min-height:420px; border-top:1px solid var(--line); border-bottom:1px solid var(--line); overflow:hidden; background:radial-gradient(1000px 600px at 80% -10%, rgba(59,130,246,.18), transparent 60%), radial-gradient(1000px 600px at 20% 110%, rgba(45,212,191,.20), transparent 60%);}
.interlude canvas{position:absolute; inset:0; width:100%; height:100%}
.interlude-overlay{position:absolute; inset:0; display:grid; place-items:center; text-align:center; pointer-events:none}
.interlude .headline{font-size:clamp(28px,4vw,44px); margin:.2rem 0 .3rem 0}
.interlude .sub{color:#cfe6ff; opacity:.9; letter-spacing:.12em}
.interlude .tag{color:#a6b3c7; font-weight:600; letter-spacing:.18em; text-transform:uppercase; font-size:.8rem}
/* Floating energy orb */
.interlude .orb{position:absolute; width:420px; height:420px; border-radius:50%; filter:blur(110px); background:
  radial-gradient(closest-side, rgba(45,212,191,.55), rgba(45,212,191,0)),
  radial-gradient(closest-side, rgba(59,130,246,.55), rgba(59,130,246,0));
  animation: float 10s ease-in-out infinite alternate;
  opacity:.9;
}
@keyframes float{from{transform:translateY(20px)} to{transform:translateY(-20px)}}

.web-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.web-card {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.web-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}

.web-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.web-card h3 {
  margin: 12px;
  font-size: 1.1rem;
}

.web-card p {
  margin: 0 12px 16px;
  color: var(--muted);
  font-size: .9rem;
}


/* Language switcher */
.lang-switch{display:inline-flex; gap:6px; margin-left:8px; vertical-align:middle}
.lang-btn{background:transparent; border:1px solid var(--line); color:var(--text); padding:6px 10px; border-radius:8px; cursor:pointer; font-weight:700}
.lang-btn[aria-current="true"]{background:linear-gradient(90deg,var(--brand-2),var(--brand)); color:#061018; border-color:transparent}
/* Minor spacing polish for section subtitles */
.section-subtitle{max-width:68ch}



/* Brand badge in hero (logo moved from top bar) */
.brand-badge{display:inline-flex; align-items:center; gap:10px; padding:6px 10px; border:1px solid var(--line); border-radius:12px; background:rgba(255,255,255,.03); margin-bottom:10px}
.brand-badge img{width:28px; height:28px; border-radius:6px}
.brand-badge span{font-weight:800; letter-spacing:.02em}
/* Remove left gap if brand had image before */
header .brand img{display:none}



/* Floating corner logo — prominent and always visible on hero */
.corner-logo{
  position:fixed; left:18px; top:78px; z-index:50;
  display:flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line); padding:10px 12px; border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.35); backdrop-filter: blur(8px);
  color:var(--text); text-decoration:none; font-weight:800;
}
.corner-logo img{width:36px; height:36px; border-radius:8px}
.corner-logo:hover{filter:brightness(1.06)}
@media (max-width: 720px){
  .corner-logo{left:12px; top:68px; padding:8px 10px}
  .corner-logo span{display:none} /* keep minimal on mobile */
}



/* Language switch fix */
.lang-switch{display:inline-flex; gap:6px; margin-left:12px}
.lang-btn{background:transparent; border:1px solid var(--line); color:var(--text); padding:6px 10px; border-radius:8px; cursor:pointer; font-weight:700}
.lang-btn[aria-current="true"]{background:linear-gradient(90deg,var(--brand-2),var(--brand)); color:#061018; border-color:transparent}
/* About section logo */
.section-logo{margin:0 0 14px 0}
.section-logo img{height:48px; width:auto; border-radius:10px; display:block}
@media (max-width:768px){
  .section-logo img{height:42px}
}


