
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --background: hsl(0,0%,7%);
  --foreground: hsl(0,0%,100%);
  --card: hsl(0,0%,10%);
  --primary: hsl(48,97%,60%);
  --primary-foreground: hsl(0,0%,7%);
  --secondary: hsl(0,0%,14%);
  --secondary-foreground: hsl(0,0%,100%);
  --muted: hsl(0,0%,18%);
  --muted-foreground: hsl(0,0%,65%);
  --accent: hsl(48,97%,60%);
  --border: hsl(0,0%,20%);
  --section-dark: hsl(0,0%,7%);
  --section-darker: hsl(0,0%,5%);
  --section-light: hsl(0,0%,12%);
  --hero-overlay: linear-gradient(90deg, hsla(0,0%,0%,0.85) 0%, hsla(0,0%,0%,0.4) 60%, transparent 100%);
  --yellow-glow: 0 0 40px hsla(48,97%,60%,0.3);
  --radius: 0.25rem;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* Layout */
.page-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: hsla(0,0%,7%,0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
}
@media(min-width:768px) { .header-inner { padding: 1rem 4rem; } }
@media(min-width:1024px) { .header-inner { padding: 1rem 6rem; } }

.logo { display: flex; align-items: center; gap: 2px; }
.logo-bracket { color: var(--primary); font-size: 2rem; font-weight: 700; }
.logo-web { font-size: 1.75rem; font-weight: 700; }
.logo-rental { color: var(--primary); font-size: 1.75rem; font-weight: 700; }
.logo-r { font-size: 0.75rem; vertical-align: super; }

.desktop-nav { display: none; align-items: center; gap: 2rem; }
@media(min-width:768px) { .desktop-nav { display: flex; } }
.desktop-nav a { font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); }

.nav-dropdown { position: relative; }
.nav-dropdown-btn { background: none; border: none; color: var(--foreground); font-size: 0.875rem; font-weight: 500; display: flex; align-items: center; gap: 4px; }
.nav-dropdown-btn:hover { color: var(--primary); }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; margin-top: 0.5rem;
  width: 12rem; background: var(--section-light); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 0.75rem 1rem; font-size: 0.875rem;
  color: var(--muted-foreground); transition: all 0.2s;
  border-bottom: 1px solid var(--border);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--primary); background: hsla(0,0%,7%,0.5); }

.header-cta {
  display: none; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.5rem; border: 1px solid var(--foreground);
  background: transparent; color: var(--foreground); font-size: 0.875rem; font-weight: 500;
  transition: all 0.3s;
}
@media(min-width:768px) { .header-cta { display: inline-flex; } }
.header-cta:hover { background: var(--primary); border-color: var(--primary); color: var(--primary-foreground); }

.mobile-toggle { display: block; background: none; border: none; color: var(--foreground); font-size: 1.5rem; }
@media(min-width:768px) { .mobile-toggle { display: none; } }

.mobile-nav {
  display: none; background: var(--background); border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 0.5rem 0; font-size: 0.875rem; font-weight: 500; }
.mobile-nav a:hover { color: var(--primary); }

/* Hero */
.hero-section {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; background: var(--hero-overlay); z-index: 1;
}
.yellow-chevron {
  position: absolute; width: 400px; height: 400px;
  border: 4px solid var(--primary); transform: rotate(45deg);
  right: 15%; top: 20%; z-index: 1; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 10; max-width: 42rem; padding: 5rem 1.5rem 0;
}
@media(min-width:768px) { .hero-content { padding: 5rem 4rem 0; } }
@media(min-width:1024px) { .hero-content { padding: 5rem 6rem 0; } }
.hero-content h1 {
  font-size: 2.25rem; font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem;
}
@media(min-width:768px) { .hero-content h1 { font-size: 3rem; } }
@media(min-width:1024px) { .hero-content h1 { font-size: 3.75rem; } }
.hero-content p { color: var(--muted-foreground); margin-bottom: 2rem; max-width: 36rem; }

/* Sections */
.section-padding { padding: 5rem 1.5rem; }
@media(min-width:768px) { .section-padding { padding: 7rem 4rem; } }
@media(min-width:1024px) { .section-padding { padding: 7rem 6rem; } }
.section-dark { background: var(--section-dark); }
.section-darker { background: var(--section-darker); }

/* Text highlight */
.text-highlight { color: var(--primary); }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem; border: 2px solid var(--primary);
  color: var(--foreground); font-weight: 500; transition: all 0.3s;
  background: transparent;
}
.btn-primary:hover { background: var(--primary); color: var(--primary-foreground); }

/* CTA Banner */
.cta-banner {
  padding: 4rem 1.5rem; text-align: center;
  background: var(--primary); color: var(--primary-foreground);
}
@media(min-width:768px) { .cta-banner { padding: 4rem 4rem; } }
.cta-banner h2, .cta-banner h3 { font-weight: 700; margin-bottom: 1rem; }
.cta-banner .cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem; background: var(--primary-foreground); color: var(--primary);
  font-weight: 500; border: none; margin-top: 1rem; transition: opacity 0.2s;
}
.cta-banner .cta-btn:hover { opacity: 0.9; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media(min-width:1024px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:768px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-2-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media(min-width:768px) { .grid-6 { grid-template-columns: repeat(6, 1fr); } }

.items-center { align-items: center; }
.items-start { align-items: start; }

/* Cards */
.testimonial-card { padding: 2rem; border-radius: var(--radius); background: var(--section-light); }
.testimonial-card p.quote { color: var(--muted-foreground); font-size: 0.875rem; font-style: italic; margin-bottom: 1rem; }
.testimonial-card .name { font-weight: 500; font-size: 0.875rem; }
.testimonial-card .company { color: var(--muted-foreground); font-size: 0.75rem; }

.service-card {
  padding: 2rem; border-radius: var(--radius); background: var(--section-light);
  transition: all 0.3s; display: block;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--yellow-glow); }
.service-card .icon { width: 2.5rem; height: 2.5rem; color: var(--primary); margin-bottom: 1rem; }
.service-card h3 { font-weight: 600; margin-bottom: 0.5rem; }
.service-card p { color: var(--muted-foreground); font-size: 0.875rem; }

.project-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4/3; cursor: pointer;
}
.project-card img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s;
}
.project-card:hover img { transform: scale(1.1); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4), transparent);
  opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem;
}
.project-card:hover .project-card-overlay { opacity: 1; }
.project-card-overlay h4 { font-weight: 700; font-size: 1.125rem; }
.project-card-overlay p { color: var(--muted-foreground); font-size: 0.875rem; margin-top: 0.25rem; }
.project-card-overlay .tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.project-card-overlay .tag {
  font-size: 0.75rem; padding: 0.25rem 0.5rem;
  border: 1px solid var(--border); color: var(--muted-foreground);
}

/* Form */
.contact-form-input {
  width: 100%; padding: 0.75rem 1rem; background: transparent;
  border: 1px solid var(--border); color: var(--foreground);
  font-family: inherit; font-size: 0.875rem; transition: border-color 0.2s;
}
.contact-form-input::placeholder { color: var(--muted-foreground); }
.contact-form-input:focus { outline: none; border-color: var(--primary); }
select.contact-form-input { appearance: auto; }
textarea.contact-form-input { resize: none; }

.form-submit-btn {
  width: 100%; padding: 0.75rem; background: var(--primary); color: var(--primary-foreground);
  font-weight: 600; border: none; transition: opacity 0.2s; font-size: 1rem;
}
.form-submit-btn:hover { opacity: 0.9; }
.form-submit-btn:disabled { opacity: 0.5; }

/* Value cards */
.value-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1.5rem; gap: 1rem;
}
.value-icon {
  width: 4rem; height: 4rem; border-radius: 50%; background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 2rem; height: 2rem; color: var(--primary); }
.value-card h4 { font-weight: 600; }
.value-card p { color: var(--muted-foreground); font-size: 0.875rem; }

/* Timeline */
.timeline-item { position: relative; padding-left: 2rem; padding-bottom: 2rem; border-left: 2px solid var(--primary); }
.timeline-dot {
  position: absolute; left: -9px; top: 0; width: 1rem; height: 1rem;
  border-radius: 50%; background: var(--primary);
}
.timeline-item h4 { font-weight: 600; font-size: 1.125rem; margin-bottom: 0.5rem; }
.timeline-item .year { color: var(--primary); font-weight: 700; font-size: 1.125rem; margin-bottom: 0.25rem; }
.timeline-item p { color: var(--muted-foreground); font-size: 0.875rem; }

/* Tech badges */
.tech-badge {
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; background: var(--secondary); border-radius: var(--radius);
  color: var(--muted-foreground); font-size: 0.875rem; font-weight: 500;
}

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 56rem; margin: 0 auto; }
@media(min-width:768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
.pricing-card {
  border-radius: var(--radius); overflow: hidden; background: var(--section-light);
}
.pricing-card.featured { border: 2px solid var(--primary); }
.pricing-badge { background: var(--primary); color: var(--primary-foreground); text-align: center; padding: 0.5rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-card .inner { padding: 2rem; }
.pricing-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-amount { font-size: 2.25rem; font-weight: 700; }
.pricing-amount.highlight { color: var(--primary); }
.pricing-period { color: var(--muted-foreground); }
.pricing-features { margin: 1.5rem 0 2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 0.75rem; }
.pricing-features .check { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.pricing-btn-primary {
  width: 100%; padding: 0.75rem; background: var(--primary); color: var(--primary-foreground);
  font-weight: 600; border: none; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: opacity 0.2s;
}
.pricing-btn-primary:hover { opacity: 0.9; }
.pricing-btn-outline {
  width: 100%; padding: 0.75rem; background: transparent; border: 2px solid var(--primary);
  color: var(--foreground); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all 0.3s;
}
.pricing-btn-outline:hover { background: var(--primary); color: var(--primary-foreground); }

/* FAQ Accordion */
.faq-category h3 { font-weight: 600; font-size: 1.125rem; margin-bottom: 1rem; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--section-light); margin-bottom: 0.5rem; overflow: hidden;
}
.faq-question {
  width: 100%; padding: 1rem 1.5rem; background: none; border: none;
  color: var(--foreground); font-size: 0.875rem; font-weight: 500;
  text-align: left; display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s; cursor: pointer;
}
.faq-question:hover { color: var(--primary); }
.faq-question .arrow { transition: transform 0.2s; font-size: 0.75rem; }
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem; color: var(--muted-foreground); font-size: 0.875rem;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 1.5rem 1rem; }

/* Filter tabs */
.filter-tabs { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; padding: 0 1.5rem; }
.filter-tab {
  padding: 0.5rem 1.5rem; font-size: 0.875rem; font-weight: 500;
  background: var(--secondary); color: var(--muted-foreground); border: none;
  transition: all 0.2s;
}
.filter-tab.active { background: var(--primary); color: var(--primary-foreground); }
.filter-tab:hover { color: var(--foreground); }

/* Check list */
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.check-list .check { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.bullet-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.bullet { width: 0.5rem; height: 0.5rem; background: var(--primary); border-radius: 50%; flex-shrink: 0; margin-top: 0.5rem; }

/* Contact info */
.contact-info a { display: flex; align-items: center; gap: 0.75rem; transition: color 0.2s; }
.contact-info a:hover { color: var(--primary); }

/* Info boxes */
.info-box { padding: 2rem; background: var(--secondary); border-radius: var(--radius); text-align: center; }
.info-box h3 { font-weight: 600; margin: 1rem 0 0.5rem; }
.info-box p, .info-box a { color: var(--muted-foreground); font-size: 0.875rem; transition: color 0.2s; }
.info-box a:hover { color: var(--primary); }

/* Feature box */
.feature-box { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1.5rem; border-radius: var(--radius); background: var(--section-light); }
.feature-box span { font-weight: 500; }

/* WhatsApp */
.whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: #25D366; color: white; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); transition: transform 0.2s; border: none;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* Footer */
.site-footer {
  padding: 4rem 1.5rem; background: var(--section-darker);
  border-top: 1px solid var(--border);
}
@media(min-width:768px) { .site-footer { padding: 4rem 4rem; } }
@media(min-width:1024px) { .site-footer { padding: 4rem 6rem; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media(min-width:768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h5 { font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; }
.footer-col a, .footer-col p { color: var(--muted-foreground); font-size: 0.875rem; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media(min-width:768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { color: var(--muted-foreground); font-size: 0.75rem; }

/* Utility */
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.italic { font-style: italic; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-7 { padding-left: 1.75rem; }
.pt-12 { padding-top: 3rem; }
.w-full { width: 100%; }
.rounded-sm { border-radius: var(--radius); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

/* SVG icons inline */
.icon-svg { width: 1.25rem; height: 1.25rem; display: inline-block; vertical-align: middle; }
.icon-svg-lg { width: 2.5rem; height: 2.5rem; }

/* Map */
.map-container { border-radius: var(--radius); overflow: hidden; min-height: 400px; margin-top: 2rem; }
.map-container iframe { width: 100%; height: 400px; border: 0; }

/* Lead form modal */
.modal-overlay { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.modal-content {
  position: relative; width: 100%; max-width: 42rem; max-height: 90vh;
  overflow-y: auto; border-radius: var(--radius); background: var(--section-light); padding: 2rem 2.5rem;
}
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: var(--muted-foreground); font-size: 1.5rem; transition: color 0.2s; }
.modal-close:hover { color: var(--foreground); }
.hidden { display: none; }

/* Responsive font sizes */
@media(min-width:768px) {
  .md-text-4xl { font-size: 2.25rem; }
  .md-text-3xl { font-size: 1.875rem; }
  .md-text-2xl { font-size: 1.5rem; }
  .md-text-lg { font-size: 1.125rem; }
}

/* Two-col image+text */
.split-section { display: grid; grid-template-columns: 1fr; }
@media(min-width:1024px) { .split-section { grid-template-columns: 1fr 1fr; } }
.split-section img { width: 100%; height: 100%; object-fit: cover; }
.split-section .content { display: flex; flex-direction: column; justify-content: center; }

/* Order helpers */
@media(min-width:1024px) {
  .lg-order-1 { order: 1; }
  .lg-order-2 { order: 2; }
}

/* Star icon for list */
.star-list li { display: flex; align-items: center; gap: 0.5rem; color: var(--muted-foreground); }
.star-list .star { color: var(--primary); }

/* Gallery order on mobile for email hosting image */
.order-2 { order: 2; }
.order-1 { order: 1; }
@media(min-width:1024px) { .lg-order-1 { order: 1; } .lg-order-2 { order: 2; } }
