:root {
--blue-dark: #0b1f3a;
--blue: #123e6f;
--green: #78c841;
--text: #1f2933;
--muted: #64748b;
--light: #f4f8fb;
--white: #ffffff;
--shadow: 0 18px 45px rgba(11,31,58,0.12);
--radius: 22px;
}

* {
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
color: var(--text);
background: var(--white);
line-height: 1.6;
}

a {
color: inherit;
text-decoration: none;
}

img {
max-width: 100%;
display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.narrow {
max-width: 850px;
}

.site-header {
position: sticky;
top: 0;
z-index: 50;
background: rgba(11,31,58,0.96);
color: white;
}

.nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 90px;
  width: auto;
  display: block;
}

nav {
    margin-left: auto;
    display: flex;
    gap: 28px;
}

nav a:hover {
color: var(--green);
}

.hero {
background:
radial-gradient(circle at 10% 20%, rgba(120,200,65,.15), transparent 35%),
linear-gradient(135deg,#07172c 0%,#0b1f3a 55%,#123e6f 100%);
color: white;
}

.hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
min-height: 720px;
}

.hero-text {
position: relative;
z-index: 10;
}

.eyebrow {
display: inline-block;
padding: 10px 18px;
border-radius: 999px;
background: rgba(120,200,65,.15);
color: #baf29a;
font-weight: 700;
margin-bottom: 20px;
}

h1 {
font-size: clamp(2.8rem, 4.5vw, 4.5rem);
line-height: 1.05;
margin-bottom: 24px;
}

h2 {
font-size: clamp(2rem,4vw,3.2rem);
color: var(--blue-dark);
margin-bottom: 24px;
}

.hero-subline {
font-size: 1.4rem;
max-width: 560px;
color: rgba(255,255,255,.9);
}

.hero-buttons {
display: flex;
gap: 16px;
margin-top: 30px;
margin-bottom: 24px;
}

.hero-note {
font-weight: 700;
color: rgba(255,255,255,.8);
}

.btn {
padding: 15px 28px;
border-radius: 999px;
font-weight: 800;
display: inline-flex;
align-items: center;
justify-content: center;
}

.btn.primary {
background: var(--green);
color: #07172c;
}

.btn.secondary {
border: 1px solid rgba(255,255,255,.25);
background: rgba(255,255,255,.08);
color: white;
}

.section .btn.secondary {
    background: white;
    color: var(--blue-dark);
    border: 1px solid rgba(11,31,58,.15);
    box-shadow: var(--shadow);
}

.hero-image {
display: flex;
justify-content: center;
}

.hero-image img {
width: 100%;
max-width: 580px;
height: auto;
border-radius: 34px;
box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.section {
padding: 90px 0;
}

.business-section {
  padding-bottom: 40px;
}

.section.light {
background: var(--light);
}

.cards {
display: grid;
grid-template-columns: repeat(4,1fr);
gap: 24px;
margin-top: 32px;
}

.card {
background: white;
border-radius: var(--radius);
padding: 28px;
box-shadow: var(--shadow);
}

.product-grid {
display: grid;
grid-template-columns: repeat(4,1fr);
gap: 24px;
}

.product-card {
background: white;
border-radius: var(--radius);
padding: 28px;
box-shadow: var(--shadow);
}

.product-card img {
height: 240px;
width: 100%;
object-fit: contain;
margin-bottom: 20px;
}

.shop-cta {
  text-align: center;
  margin-top: 50px;
}

.shop-cta p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  color: var(--blue-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(11,31,58,0.16);
}

.contact-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 20px;
}

.contact-card p {
  color: var(--muted);
}

.contact-card strong {
  color: var(--green);
}

.contact-card.whatsapp {
    border: 2px solid var(--green);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.cta-section {
padding: 100px 0;
text-align: center;
color: white;
background:
radial-gradient(circle at 80% 20%, rgba(120,200,65,.25), transparent 30%),
linear-gradient(135deg,#07172c 0%,#0b1f3a 55%,#123e6f 100%);
}

.cta-section h2 {
color: white;
}

.contact-links {
display: flex;
gap: 16px;
flex-wrap: wrap;
}

.contact-links a {
padding: 14px 18px;
background: white;
border-radius: 12px;
box-shadow: var(--shadow);
}

.footer {
background: #07172c;
color: rgba(255,255,255,.7);
padding: 28px 0;
}

.footer-inner {
display: flex;
justify-content: space-between;
}

@media (max-width: 1000px) {

.hero-grid {
grid-template-columns: 1fr;
gap: 40px;
padding-top: 40px;
}

.hero-image {
order: -1;
}

.cards,
.product-grid {
grid-template-columns: repeat(2,1fr);
}

}

@media (max-width: 700px) {

nav {
display: none;
}

.cards,
.product-grid {
grid-template-columns: 1fr;
}

.hero-buttons,
.contact-links {
flex-direction: column;
}

.btn {
width: 100%;
}

.footer-inner {
flex-direction: column;
gap: 12px;
}

}
