* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: #050505;
    overflow-x: hidden;
}

/* BACKGROUND */
.bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top, #1a73e8 0%, transparent 40%),
        radial-gradient(circle at bottom, #6a00ff 0%, transparent 40%);
    filter: blur(120px);
    z-index: -1;
}

/* HEADER */
.header {
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO OLD */
.logo h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
}

.logo h1 a {
  color: #ffffff;
  text-decoration: none;
}

.logo span { 
    font-size: 12px; 
    opacity: .7; 
}


/* BUTTONS */
.btn {
    background: linear-gradient(135deg, #1a73e8, #6a00ff);
    padding: 14px 26px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(106,0,255,.4);
}

.btn.big { font-size: 18px; }
.btn.small { font-size: 14px; }

.ghost {
    color: #fff;
    opacity: .8;
    text-decoration: none;
}

/* HERO */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

.hero {
    text-align: center;
    margin-bottom: 100px;
}

.hero h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero span {
    background: linear-gradient(135deg, #1a73e8, #6a00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    opacity: .7;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* TARIFFS */
.tariffs h3 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: .4s;
}

.card:hover {
    transform: translateY(-10px);
}

.card.glow {
    box-shadow: 0 0 60px rgba(106,0,255,.4);
}

.card h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.card b {
    display: block;
    margin-bottom: 15px;
}

.card ul {
    list-style: none;
    margin-bottom: 25px;
}

.card li {
    opacity: .8;
    margin: 6px 0;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 40px 20px;
    opacity: .6;
    font-size: 14px;
}


/* PORTFOLIO UCHUN*/
/* NAV */
.nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    opacity: .8;
}

.nav a.active {
    opacity: 1;
    font-weight: 600;
}

/* PAGE TITLE */
.page-title {
    text-align: center;
    margin-bottom: 70px;
}

.page-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-title span {
    background: linear-gradient(135deg, #1a73e8, #6a00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-title p {
    opacity: .7;
}

/* START PORTFOLIO */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.work-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    transition: .4s;
}

.work-card:hover {
    transform: translateY(-10px);
}

.work-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.work-info {
    padding: 20px;
}

.work-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.work-info span {
    font-size: 13px;
    opacity: .7;
}

.work-info a {
    display: inline-block;
    margin-top: 10px;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

/* CTA */
.portfolio-cta {
    text-align: center;
    margin: 100px 0;
}

.portfolio-cta h3 {
    font-size: 32px;
    margin-bottom: 20px;
}
/* END PORTFOLIO */


/* TEXNOLOGILAYAR */
.stack {
    padding: 100px 20px;
    text-align: center;
}

.stack h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.item {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.item img {
    width: 42px;
    margin-bottom: 12px;
    filter: grayscale(100%) brightness(0.3);
    transition: 0.3s ease;
}

.item span {
    font-size: 14px;
    color: #888;
    transition: 0.3s;
}

.item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.item:hover img {
    filter: none;
}

.item:hover span {
    color: #111;
}
/* END TEXNOLOGILAYAR */

