/* ── PAGE WRAP ── */
.page-wrap { position: relative; z-index: 10; padding-top: 6rem; }

/* ── HERO ── */
.page-hero { padding: 4rem 5% 3rem; text-align: center; }
.page-hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: 2.8rem; font-weight: 700; color: #c5a059; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem; }
.page-hero h1::after { content: ''; display: block; width: 60px; height: 3px; background: #c5a059; margin: 12px auto 0; }
.page-hero p { font-size: 1rem; color: #3a4858; font-weight: 500; max-width: 600px; margin: 1rem auto 0; line-height: 1.65; }

/* ── SECTION HEAD ── */
.sec-head { text-align: center; margin-bottom: 2.5rem; }
.sec-head h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 700; color: #0c182d; }
.sec-head h2::after { content: ''; display: block; width: 44px; height: 3px; background: #c5a059; margin: 10px auto 0; }
.sec-head p { font-size: 0.88rem; color: #667; margin-top: 0.7rem; }

/* ── GLASS ── */
.glass { background: rgba(242,246,249,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.95); border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

/* ── CONTENT SECTION ── */
section.content { padding: 3rem 5%; max-width: 1200px; margin: 0 auto; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.svc-item { padding: 1.8rem 1.6rem; border-radius: 10px; border-top: 3px solid #c5a059; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.svc-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%; background: linear-gradient(160deg, rgba(197,160,89,0.06) 0%, transparent 60%); pointer-events: none; }
.svc-item:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(197,160,89,0.3); }
.svc-item .icon { width: 64px; height: 64px; background: linear-gradient(135deg, rgba(197,160,89,0.2), rgba(197,160,89,0.08)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; border: 1.5px solid rgba(197,160,89,0.45); box-shadow: 0 0 18px rgba(197,160,89,0.25), inset 0 1px 0 rgba(255,255,255,0.6); transition: all 0.3s ease; }
.svc-item:hover .icon { background: linear-gradient(135deg, rgba(197,160,89,0.35), rgba(197,160,89,0.15)); box-shadow: 0 0 28px rgba(197,160,89,0.5), inset 0 1px 0 rgba(255,255,255,0.6); transform: scale(1.08); }
.svc-item .icon svg { width: 30px; height: 30px; filter: drop-shadow(0 0 4px rgba(197,160,89,0.6)); }
.svc-item h3 { font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 700; color: #0c182d; margin-bottom: 0.4rem; }
.svc-item p { font-size: 0.8rem; color: #667; line-height: 1.6; }

/* ── PRICING ── */
.pricing-section { padding: 3rem 5%; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.4rem; max-width: 1200px; margin: 0 auto; }
.price-card { padding: 2rem 1.8rem; border-radius: 10px; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; border-top: 3px solid #c5a059; }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.price-card .tag { position: absolute; top: 14px; right: 14px; background: #c5a059; color: #fff; font-size: 0.6rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.price-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; color: #0c182d; margin-bottom: 0.4rem; }
.price-card .location { font-size: 0.78rem; color: #7ab8c0; font-weight: 600; margin-bottom: 1rem; letter-spacing: 0.5px; display: flex; align-items: center; gap: 5px; }
.price-card .location::before { content: ''; display: inline-block; width: 14px; height: 14px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%237ab8c0' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink: 0; }
.price-card .price { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: #c5a059; }
.price-card .price span { font-size: 0.85rem; color: #888; font-weight: 400; }
.price-card .note { font-size: 0.75rem; color: #778; margin-top: 0.8rem; line-height: 1.6; }
.price-card ul { list-style: none; margin-top: 1rem; }
.price-card ul li { font-size: 0.8rem; color: #556; padding: 0.3rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center; gap: 0.5rem; }
.price-card ul li::before { content: '›'; color: #c5a059; font-weight: 700; font-size: 1rem; }
.featured-card { grid-column: span 2; }

/* ── LOCATION TABLE ── */
.loc-table { width: 100%; border-collapse: collapse; }
.loc-table th { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #c5a059; padding: 0.8rem 1rem; text-align: left; border-bottom: 2px solid rgba(197,160,89,0.3); }
.loc-table td { font-size: 0.84rem; color: #445; padding: 0.75rem 1rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.loc-table tr:hover td { background: rgba(197,160,89,0.05); }
.loc-table .price-col { color: #c5a059; font-weight: 700; font-family: 'Space Grotesk', sans-serif; }

/* ── DIVIDER ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(197,160,89,0.4), transparent); margin: 2.5rem 0; }

/* ── WEB PRICING ── */
.web-pricing-section { padding: 3rem 5%; }
.web-pricing-inner { max-width: 1200px; margin: 0 auto; }
.tier-label { display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 1.4rem; }
.tier-label.one-time { background: rgba(122,184,192,0.15); color: #7ab8c0; border: 1px solid rgba(122,184,192,0.4); }
.tier-label.subscription { background: rgba(197,160,89,0.12); color: #c5a059; border: 1px solid rgba(197,160,89,0.35); }
.tier-label.mgmt { background: rgba(100,180,120,0.12); color: #4a9a6a; border: 1px solid rgba(100,180,120,0.35); }
.tier-group { margin-bottom: 3.5rem; }
.tier-group-title { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: #0c182d; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.2rem; padding-bottom: 0.6rem; border-bottom: 1px solid rgba(197,160,89,0.2); display: flex; align-items: center; gap: 0.8rem; }
.tier-group-title::before { content: ''; display: inline-block; width: 4px; height: 18px; background: #c5a059; border-radius: 2px; }
.web-grid { display: grid; gap: 1.4rem; }
.web-grid.cols-1 { grid-template-columns: 1fr; max-width: 460px; }
.web-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.web-grid.cols-2-wide { grid-template-columns: repeat(2,1fr); }
.web-card { padding: 2rem 1.8rem; border-radius: 10px; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; border-top: 3px solid #c5a059; display: flex; flex-direction: column; }
.web-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.web-card.featured { border-top: 3px solid #7ab8c0; box-shadow: 0 0 0 1px rgba(122,184,192,0.25), 0 8px 24px rgba(0,0,0,0.07); }
.web-card.featured:hover { box-shadow: 0 0 0 1px rgba(122,184,192,0.4), 0 20px 40px rgba(0,0,0,0.12); }
.web-card .tag { position: absolute; top: 14px; right: 14px; background: #c5a059; color: #fff; font-size: 0.6rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.web-card .tag.blue { background: #7ab8c0; }
.web-card .tag.green { background: #4a9a6a; }
.web-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: #0c182d; margin-bottom: 0.3rem; }
.web-card .subtitle { font-size: 0.76rem; color: #7ab8c0; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 1rem; }
.web-card .web-price { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: #c5a059; line-height: 1; margin-bottom: 0.3rem; }
.web-card .web-price span { font-size: 0.85rem; color: #888; font-weight: 400; }
.web-card .price-note { font-size: 0.72rem; color: #aaa; margin-bottom: 1.2rem; }
.web-card .feat-list { list-style: none; flex-grow: 1; }
.web-card .feat-list li { font-size: 0.8rem; color: #556; padding: 0.35rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.4; }
.web-card .feat-list li::before { content: ''; width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; background: linear-gradient(135deg,#c5a059,#e8c87a); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='%230c182d' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: 9px; background-repeat: no-repeat; background-position: center; }
.web-card .feat-list li.muted::before { background: rgba(0,0,0,0.08); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='5' y1='12' x2='19' y2='12' stroke='%23aaa' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-size: 9px; background-repeat: no-repeat; background-position: center; }
.web-card .feat-list li.muted { color: #aaa; }
.web-card .card-cta { margin-top: 1.4rem; }
.web-card .card-cta button { width: 100%; background: linear-gradient(135deg,#c5a059,#e8c87a 50%,#c5a059); background-size: 200% auto; color: #0c182d; border: none; padding: 0.7rem 1rem; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.4px; border-radius: 4px; cursor: none !important; transition: all 0.4s; box-shadow: 0 0 0 1px rgba(197,160,89,0.5); }
.web-card .card-cta button:hover { background-position: right; box-shadow: 0 0 0 1px #c5a059, 0 0 20px rgba(0,210,255,0.6); }
.web-card.featured .card-cta button { background: linear-gradient(135deg,#7ab8c0,#a0d8e0 50%,#7ab8c0); box-shadow: 0 0 0 1px rgba(122,184,192,0.5); }
.web-card.featured .card-cta button:hover { box-shadow: 0 0 0 1px #7ab8c0, 0 0 20px rgba(122,184,192,0.6); }

/* ── CTA BANNER ── */
.cta-banner { margin: 3rem 5%; padding: 3rem 4%; border-radius: 10px; background: linear-gradient(135deg, rgba(12,24,45,0.92), rgba(12,24,45,0.85)); text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1569263979104-865ab7cd8d13?q=80&w=1200') center/cover; opacity: 0.12; }
.cta-banner h2 { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: #c5a059; margin-bottom: 0.8rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 1.8rem; position: relative; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .consult-btn { position: relative; padding: 0.9rem 2.5rem; font-size: 0.88rem; }

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .featured-card { grid-column: span 1; }
  .web-grid.cols-2, .web-grid.cols-2-wide, .web-grid[style*="repeat(3"] { grid-template-columns: 1fr !important; }
}
@media(max-width: 768px) {
  .page-hero h1 { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .web-grid.cols-1 { max-width: 100%; }
}
@media(max-width: 700px) { .featured-card { grid-column: span 1; } }
