/*
  LANGUAGE USED: CSS3 (Cascading Style Sheets).
  PURPOSE: CSS controls the visual appearance of the HTML structure:
  colors, fonts, spacing, sizing, borders, grids, responsiveness and animations.
  The website uses standard CSS and does not require a CSS framework.
*/
/* GLOBAL BOX MODEL: makes width/height calculations predictable for all elements. */
*{box-sizing:border-box}/* SMOOTH SCROLLING: anchor links such as #about scroll smoothly instead of jumping. */
html{scroll-behavior:smooth}/* BODY STYLES: default font, text color, background, and line spacing for the whole website. */
body{margin:0;font-family:Inter,Arial,sans-serif;color:#0b1630;background:#f7f9fc;line-height:1.65}/* CONTAINER: keeps content centered and prevents it from becoming too wide on large screens. */
.container{width:min(1160px,92%);margin:auto}/* HEADER: sticky navigation stays visible while the visitor scrolls. */
.site-header{position:sticky;top:0;z-index:20;background:rgba(247,249,252,.88);backdrop-filter:blur(16px);border-bottom:1px solid #e7ebf3}/* NAV LAYOUT: places the logo and menu horizontally. */
.nav{height:76px;display:flex;align-items:center;justify-content:space-between}/* BRAND: styles the company logo/name. */
.brand{display:flex;align-items:center;gap:10px;color:#0b1630;text-decoration:none;font-weight:700;font-size:17px}.brand img{width:38px;height:38px;object-fit:contain;border-radius:8px}.brand b{font-weight:800}/* NAV LINKS: controls spacing and alignment of menu items. */
.nav-links{display:flex;align-items:center;gap:30px}.nav-links a{color:#536078;text-decoration:none;font-size:14px;font-weight:600}.nav-links a:hover{color:#172b8e}.nav-cta{padding:11px 18px;border-radius:10px;background:#1326e8;color:white!important}.menu-toggle{display:none;border:0;background:none;font-size:24px}/* HERO: large opening section with the dark technology-style background. */
.hero{position:relative;overflow:hidden;min-height:700px;display:flex;align-items:center;background:#07133d;color:#fff}/* HERO GRID: decorative grid pattern created with CSS gradients; no image is required. */
.hero-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:58px 58px;mask-image:linear-gradient(to right,#000,transparent 85%)}/* HERO GLOW: decorative radial light effect using a pseudo-element. */
.hero:after{content:"";position:absolute;width:650px;height:650px;border-radius:50%;right:-180px;top:-180px;background:radial-gradient(circle,rgba(46,74,255,.5),transparent 68%)}/* HERO CONTENT: keeps text above the decorative background. */
.hero-content{position:relative;z-index:1;padding:110px 0}/* SECTION LABELS: small uppercase labels used above major headings. */
.eyebrow,.section-kicker{font-size:12px;text-transform:uppercase;letter-spacing:.16em;font-weight:800;color:#687694}.hero .eyebrow{color:#aab8ff;display:flex;gap:9px;align-items:center}.eyebrow span{width:8px;height:8px;border-radius:50%;background:#6d7cff}/* MAIN HERO HEADING: large responsive typography for the main message. */
.hero h1{font-family:"Space Grotesk",sans-serif;font-size:clamp(50px,7vw,88px);line-height:.98;letter-spacing:-.055em;max-width:900px;margin:24px 0}.hero h1 em{font-style:normal;color:#7788ff}.hero p{font-size:18px;color:#c6cce1;max-width:680px}/* HERO BUTTONS: places the primary and secondary calls-to-action side by side. */
.hero-actions{display:flex;gap:14px;margin-top:32px}.btn{display:inline-flex;align-items:center;justify-content:center;gap:18px;border:0;border-radius:10px;padding:14px 20px;font-weight:800;text-decoration:none;cursor:pointer;font-family:inherit}.btn-primary{background:#3148ff;color:#fff;box-shadow:0 12px 30px rgba(49,72,255,.25)}.btn-ghost{color:#fff;border:1px solid #455174}/* HERO METRICS: displays quick company/product statistics. */
.hero-meta{display:flex;gap:45px;margin-top:70px}.hero-meta div{display:flex;flex-direction:column}.hero-meta strong{font-size:22px}.hero-meta span{font-size:12px;color:#9fa9c1}/* SECTION SPACING: standard vertical spacing for content sections. */
.section{padding:110px 0}/* TWO-COLUMN LAYOUT: used by the About section. */
.split{display:grid;grid-template-columns:1fr 1.2fr;gap:90px}.section h2{font-family:"Space Grotesk",sans-serif;font-size:clamp(34px,4vw,55px);line-height:1.05;letter-spacing:-.04em;margin:15px 0}.section p{color:#65708a}.lead{font-size:21px!important;color:#28334c!important}/* SOLUTIONS BACKGROUND: gives the product area a contrasting light background. */
.solutions{background:#eef2f8}.section-head{display:flex;justify-content:space-between;align-items:end;gap:50px;margin-bottom:50px}.section-head>p{max-width:450px}/* SOLUTION GRID: responsive card layout for industry categories. */
.solution-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}/* SOLUTION CARD: visual container for each industry and its products. */
.solution-card{background:#fff;border:1px solid #e0e6f0;border-radius:18px;padding:30px;min-height:330px;transition:.25s}.solution-card:hover{transform:translateY(-5px);box-shadow:0 20px 45px rgba(18,35,75,.09)}.solution-card.featured{background:#10205d;color:white}.solution-card.wide{grid-column:span 2}.solution-card .icon{font-size:30px;margin-bottom:35px}.solution-card>span{font-size:11px;font-weight:800;opacity:.5}.solution-card h3{font-family:"Space Grotesk",sans-serif;font-size:25px;margin:8px 0}.solution-card p{font-size:14px}.featured p,.featured li{color:#c5cce2}.solution-card ul{padding:0;margin:22px 0 0;list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:7px;font-size:13px}.solution-card li:before{content:"✓ ";font-weight:800}/* WHY QUADRANT PANEL: dark highlighted section for key value propositions. */
.impact-box{background:#10205d;color:white;border-radius:24px;padding:65px;display:grid;grid-template-columns:1fr 1fr;gap:70px}.impact-box h2{max-width:550px}.impact-points{display:grid;gap:20px}.impact-points div{display:grid;grid-template-columns:35px 1fr;column-gap:10px;padding-bottom:20px;border-bottom:1px solid rgba(255,255,255,.13)}.impact-points b{grid-row:span 2;color:#8391ff}.impact-points strong{font-size:18px}.impact-points span{color:#b6c0d8;font-size:13px}/* PRICING AREA: clean white background for the product price table. */
.pricing{background:#fff}/* TABLE WRAPPER: allows horizontal scrolling on small screens. */
.table-wrap{overflow:auto;border:1px solid #e0e5ee;border-radius:16px}/* PRICE TABLE: full-width table for product tiers and prices. */
table{width:100%;border-collapse:collapse;min-width:760px}th,td{padding:17px 20px;text-align:left;border-bottom:1px solid #e9edf3}th{font-size:12px;text-transform:uppercase;letter-spacing:.08em;background:#f4f6fa;color:#59647a}td{font-size:14px}td:not(:first-child){font-weight:800}tr:last-child td{border-bottom:0}/* CONTACT BACKGROUND: separates the enquiry section from the pricing area. */
.contact{background:#f0f3f8}/* CONTACT CARD: two-column layout for company details and the enquiry form. */
.contact-card{background:#fff;border-radius:24px;padding:65px;display:grid;grid-template-columns:1fr 1fr;gap:80px}.address{margin-top:35px;color:#46516a}/* FORM LAYOUT: vertically spaces input fields and controls. */
.contact-form{display:grid;gap:14px}label{font-size:12px;font-weight:800;color:#4b5670}/* FORM CONTROLS: common styling for text fields, dropdowns, and message boxes. */
input,select,textarea{display:block;width:100%;margin-top:7px;border:1px solid #d9e0eb;border-radius:9px;padding:13px 14px;font:inherit;outline:none;background:#fbfcfe}input:focus,select:focus,textarea:focus{border-color:#5b6cff;box-shadow:0 0 0 3px rgba(91,108,255,.1)}textarea{resize:vertical}.contact-form small{color:#4b5b7b}/* FOOTER: dark closing area with company branding. */
footer{background:#07133d;color:#b5bfd5;padding:28px 0}.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;font-size:12px}.footer-inner .brand{color:#fff}.footer-inner .brand img{width:30px;height:30px}.footer-inner p{margin:0}/* RESPONSIVE BREAKPOINT: changes navigation and multi-column layouts for tablets/phones. */
@media(max-width:850px){.nav-links{display:none;position:absolute;left:4%;right:4%;top:68px;padding:18px;background:white;border:1px solid #e3e7ef;border-radius:14px;box-shadow:0 18px 40px rgba(0,0,0,.1);flex-direction:column;align-items:stretch}.nav-links.open{display:flex}.menu-toggle{display:block}.hero{min-height:650px}.split,.impact-box,.contact-card{grid-template-columns:1fr;gap:40px}.section-head{display:block}.solution-grid{grid-template-columns:1fr}.solution-card.wide{grid-column:auto}.hero-meta{gap:25px;flex-wrap:wrap}.contact-card,.impact-box{padding:35px}.footer-inner{flex-direction:column;align-items:flex-start}}@media(max-width:520px){.hero h1{font-size:48px}.hero-content{padding:80px 0}.hero-actions{flex-direction:column}.hero-actions .btn{width:100%}.hero-meta{margin-top:45px}.section{padding:75px 0}.solution-card ul{grid-template-columns:1fr}}


/* MULTI-PAGE WEBSITE — shared page styles. */
.page-hero{padding:90px 0 75px;background:#07133d;color:#fff;position:relative;overflow:hidden}
.page-hero:after{content:"";position:absolute;width:560px;height:560px;right:-220px;top:-260px;border-radius:50%;background:radial-gradient(circle,rgba(49,72,255,.5),transparent 68%)}
.page-hero .container{position:relative;z-index:1}.page-hero h1{font-family:"Space Grotesk",sans-serif;font-size:clamp(45px,7vw,75px);line-height:.98;letter-spacing:-.05em;margin:15px 0}.page-hero p{max-width:700px;color:#c4cce0;font-size:17px}
.nav-links a.active{color:#182fe8}
.content-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.info-card{background:#fff;border:1px solid #e1e6ef;border-radius:18px;padding:28px}
.info-card h3{font-family:"Space Grotesk",sans-serif;font-size:23px;margin:8px 0}.info-card p{font-size:14px;color:#69748a}.info-card ul{padding-left:18px;color:#59657d;font-size:13px}
.number-list{display:grid;gap:18px}.number-item{display:grid;grid-template-columns:48px 1fr;gap:16px;align-items:start}.number-item b{width:40px;height:40px;border-radius:10px;background:#e9edff;color:#3148ff;display:grid;place-items:center;font-size:12px}.number-item h3{margin:0 0 3px;font-family:"Space Grotesk",sans-serif}.number-item p{margin:0;color:#68738a;font-size:13px}
.price-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.price-card{background:#fff;border:1px solid #e1e6ef;border-radius:18px;padding:28px}.price-card.featured{background:#10205d;color:#fff;border-color:#10205d;transform:translateY(-8px)}.price-card h3{font-family:"Space Grotesk",sans-serif;font-size:25px;margin:0 0 8px}.price-card p{font-size:13px;color:#69748a}.price-card.featured p{color:#c3cce2}.price-card ul{padding-left:18px;font-size:13px}.price-card .price{font-family:"Space Grotesk",sans-serif;font-size:35px;font-weight:800;margin:20px 0}
.contact-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:30px}.contact-info{background:#10205d;color:#fff;border-radius:20px;padding:38px}.contact-info p{color:#c2cbe0}.contact-form-card{background:#fff;border:1px solid #e1e6ef;border-radius:20px;padding:38px}
.contact-form-card form{display:grid;gap:14px}.contact-form-card label{font-size:12px;font-weight:800;color:#4d5970}.contact-form-card input,.contact-form-card select,.contact-form-card textarea{display:block;width:100%;margin-top:7px;border:1px solid #d9e0eb;border-radius:9px;padding:13px;font:inherit}
.product-link{display:inline-flex;margin-top:12px;text-decoration:none;font-weight:800;color:#3148ff;font-size:13px}
@media(max-width:850px){.content-grid,.price-cards,.contact-grid{grid-template-columns:1fr}.price-card.featured{transform:none}}
