/* ================================
   BASE
================================ */



body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    background: #ffffff;
    color: #1f2933;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Global vertical rhythm */

section {
    padding: 50px 0;
}

/* ================================
   NAVIGATION
================================ */

.nav {
    padding: 18px 0;
    border-bottom: 1px solid #eef1f4;
    background: #ffffff;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav .menu a {
    margin-left: 32px;
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    position: relative;
}

.nav .menu a:hover {
    color: #008080;
}

/* Subtle animated underline */

.nav .menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -6px;
    background: #008080;
    transition: width 0.25s ease;
}

.nav .menu a:hover::after {
    width: 100%;
}

/* ================================
   HERO
================================ */

.hero {
    padding: 80px 0 50px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero p {
    font-size: 17px;
    max-width: 560px;
    color: #5b6672;
    line-height: 1.6;
}

/* ================================
   BUTTON
================================ */

.button-primary {
    display: inline-block;
    margin-top: 28px;
    padding: 14px 26px;
    background: #008080;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

.button-primary:hover {
    background: #006d6d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,128,128,0.15);
}

/* ================================
   SERVICES
================================ */

.services {
    background: #f5f7f9;
    border-top: 1px solid #e5e7eb;
}

.services .container {
    padding-left: 60px;
    padding-right: 60px;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-item h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}

.service-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* ================================
   SECTION HEADINGS
================================ */

h2 {
    position: relative;
    display: inline-block;
}

h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #008080;
    margin-top: 12px;
}

/* ================================
   BRAND LOGOS
================================ */

.brands {
    background: #ffffff;
}

.brand-logos {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.brand-logos img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.brand-logos img:hover {
    opacity: 1;
}

/* ================================
   USE CASES
================================ */

.use-cases {
    background: #ffffff;
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.use-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.use-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    overflow: hidden;
    color: #008080;
}

.use-icon svg {
    width: 100%;
    height: 100%;
}

.cta {
    background: #f5f7f9;
    text-align: center;
}

.cta p {
    max-width: 600px;
    margin: 16px auto 0;
}

.service-item {
    background: #ffffff;
    padding: 28px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.brand-logos img {
    height: 38px;
    opacity: 0.65;
    filter: grayscale(100%);
    transition: all 0.25s ease;
}

.brand-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.why-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 30px;
}

.why-points ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-points li {
    margin-bottom: 14px;
    padding-left: 18px;
    position: relative;
}

.why-points li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #008080;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.content-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 8px;
    display: block;
}