:root {
  /* BACKGROUNDS: Clean, Light, Airy */
  --bg: #ffffff; 
  --panel: #f8f9fa; /* Soft Grey for sections */
  --card: #ffffff;
  
  /* TEXT: High contrast, easy to read */
  --text: #2d3748; /* Dark Grey (softer than black) */
  --muted: #4a5568; 
  
  /* BORDERS */
  --line: #e2e8f0;
  
  /* ACCENTS */
  --accent: #2c5282; /* Professional Navy Blue (Trust) */
  --accent2: #d69e2e; /* Warm Gold/Sand (Hospitality/Premium) */
  
  /* UI ELEMENTS */
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --radius: 8px; /* Slightly squarer is more traditional/business-like */
  --max: 1100px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

/* GENERAL RESETS */
* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; padding: 0; font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: var(--accent); text-decoration: none; font-weight: 500; }
a:hover { text-decoration: underline; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* SECTIONS */
.section { padding: 80px 0; }
.section.compact { padding: 50px 0; background: var(--panel); } /* Alternating background for depth */

/* NAVIGATION */
.topbar { background: #ffffff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; gap: 14px; flex-wrap: wrap; }
.logo { width: 32px; height: 32px; background: var(--accent); border-radius: 4px; margin-right: 10px; }
.brand { display: flex; align-items: center; font-weight: 700; color: var(--accent); font-size: 1.2rem; }
.navlinks { display:flex; align-items:center; flex-wrap:wrap; gap: 8px; }
.navlinks a { color: var(--muted); padding: 8px 12px; border-radius: 6px; transition: all 0.2s; }
.navlinks a:hover, .navlinks a.active { background: var(--panel); color: var(--accent); text-decoration: none; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: transform 0.1s; border: none; }
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn.primary { background: var(--accent); color: white; box-shadow: 0 4px 6px rgba(44, 82, 130, 0.3); }
.btn.primary:hover { background: #2a4365; text-decoration: none; }
.btn.secondary { background: white; border: 2px solid var(--line); color: var(--text); }
.btn.secondary:hover { border-color: var(--accent); text-decoration: none; }
.btn.small { padding: 10px 16px; font-size: 0.95rem; }

/* HERO SECTION */
.hero { padding: 100px 0 60px; background: linear-gradient(to bottom, #ffffff 0%, #f7fafc 100%); }
h1 { font-size: 2.5rem; line-height: 1.2; color: #1a202c; margin: 0 0 20px; letter-spacing: -0.02em; }
.lead { font-size: 1.25rem; color: var(--muted); max-width: 720px; margin: 0 0 30px; }
.kicker { color: var(--accent2); text-transform: uppercase; font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 15px; display: block; }

/* CARDS & GRID */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { background: white; padding: 30px; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform 0.2s, border-color 0.2s; }
.card:hover { transform: translateY(-2px); border-color: var(--accent2); } /* Gold border on hover */
.card.soft { background: transparent; box-shadow: none; border: none; padding: 0; }

/* FEATURES & ICONS */
.feature .icon { width: 48px; height: 48px; background: #ebf8ff; color: var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 15px; font-weight: 700; }

/* PRICING */
.pricingHeader { display:flex; align-items:flex-end; justify-content:space-between; gap: 14px; flex-wrap:wrap; }
.toggle { display:flex; gap: 10px; flex-wrap:wrap; align-items:center; }
.toggle .btn[aria-pressed="true"] { background: var(--panel); border: 2px solid var(--accent); }
.priceCard { text-align: center; border-top: 4px solid var(--accent); }
.priceCard .pill { background: #ebf8ff; color: var(--accent); display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.price { font-size: 2.5rem; font-weight: 700; color: #1a202c; margin: 10px 0 0; }
.ul { margin: 14px 0 0; padding-left: 18px; color: var(--muted); }
.ul li { margin: 8px 0; }

/* FORMS */
label { display:block; font-weight: 600; margin-bottom: 6px; color: #1a202c; font-size: 0.95rem; }
input, select, textarea { width: 100%; padding: 12px; border: 1px solid var(--line); border-radius: 6px; background: #fff; color: var(--text); font-family: inherit; margin-bottom: 15px; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1); }

.row { display:flex; gap: 12px; flex-wrap:wrap; align-items:center; }
.hr { height: 1px; background: var(--line); margin: 22px 0; }
.muted { color: var(--muted); }
.tagline { font-weight: 700; color: #1a202c; }
.pillGlobal { background: #fffaf0; border: 1px solid #f6e05e66; color: #744210; padding: 8px 12px; border-radius: 999px; font-weight: 700; font-size: 0.9rem; display:inline-block; }

/* FOOTER */
.footer { border-top: 1px solid var(--line); padding: 34px 0; background: #fff; }
.footerRow { display:flex; justify-content:space-between; gap: 12px; flex-wrap:wrap; align-items:center; }

/* MOBILE */
@media (max-width: 900px) {
  .grid2, .grid3, .grid4 { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
}
